Subversion Repositories SmartDukaan

Rev

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

Rev 2819 Rev 2842
Line 229... Line 229...
229
	/**
229
	/**
230
	Adds jacket number and IMEI no. to the order. Doesn't update the IMEI no. if a -1 is supplied.
230
	Adds jacket number and IMEI no. to the order. Doesn't update the IMEI no. if a -1 is supplied.
231
	Also marks the order as billed and sets the billing timestamp.
231
	Also marks the order as billed and sets the billing timestamp.
232
	Return false if it doesn't find the order with the given ID.
232
	Return false if it doesn't find the order with the given ID.
233
	*/
233
	*/
234
	bool addJacketNumber(1:i64 orderId, 2:i64 jacketNumber, 3:i64 imeiNumber, 4:string itemNumber, 5:string billedBy) throws (1:TransactionServiceException ex),
234
	bool addJacketNumber(1:i64 orderId, 2:i64 jacketNumber, 3:i64 imeiNumber, 4:string itemNumber, 5:string billedBy, 6:i64 billingType) throws (1:TransactionServiceException ex),
235
 
235
 
236
	bool acceptOrder(1:i64 orderId) throws (1:TransactionServiceException ex),
236
	bool acceptOrder(1:i64 orderId) throws (1:TransactionServiceException ex),
237
	bool billOrder(1:i64 orderId) throws (1:TransactionServiceException ex),
237
	bool billOrder(1:i64 orderId) throws (1:TransactionServiceException ex),
238
	
238
	
239
	/**
239
	/**