Subversion Repositories SmartDukaan

Rev

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

Rev 13529 Rev 14491
Line 194... Line 194...
194
    5:double age,
194
    5:double age,
195
    6:string category,
195
    6:string category,
196
    7:i64 cost
196
    7:i64 cost
197
}
197
}
198
 
198
 
-
 
199
struct DoaOutInventoryItem {
-
 
200
	1:i64 id
-
 
201
	2:i64 warehouseId,
-
 
202
	3:string warehouseName,
-
 
203
	4:i64 itemId,
-
 
204
	5:string product,
-
 
205
	6:string serialNumber,
-
 
206
	7:string itemNumber,
-
 
207
	8:string purchaseOrder
-
 
208
}
-
 
209
 
199
exception WarehouseServiceException {
210
exception WarehouseServiceException {
200
    1:GenericService.ExceptionType exceptionType,
211
    1:GenericService.ExceptionType exceptionType,
201
    2:string message
212
    2:string message
202
}
213
}
203
 
214
 
Line 434... Line 445...
434
	 list<string> checkGrnImeiStatus(1:list<string> imeiNos) throws (1:WarehouseServiceException ex);
445
	 list<string> checkGrnImeiStatus(1:list<string> imeiNos) throws (1:WarehouseServiceException ex);
435
	 
446
	 
436
	 list<InvAgeConsiderItems> getInventoryAgeConsideredItems(1:i64 itemId) throws (1:WarehouseServiceException ex);
447
	 list<InvAgeConsiderItems> getInventoryAgeConsideredItems(1:i64 itemId) throws (1:WarehouseServiceException ex);
437
	 
448
	 
438
	 list<InventoryMovement> getCompleteMovementForThirdPartyWarehouse(1:i64 startDate, 2:i64 endDate);
449
	 list<InventoryMovement> getCompleteMovementForThirdPartyWarehouse(1:i64 startDate, 2:i64 endDate);
-
 
450
	 /* 
-
 
451
	 list<InventoryItem> getDoaOutInventoryItems(1:i64 offset,2:i64 limit) throws (1:WarehouseServiceException ex);
-
 
452
	 
-
 
453
	 list<InventoryItem> getDoaOutSearchedItems(1:list<string> searchTerm,2:i64 offset,3:i64 limit) throws (1:WarehouseServiceException ex);
-
 
454
	 
-
 
455
	 i64 getCountForDoaOutInventoryItems() throws (1:WarehouseServiceException ex);
-
 
456
	
-
 
457
	 i64 getDoaOutInventoryItemsResultCount(1:list<string> searchTerm) throws (1:WarehouseServiceException ex); */
-
 
458
	 
-
 
459
	 list<DoaOutInventoryItem> getAllDoaOutInventoryItems() throws (1:WarehouseServiceException ex);
439
}
460
}
440
	 
461
	 
441
462