Subversion Repositories SmartDukaan

Rev

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

Rev 14675 Rev 14677
Line 34... Line 34...
34
    This is to map order statuses of our system to order statuses of snapdeal.
34
    This is to map order statuses of our system to order statuses of snapdeal.
35
    And our statuses will change accordingly.
35
    And our statuses will change accordingly.
36
    
36
    
37
    '''
37
    '''
38
    OrderStatusMap = {
38
    OrderStatusMap = {
39
                      MStore.ORDER_PLACED : ['In Progress','N/A', 'Pending For Verification'],
39
                      MStore.ORDER_PLACED : ['In Progress','N/A', 'Pending For Verification', 'not available'],
40
                      MStore.ORDER_DELIVERED : ['Delivered'],
40
                      MStore.ORDER_DELIVERED : ['Delivered'],
41
                      MStore.ORDER_SHIPPED : ['In Transit'],
41
                      MStore.ORDER_SHIPPED : ['In Transit'],
42
                      MStore.ORDER_CANCELLED : ['Closed For Vendor Reallocation', 'Cancelled', 'Product returned by courier', 'Returned']
42
                      MStore.ORDER_CANCELLED : ['Closed For Vendor Reallocation', 'Cancelled', 'Product returned by courier', 'Returned']
43
                      }
43
                      }
44
    
44