Subversion Repositories SmartDukaan

Rev

Rev 7316 | Rev 7330 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 7316 Rev 7322
Line 1534... Line 1534...
1534
    sp.minAdvancePrice = minap
1534
    sp.minAdvancePrice = minap
1535
    sp.maxPrice = maxp
1535
    sp.maxPrice = maxp
1536
    sp.freebieItemId = 0
1536
    sp.freebieItemId = 0
1537
    sp.bestDealText = ""
1537
    sp.bestDealText = ""
1538
    return sp
1538
    return sp
1539
 
1539
    
1540
 
1540
    
1541
def get_store_pricing(itemId):
1541
def get_store_pricing(itemId):
1542
    store = StorePricing.get_by(item_id = itemId)
1542
    store = StorePricing.get_by(item_id = itemId)
1543
    if store is None:
1543
    if store is None:
1544
        return get_defalut_store_pricing(itemId)
1544
        return get_defalut_store_pricing(itemId)
1545
 
1545