Subversion Repositories SmartDukaan

Rev

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

Rev 14023 Rev 14027
Line 16... Line 16...
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 Distpatched','Dispatching Now', 'Preparing for Dispatch'],
21
                            MStore.ORDER_SHIPPED : ['Dispatched on','Dispatched', 'On the way'],
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
 
26
    def __init__(self,store_id):
26
    def __init__(self,store_id):