Subversion Repositories SmartDukaan

Rev

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

Rev 7172 Rev 7190
Line 246... Line 246...
246
	63:bool otg,
246
	63:bool otg,
247
	64:i64 courier_delivery_time
247
	64:i64 courier_delivery_time
248
	65:i64 insurer,
248
	65:i64 insurer,
249
	66:double insuranceAmount,
249
	66:double insuranceAmount,
250
	67:string dob,
250
	67:string dob,
251
	68:string guardianName
251
	68:string guardianName,
-
 
252
	69:i64 freebieItemId
252
}
253
}
253
 
254
 
254
struct Attribute{
255
struct Attribute{
255
	1:string name,
256
	1:string name,
256
	2:string value
257
	2:string value
Line 758... Line 759...
758
	the IMEI no. if a -1 is supplied.
759
	the IMEI no. if a -1 is supplied.
759
	Also, it generates an invoice number for the order, marks the order as
760
	Also, it generates an invoice number for the order, marks the order as
760
	BILLED and sets the billing timestamp.
761
	BILLED and sets the billing timestamp.
761
	Returns false if it doesn't find the order with the given ID.
762
	Returns false if it doesn't find the order with the given ID.
762
	*/
763
	*/
763
	bool addBillingDetails(1:i64 orderId, 2:string invoice_number, 3:list<string> serialNumber, 4:list<string> itemNumber, 5:string billed_by, 6:i64 jacketNumber, 7:i64 billingType, 8:i64 fulfilmentWarehouseId, 9:bool authorize) throws (1:TransactionServiceException ex),
764
	bool addBillingDetails(1:i64 orderId, 2:string invoice_number, 3:list<string> serialNumber, 4:list<string> itemNumber, 5:i64 freebieWarehouseId, 6:string billed_by, 7:i64 jacketNumber, 8:i64 billingType, 9:i64 fulfilmentWarehouseId, 10:bool authorize) throws (1:TransactionServiceException ex),
764
 
765
 
765
	/**
766
	/**
766
	Add the invoice number to the order.
767
	Add the invoice number to the order.
767
	*/	
768
	*/	
768
	void addInvoiceNumber(1:i64 orderId, 2:string invoiceNumber, 3:string color, 4:string serialNumber, 5:string itemNumber) throws (1:TransactionServiceException ex),
769
	void addInvoiceNumber(1:i64 orderId, 2:string invoiceNumber, 3:string color, 4:string serialNumber, 5:string itemNumber) throws (1:TransactionServiceException ex),
Line 1276... Line 1277...
1276
	 
1277
	 
1277
	 TelecomCircle getTelecomCircle(1:i64 id, 2:string code);
1278
	 TelecomCircle getTelecomCircle(1:i64 id, 2:string code);
1278
	 
1279
	 
1279
	 binary retrieveHotspotRechargeInvoice(1:i64 rechargeId);
1280
	 binary retrieveHotspotRechargeInvoice(1:i64 rechargeId);
1280
	 
1281
	 
-
 
1282
	 Order splitFreebieOrder(1:i64 orderId, 2:string splitReason, 3:i64 shippingDate);
-
 
1283
	 
1281
	 list<RechargeTransaction> getRechargeTransactionsByNumber(1:string number, 2:i64 storeId);
1284
	 list<RechargeTransaction> getRechargeTransactionsByNumber(1:string number, 2:i64 storeId);
1282
	 
1285
	 
1283
	 bool updateHotspotStorePassword(1:i64 storeId, 2:string password);
1286
	 bool updateHotspotStorePassword(1:i64 storeId, 2:string password);
1284
}
1287
}