Subversion Repositories SmartDukaan

Rev

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

Rev 7730 Rev 7741
Line 2168... Line 2168...
2168
        try:
2168
        try:
2169
            change_amazon_order_status(amazonOrderCode,status) 
2169
            change_amazon_order_status(amazonOrderCode,status) 
2170
        finally:
2170
        finally:
2171
            self.closeSession()
2171
            self.closeSession()
2172
    
2172
    
2173
    def updateTimestampForAmazonOrder(self,orderId,expectedDelivery,promisedDelivery,expectedShipping,promisedShipping):
2173
    def updateTimestampForAmazonOrder(self,orderDeliveryMap):
2174
        try:
2174
        try:
2175
            return update_timestamp_for_amazon_order(orderId,expectedDelivery,promisedDelivery,expectedShipping,promisedShipping)
2175
            return update_timestamp_for_amazon_order(orderDeliveryMap)
2176
        except:
2176
        except:
2177
            return False
2177
            return False
2178
        finally:
2178
        finally:
2179
            self.closeSession()
2179
            self.closeSession()
2180
            
2180