Subversion Repositories SmartDukaan

Rev

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

Rev 19980 Rev 20025
Line 338... Line 338...
338
	1:i64 sellerId,
338
	1:i64 sellerId,
339
	2:string organisationName,
339
	2:string organisationName,
340
	3:string registeredAddress,
340
	3:string registeredAddress,
341
	4:string regId,
341
	4:string regId,
342
	5:string cinNumber,
342
	5:string cinNumber,
343
	6:string tin
343
	6:string tin,
-
 
344
	7:i64 stateId
-
 
345
}
-
 
346
 
-
 
347
struct BuyerInfo {
-
 
348
	1:i64 buyerId,
-
 
349
	2:string organisationName,
-
 
350
	3:string registeredAddress,
-
 
351
	4:string regId,
-
 
352
	5:string cinNumber,
-
 
353
	6:string tin,
-
 
354
	7:i64 addressId,
-
 
355
	8:i64 address,
-
 
356
	9:i64 stateId
344
}
357
}
345
 
358
 
346
struct Transaction{
359
struct Transaction{
347
	1:i64 id,
360
	1:i64 id,
348
	2:list<Order> orders,
361
	2:list<Order> orders,
Line 2137... Line 2150...
2137
	
2150
	
2138
	ReturnPickupRequest getReturnPickupRequest(1:i64 returnPickupId);
2151
	ReturnPickupRequest getReturnPickupRequest(1:i64 returnPickupId);
2139
	list<PendingStoreOrder> getPendingStoreOrders(1:i64 storeId);
2152
	list<PendingStoreOrder> getPendingStoreOrders(1:i64 storeId);
2140
	SellerInfo getSellerInfo(1:i64 sellerId);
2153
	SellerInfo getSellerInfo(1:i64 sellerId);
2141
	WarehouseAddress getWarehouseAddress(1:i64 address_id);
2154
	WarehouseAddress getWarehouseAddress(1:i64 address_id);
-
 
2155
	BuyerInfo getBuyerByWarehouse(1:i64 warehouse_id);
2142
	
2156
	
2143
}
2157
}
2144
2158