Subversion Repositories SmartDukaan

Rev

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

Rev 19973 Rev 19980
Line 291... Line 291...
291
	75:double dataProtectionAmount,
291
	75:double dataProtectionAmount,
292
	76:TaxType taxType,
292
	76:TaxType taxType,
293
	77:string logisticsTransactionId,
293
	77:string logisticsTransactionId,
294
	78:double shippingCost,
294
	78:double shippingCost,
295
	79:double codCharges,
295
	79:double codCharges,
296
	80:i64 seller_id
296
	80:i64 seller_id,
-
 
297
	81:i64 warehouse_address_id
297
}
298
}
298
 
299
 
299
struct Attribute{
300
struct Attribute{
300
	1:string name,
301
	1:string name,
301
	2:string value
302
	2:string value
Line 358... Line 359...
358
    13:i64 payment_option,
359
    13:i64 payment_option,
359
    14:double totalShippingCost,
360
    14:double totalShippingCost,
360
    15:double totalCodCharges
361
    15:double totalCodCharges
361
}
362
}
362
 
363
 
-
 
364
struct WarehouseAddressMapping{
-
 
365
	1:i64 warehouse_id,
-
 
366
	2:i64 address_id,
-
 
367
	3:i64 created,
-
 
368
	4:i64 updated
-
 
369
}
-
 
370
 
-
 
371
struct WarehouseAddress{
-
 
372
	1:i64 id,
-
 
373
	2:string address,
-
 
374
	3:string pin,
-
 
375
	4:i64 state_id,
-
 
376
	5:i64 created
-
 
377
}
-
 
378
 
-
 
379
 
-
 
380
 
363
enum AlertType{
381
enum AlertType{
364
	NEW_INVENTORY_ALERT,
382
	NEW_INVENTORY_ALERT,
365
	ORDER_READY_TO_ACCEPT
383
	ORDER_READY_TO_ACCEPT
366
}
384
}
367
 
385
 
Line 2118... Line 2136...
2118
	bool markReturnNotRequiredOrdersProcessed(1:i64 returnTransactionId) throws (1:TransactionServiceException ex);
2136
	bool markReturnNotRequiredOrdersProcessed(1:i64 returnTransactionId) throws (1:TransactionServiceException ex);
2119
	
2137
	
2120
	ReturnPickupRequest getReturnPickupRequest(1:i64 returnPickupId);
2138
	ReturnPickupRequest getReturnPickupRequest(1:i64 returnPickupId);
2121
	list<PendingStoreOrder> getPendingStoreOrders(1:i64 storeId);
2139
	list<PendingStoreOrder> getPendingStoreOrders(1:i64 storeId);
2122
	SellerInfo getSellerInfo(1:i64 sellerId);
2140
	SellerInfo getSellerInfo(1:i64 sellerId);
-
 
2141
	WarehouseAddress getWarehouseAddress(1:i64 address_id);
-
 
2142
	
2123
}
2143
}
2124
2144