Subversion Repositories SmartDukaan

Rev

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

Rev 17279 Rev 17300
Line 8... Line 8...
8
    NegativeDeals, ManualDeals, CommonDelete, SearchProduct, FeaturedDeals, \
8
    NegativeDeals, ManualDeals, CommonDelete, SearchProduct, FeaturedDeals, \
9
    CommonSearch, CricScore, Notification, DealBrands, RetailerDetail, DealRank, \
9
    CommonSearch, CricScore, Notification, DealBrands, RetailerDetail, DealRank, \
10
    Login, AddContactToRetailer, RetailerActivation, SearchUser, StaticDeals, \
10
    Login, AddContactToRetailer, RetailerActivation, SearchUser, StaticDeals, \
11
    AddAddressToRetailer, DealNotification, DealPoints, AppAffiliates, \
11
    AddAddressToRetailer, DealNotification, DealPoints, AppAffiliates, \
12
    AffiliatePayout, OrderedOffers, AppOffers, AppUserBatchRefund, \
12
    AffiliatePayout, OrderedOffers, AppOffers, AppUserBatchRefund, \
13
    AppUserBatchDrillDown, AppUserBatchDateDrillDown, AppUserCashBack,GetSaleDetail
13
    AppUserBatchDrillDown, AppUserBatchDateDrillDown, AppUserCashBack,GetSaleDetail,
-
 
14
    DummyDeals
14
 
15
 
15
 
16
 
16
wsgi_app = api = falcon.API()
17
wsgi_app = api = falcon.API()
17
 
18
 
18
retailerActivation = RetailerActivation()
19
retailerActivation = RetailerActivation()
Line 66... Line 67...
66
appUserBatchDrillDown = AppUserBatchDrillDown()
67
appUserBatchDrillDown = AppUserBatchDrillDown()
67
appUserBatchDateDrillDown = AppUserBatchDateDrillDown()
68
appUserBatchDateDrillDown = AppUserBatchDateDrillDown()
68
appUserCashBack = AppUserCashBack()
69
appUserCashBack = AppUserCashBack()
69
rejects = Rejects()
70
rejects = Rejects()
70
getSaleDetail = GetSaleDetail()
71
getSaleDetail = GetSaleDetail()
-
 
72
dummyDeals = DummyDeals()
-
 
73
 
71
 
74
 
72
api.add_route('/getSaleDetail/{date_val}',getSaleDetail)
75
api.add_route('/getSaleDetail/{date_val}',getSaleDetail)
73
api.add_route('/discountInfo/getAllCategoryDiscount', categoryDiscountInfo)
76
api.add_route('/discountInfo/getAllCategoryDiscount', categoryDiscountInfo)
74
api.add_route('/discountInfo/addCategoryDiscount', categoryDiscountInfo)
77
api.add_route('/discountInfo/addCategoryDiscount', categoryDiscountInfo)
75
api.add_route('/discountInfo/addSkuSchemeDetails',skuSchemeDetails)
78
api.add_route('/discountInfo/addSkuSchemeDetails',skuSchemeDetails)
Line 136... Line 139...
136
api.add_route('/appUserBatchRefund/{batchId}/{userId}',appUserBatchRefund)
139
api.add_route('/appUserBatchRefund/{batchId}/{userId}',appUserBatchRefund)
137
api.add_route('/appUserBatchDrillDown/{userId}/{fortNightOfYear}/{yearVal}', appUserBatchDrillDown)
140
api.add_route('/appUserBatchDrillDown/{userId}/{fortNightOfYear}/{yearVal}', appUserBatchDrillDown)
138
api.add_route('/appUserBatchDateDrillDown/{userId}/{date}', appUserBatchDateDrillDown)
141
api.add_route('/appUserBatchDateDrillDown/{userId}/{date}', appUserBatchDateDrillDown)
139
api.add_route('/appUserCashBack/{userId}/{status}', appUserCashBack)
142
api.add_route('/appUserCashBack/{userId}/{status}', appUserCashBack)
140
api.add_route('/rejects/', rejects)
143
api.add_route('/rejects/', rejects)
141
api.add_route('/orderfilters/', orderFilters)
-
 
142
144
api.add_route('/orderfilters/', orderFilters)
-
 
145
api.add_route('/getDummyDeals/',dummyDeals)
-
 
146
143
147