Subversion Repositories SmartDukaan

Rev

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

Rev 7343 Rev 7355
Line 367... Line 367...
367
    RECHARGE_UNKNOWN = 10
367
    RECHARGE_UNKNOWN = 10
368
}
368
}
369
 
369
 
370
enum OrderSource {
370
enum OrderSource {
371
	WEBSITE = 1,
371
	WEBSITE = 1,
372
	STORE = 2	
372
	STORE = 2,
-
 
373
	AMAZON =3	
373
}
374
}
374
 
375
 
375
struct RechargeOrder {
376
struct RechargeOrder {
376
    1:i64 id,
377
    1:i64 id,
377
    2:string displayId,
378
    2:string displayId,
Line 1334... Line 1335...
1334
	 
1335
	 
1335
	 AmazonOrder getAmazonOrder(1:i64 orderId);
1336
	 AmazonOrder getAmazonOrder(1:i64 orderId);
1336
	 
1337
	 
1337
	 list<Order> getOrdersForStore(1:i64 id, 2:i64 storeId, 3:i64 startDate, 4:i64 endDate, 5:list<OrderStatus> statuses);
1338
	 list<Order> getOrdersForStore(1:i64 id, 2:i64 storeId, 3:i64 startDate, 4:i64 endDate, 5:list<OrderStatus> statuses);
1338
	 
1339
	 
1339
	 binary getStoreOrderAdvanceInvoice(1:i64 orderId);
1340
	 binary getStoreOrderAdvanceInvoice(1:i64 orderId)
-
 
1341
	 
-
 
1342
	 
1340
}
1343
}