Subversion Repositories SmartDukaan

Rev

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

Rev 14312 Rev 14348
Line 31... Line 31...
31
    This is to map order statuses of our system to order statuses of snapdeal.
31
    This is to map order statuses of our system to order statuses of snapdeal.
32
    And our statuses will change accordingly.
32
    And our statuses will change accordingly.
33
    
33
    
34
    '''
34
    '''
35
    OrderStatusMap = {
35
    OrderStatusMap = {
36
                      MStore.ORDER_PLACED : ['In Progress','N/A'],
36
                      MStore.ORDER_PLACED : ['In Progress','N/A', 'Order Placed BILLED'],
37
                      MStore.ORDER_DELIVERED : ['Delivered'],
37
                      MStore.ORDER_DELIVERED : ['Delivered'],
38
                      MStore.ORDER_SHIPPED : ['In Transit'],
38
                      MStore.ORDER_SHIPPED : ['In Transit'],
39
                      MStore.ORDER_CANCELLED : ['Closed For Vendor Reallocation', 'Cancelled', 'Product returned by courier', 'Returned']
39
                      MStore.ORDER_CANCELLED : ['Closed For Vendor Reallocation', 'Cancelled', 'Product returned by courier', 'Returned']
40
                      }
40
                      }
41
    
41