Subversion Repositories SmartDukaan

Rev

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

Rev 14027 Rev 14030
Line 15... Line 15...
15
ORDER_REDIRECT_URL = 'https://www.amazon.in/gp/css/summary/edit.html?orderID=%s'
15
ORDER_REDIRECT_URL = 'https://www.amazon.in/gp/css/summary/edit.html?orderID=%s'
16
ORDER_SUCCESS_URL = 'https://www.amazon.in/gp/buy/spc/handlers/static-submit-decoupled.html'
16
ORDER_SUCCESS_URL = 'https://www.amazon.in/gp/buy/spc/handlers/static-submit-decoupled.html'
17
THANKYOU_URL = 'https://www.amazon.in/gp/buy/thankyou/handlers/display.html'
17
THANKYOU_URL = 'https://www.amazon.in/gp/buy/thankyou/handlers/display.html'
18
class Store(MStore):
18
class Store(MStore):
19
    
19
    
20
    orderStatusRegexMap = { MStore.ORDER_PLACED : ['Ordered from', 'Not Yet Distpatched','Dispatching Now', 'Preparing for Dispatch'],
20
    orderStatusRegexMap = { MStore.ORDER_PLACED : ['Ordered from', 'Not Yet Dispatched','Dispatching Now', 'Preparing for Dispatch'],
21
                            MStore.ORDER_SHIPPED : ['Dispatched on','Dispatched', 'On the way', 'Out for delivery'],
21
                            MStore.ORDER_SHIPPED : ['Dispatched on','Dispatched', 'On the way', 'Out for delivery'],
22
                            MStore.ORDER_CANCELLED : ['Return complete', 'Refunded', 'Cancelled'],
22
                            MStore.ORDER_CANCELLED : ['Return complete', 'Refunded', 'Cancelled'],
23
                            MStore.ORDER_DELIVERED : ['Delivered']
23
                            MStore.ORDER_DELIVERED : ['Delivered']
24
                           }
24
                           }
25
 
25