Subversion Repositories SmartDukaan

Rev

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

Rev 7039 Rev 7092
Line 306... Line 306...
306
	map<i64, string> applyRechargeCoupon(1:string couponCode, 2:i64 totalAmount, 3:i64 userId) throws (1:PromotionException pex),
306
	map<i64, string> applyRechargeCoupon(1:string couponCode, 2:i64 totalAmount, 3:i64 userId) throws (1:PromotionException pex),
307
    void trackCouponUsage(1:string couponCode, 2:i64 transactionId, 3:i64 userId) throws (1:PromotionException pex),
307
    void trackCouponUsage(1:string couponCode, 2:i64 transactionId, 3:i64 userId) throws (1:PromotionException pex),
308
    i64 getCouponUsageCountByUser(1:string couponCode, 2:i64 userId) throws (1:PromotionException pex),
308
    i64 getCouponUsageCountByUser(1:string couponCode, 2:i64 userId) throws (1:PromotionException pex),
309
    list<Coupon> getActiveCodes(1:i64 promotionId) throws (1:PromotionException pex),
309
    list<Coupon> getActiveCodes(1:i64 promotionId) throws (1:PromotionException pex),
310
    void deleteCoupon(1:string couponCode) throws (1:PromotionException pex),
310
    void deleteCoupon(1:string couponCode) throws (1:PromotionException pex),
-
 
311
    list<Coupon> getAllCouponsByPromotionId(1:i64 promotionId) throws (1:PromotionException pex),
311
    
312
    
312
    /**
313
    /**
313
     Returns a list of active coupons
314
     Returns a list of active coupons
314
     */
315
     */
315
    list<Coupon> getActiveCoupons() throws (1:PromotionException pex),
316
    list<Coupon> getActiveCoupons() throws (1:PromotionException pex),