Subversion Repositories SmartDukaan

Rev

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

Rev 19421 Rev 19474
Line 1126... Line 1126...
1126
	15:string customerState,
1126
	15:string customerState,
1127
	16:string customerPhone,
1127
	16:string customerPhone,
1128
	17:list<ReturnOrderInfo> returnOrders
1128
	17:list<ReturnOrderInfo> returnOrders
1129
}
1129
}
1130
 
1130
 
-
 
1131
struct ShipmentLogisticsCostDetail{
-
 
1132
	1:string logisticsTransactionId,
-
 
1133
	2:string airwayBillNo,
-
 
1134
	3:double shipmentAmount,
-
 
1135
	4:double shipmentWeight,
-
 
1136
	5:double shipmentLogsiticsCost,
-
 
1137
	6:double shipmentCodCollectionCharges,
-
 
1138
	7:i64 createdAt,
-
 
1139
	8:i64 updatedAt
-
 
1140
}
-
 
1141
 
1131
service TransactionService extends GenericService.GenericService{
1142
service TransactionService extends GenericService.GenericService{
1132
	
1143
	
1133
	i64 createTransaction(1:Transaction transaction) throws (1:TransactionServiceException ex),
1144
	i64 createTransaction(1:Transaction transaction) throws (1:TransactionServiceException ex),
1134
	
1145
	
1135
	//	Get transaction methods.
1146
	//	Get transaction methods.
Line 2045... Line 2056...
2045
	* sets attributes for all orders in a Master Order Id or Shipment Id
2056
	* sets attributes for all orders in a Master Order Id or Shipment Id
2046
	*/
2057
	*/
2047
	void setOrderAttributeForMasterOrderId(1:string logisticsTransactionId, 2:list<Attribute> attributes)
2058
	void setOrderAttributeForMasterOrderId(1:string logisticsTransactionId, 2:list<Attribute> attributes)
2048
	
2059
	
2049
	bool updateMasterOrderAWB(1:string logisticsTransactionId, 2:string airwayBillNo);
2060
	bool updateMasterOrderAWB(1:string logisticsTransactionId, 2:string airwayBillNo);
-
 
2061
	
-
 
2062
	bool addOrUpdateShipmentLogisticsCostDetails(1:list<ShipmentLogisticsCostDetail>  shipmentLogisticsCostDetails)
2050
}
2063
}
2051
2064