Subversion Repositories SmartDukaan

Rev

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

Rev 13941 Rev 17470
Line 279... Line 279...
279
	72:i64 storeId,
279
	72:i64 storeId,
280
	73:ProductCondition productCondition,
280
	73:ProductCondition productCondition,
281
	74:i64 dataProtectionInsurer,
281
	74:i64 dataProtectionInsurer,
282
	75:double dataProtectionAmount,
282
	75:double dataProtectionAmount,
283
	76:TaxType taxType,
283
	76:TaxType taxType,
284
	77:string logisticsTransactionId
284
	77:string logisticsTransactionId,
-
 
285
	78:double shippingCost,
-
 
286
	79:double codCharges
285
}
287
}
286
 
288
 
287
struct Attribute{
289
struct Attribute{
288
	1:string name,
290
	1:string name,
289
	2:string value
291
	2:string value
Line 316... Line 318...
316
	8:string coupon_code,
318
	8:string coupon_code,
317
	9:string sessionSource,
319
	9:string sessionSource,
318
	10:i64 sessionStartTime,
320
	10:i64 sessionStartTime,
319
	11:string firstSource,
321
	11:string firstSource,
320
    12:i64 firstSourceTime,
322
    12:i64 firstSourceTime,
321
    13:i64 emiSchemeId
323
    13:i64 emiSchemeId,
-
 
324
    14:double totalShippingCost,
-
 
325
    15:double totalCodCharges
322
}
326
}
323
 
327
 
324
enum AlertType{
328
enum AlertType{
325
	NEW_INVENTORY_ALERT,
329
	NEW_INVENTORY_ALERT,
326
	ORDER_READY_TO_ACCEPT
330
	ORDER_READY_TO_ACCEPT
Line 908... Line 912...
908
	9:string paymentMode,
912
	9:string paymentMode,
909
	10:string courierName,
913
	10:string courierName,
910
	11:i64 slaDays,
914
	11:i64 slaDays,
911
	12:string shippingName
915
	12:string shippingName
912
}
916
}
-
 
917
/*
-
 
918
struct PaytmOrder {
-
 
919
	1:i64 orderId,
-
 
920
	2:string paytmOrderId,
-
 
921
	3:string paytmSubOrderId,
-
 
922
	4:
-
 
923
}*/
913
 
924
 
914
service TransactionService extends GenericService.GenericService{
925
service TransactionService extends GenericService.GenericService{
915
	
926
	
916
	i64 createTransaction(1:Transaction transaction) throws (1:TransactionServiceException ex),
927
	i64 createTransaction(1:Transaction transaction) throws (1:TransactionServiceException ex),
917
	
928
	
Line 1740... Line 1751...
1740
	 void createHomeShopOrder(1:HsOrder snapdealOrder);
1751
	 void createHomeShopOrder(1:HsOrder snapdealOrder);
1741
     
1752
     
1742
     list<HsOrder> getHomeShopOrder(1:i64 orderId, 2:string hsOrderNo, 3:string hsSubOrderNo);
1753
     list<HsOrder> getHomeShopOrder(1:i64 orderId, 2:string hsOrderNo, 3:string hsSubOrderNo);
1743
     
1754
     
1744
     bool homeShopOrderExists(1:string hsOrderNo, 2:string hsSubOrderNo);
1755
     bool homeShopOrderExists(1:string hsOrderNo, 2:string hsSubOrderNo);
-
 
1756
     
-
 
1757
     Order splitBulkOrder(1:i64 orderId, 2:i64 splitOrderQty);
1745
}
1758
}
1746
1759