Subversion Repositories SmartDukaan

Rev

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

Rev 12653 Rev 12772
Line 273... Line 273...
273
	71:double advanceAmount,
273
	71:double advanceAmount,
274
	72:i64 storeId,
274
	72:i64 storeId,
275
	73:ProductCondition productCondition,
275
	73:ProductCondition productCondition,
276
	74:i64 dataProtectionInsurer,
276
	74:i64 dataProtectionInsurer,
277
	75:double dataProtectionAmount,
277
	75:double dataProtectionAmount,
278
	76:TaxType taxType
278
	76:TaxType taxType,
-
 
279
	77:string invoicePrefix
279
}
280
}
280
 
281
 
281
struct Attribute{
282
struct Attribute{
282
	1:string name,
283
	1:string name,
283
	2:string value
284
	2:string value
Line 820... Line 821...
820
}
821
}
821
 
822
 
822
struct FlipkartAdvantageOrder {
823
struct FlipkartAdvantageOrder {
823
	1:string fkOrderId,
824
	1:string fkOrderId,
824
	2:string fkOrderItemId,
825
	2:string fkOrderItemId,
825
	3:string sku,
826
	3:i64 sku,
826
	4:i64 creationTimestamp
827
	4:i64 creationTimestamp
827
	5:string customerName,
828
	5:string customerName,
828
	6:string customerAddress,
829
	6:string customerAddress,
829
	7:string pincode,
830
	7:string pincode,
830
	8:string customerCity,
831
	8:string customerCity,
Line 1637... Line 1638...
1637
	 
1638
	 
1638
	 map<i64, map<string, i64>> getTotalSaleReturnsFbaSkusCurentTime(1:i64 insertionTimestamp) throws (1:TransactionServiceException ex)
1639
	 map<i64, map<string, i64>> getTotalSaleReturnsFbaSkusCurentTime(1:i64 insertionTimestamp) throws (1:TransactionServiceException ex)
1639
	 
1640
	 
1640
	 list<FlipkartOrder> getVerificationPendingOrdersFK() throws (1:TransactionServiceException ex)
1641
	 list<FlipkartOrder> getVerificationPendingOrdersFK() throws (1:TransactionServiceException ex)
1641
	 
1642
	 
1642
	 FlipkartAdvantageOrder getFAOrderByFkOrderId(1:string fkOrderId) throws (1:TransactionServiceException ex)
1643
	 FlipkartAdvantageOrder getFAOrderByFkOrderId(1:string fkOrderId, 2:string fkOrderItemId) throws (1:TransactionServiceException ex)
1643
	 
1644
	 
1644
	 list<FlipkartAdvantageOrder> getAllFAOrdersList() throws (1:TransactionServiceException ex)
1645
	 list<FlipkartAdvantageOrder> getAllFAOrdersList(1:string status) throws (1:TransactionServiceException ex)
1645
	 
1646
	 
1646
	 void addUpdateFaOrdersBulk(1:list<FlipkartAdvantageOrder> faOrdersList) throws (1:TransactionServiceException ex)
1647
	 void addUpdateFaOrdersBulk(1:list<FlipkartAdvantageOrder> faOrdersList) throws (1:TransactionServiceException ex)
1647
	 
1648
	 
1648
	 void addInvoiceDetailsToOrders(1:i64 transactionId, 2:i64 customerId) throws (1:TransactionServiceException ex)
1649
	 void addInvoiceDetailsToOrders(1:i64 transactionId, 2:i64 customerId) throws (1:TransactionServiceException ex)
-
 
1650
	 
-
 
1651
	 bool flipkartFaOrderExists(1:string fkOrderId, 2:string fkOrderItemId) throws (1:TransactionServiceException ex)
1649
}
1652
}
1650
1653