Subversion Repositories SmartDukaan

Rev

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

Rev 19004 Rev 19421
Line 160... Line 160...
160
	16:optional string serial_number,
160
	16:optional string serial_number,
161
	17:optional string item_number,
161
	17:optional string item_number,
162
	18:optional string dealText,
162
	18:optional string dealText,
163
	19:i64 warrantry_expiry_timestamp,
163
	19:i64 warrantry_expiry_timestamp,
164
	20:double vatRate,
164
	20:double vatRate,
165
	21:double nlc
165
	21:double nlc,
-
 
166
	22:double logisticsCost,
-
 
167
	23:double codCollectionCharges
166
}
168
}
167
 
169
 
168
enum DelayReason {
170
enum DelayReason {
169
	INVENTORY_LOW_PHASED_OUT,
171
	INVENTORY_LOW_PHASED_OUT,
170
	INVENTORY_LOW_COLOR_NOT_AVAILABLE,
172
	INVENTORY_LOW_COLOR_NOT_AVAILABLE,
Line 2036... Line 2038...
2036
	 Returns at most 'limit' orders with the given statuses for the given warehouse starting from the given offset.
2038
	 Returns at most 'limit' orders with the given statuses for the given warehouse starting from the given offset.
2037
	 These orders should be in order of promised shipping time. 
2039
	 These orders should be in order of promised shipping time. 
2038
	 Pass the status as null and the limit as 0 to ignore them.
2040
	 Pass the status as null and the limit as 0 to ignore them.
2039
	 */
2041
	 */
2040
	 list<Order> getOrdersInBatchAsPromisedShipping(1:list<OrderStatus> statuses, 2:i64 offset, 3:i64 limit, 4:i64 warehouse_id, 5:i64 source) throws (1:TransactionServiceException ex),
2042
	 list<Order> getOrdersInBatchAsPromisedShipping(1:list<OrderStatus> statuses, 2:i64 offset, 3:i64 limit, 4:i64 warehouse_id, 5:i64 source) throws (1:TransactionServiceException ex),
2041
	 
2043
	 	
-
 
2044
	/**
-
 
2045
	* sets attributes for all orders in a Master Order Id or Shipment Id
-
 
2046
	*/
-
 
2047
	void setOrderAttributeForMasterOrderId(1:string logisticsTransactionId, 2:list<Attribute> attributes)
-
 
2048
	
-
 
2049
	bool updateMasterOrderAWB(1:string logisticsTransactionId, 2:string airwayBillNo);
2042
}
2050
}
2043
2051