Subversion Repositories SmartDukaan

Rev

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

Rev 13114 Rev 13148
Line 274... Line 274...
274
	71:double advanceAmount,
274
	71:double advanceAmount,
275
	72:i64 storeId,
275
	72:i64 storeId,
276
	73:ProductCondition productCondition,
276
	73:ProductCondition productCondition,
277
	74:i64 dataProtectionInsurer,
277
	74:i64 dataProtectionInsurer,
278
	75:double dataProtectionAmount,
278
	75:double dataProtectionAmount,
279
	76:TaxType taxType
279
	76:TaxType taxType,
-
 
280
	77:string logisticsTransactionId
280
}
281
}
281
 
282
 
282
struct Attribute{
283
struct Attribute{
283
	1:string name,
284
	1:string name,
284
	2:string value
285
	2:string value
Line 847... Line 848...
847
	18:string returnReason,
848
	18:string returnReason,
848
	19:string freebieItemId,
849
	19:string freebieItemId,
849
	20:string productTitle
850
	20:string productTitle
850
}
851
}
851
 
852
 
-
 
853
struct FlipkartFaSalesSnapshot {
-
 
854
	1:i64 dateOfSale
-
 
855
	2:i64 item_id
-
 
856
	3:i32 totalOrderCount
-
 
857
	4:bool isOutOfStock
-
 
858
    5:double totalSale
-
 
859
    6:double ourPrice
-
 
860
}
-
 
861
 
852
struct AmazonHourlySaleSnapshot {
862
struct AmazonHourlySaleSnapshot {
853
	1:i64 snapshotTime
863
	1:i64 snapshotTime
854
	2:i64 item_id
864
	2:i64 item_id
855
	3:i32 totalOrderCount
865
	3:i32 totalOrderCount
856
	4:i64 amazonFbaInventory
866
	4:i64 amazonFbaInventory
Line 1669... Line 1679...
1669
	 bool flipkartFaOrderExists(1:string fkOrderId, 2:string fkOrderItemId) throws (1:TransactionServiceException ex)
1679
	 bool flipkartFaOrderExists(1:string fkOrderId, 2:string fkOrderItemId) throws (1:TransactionServiceException ex)
1670
	 
1680
	 
1671
	 RechargeOrder getRcgOrderStatus(1:i64 rechargeOrderId,2:bool isFinal)
1681
	 RechargeOrder getRcgOrderStatus(1:i64 rechargeOrderId,2:bool isFinal)
1672
	 
1682
	 
1673
	 RechargeTransaction getRcgTransactionStatus(1:i64 rechargeTransactionId,2:bool isFinal)
1683
	 RechargeTransaction getRcgTransactionStatus(1:i64 rechargeTransactionId,2:bool isFinal)
-
 
1684
	 
-
 
1685
	 void bulkAddOrUpdateFlipkartFaSalesSnapshot(1:list<FlipkartFaSalesSnapshot> flipkartfasalessnapshotlist)
-
 
1686
	 
-
 
1687
	 list<FlipkartFaSalesSnapshot> getFlipkartFaSalesSnapshotForDays(1:i32 days)
-
 
1688
	 
-
 
1689
	 FlipkartFaSalesSnapshot getFlipkartFaSalesSnapshotBySkuAndSaleDate(1:i64 item_id, 2:i64 dateOfSale)
-
 
1690
	 
-
 
1691
	 bool acceptPackageOrders(list<i64> orders) throws (1:TransactionServiceException ex)
-
 
1692
	 
-
 
1693
	 list<Order> getGroupOrdersByLogisticsTxnId(1:string logisticsTxnId) throws (1:TransactionServiceException ex)
-
 
1694
	 
-
 
1695
	 bool addBillingDetailsForGrouppedOrders(1:list<i64> order_ids, 2:string invoice_number, 3:map<i64,list<string>> itemNumbersMap, 4:map<i64,list<string>> serialNumbersMap, 5:map<i64,list<i64>> freebieWarehouseIdMap, 6:string billed_by, 7:i64 jacketNumber, 8:i64 billingType, 9:bool authorize) throws (1:TransactionServiceException ex)
1674
}
1696
}
1675
1697