Subversion Repositories SmartDukaan

Rev

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

Rev 12620 Rev 12800
Line 85... Line 85...
85
   14:i64 purchasedAt,
85
   14:i64 purchasedAt,
86
   15:double nlc,
86
   15:double nlc,
87
   16:i64 warehouseId,
87
   16:i64 warehouseId,
88
   17:i64 taxType,
88
   17:i64 taxType,
89
   18:i64 invoiceDate,
89
   18:i64 invoiceDate,
90
   19:double mrp
90
   19:double mrp,
-
 
91
   20:string purchaseComments
91
}
92
}
92
 
93
 
93
struct InvoiceScan {
94
struct InvoiceScan {
94
    1:string invoiceNumber,
95
    1:string invoiceNumber,
95
    2:i64 numItems,
96
    2:i64 numItems,
Line 183... Line 184...
183
	7:string transitCompletionReferenceNumber,
184
	7:string transitCompletionReferenceNumber,
184
	8:i64 referenceUpdationDate
185
	8:i64 referenceUpdationDate
185
	9:string remarks,
186
	9:string remarks,
186
}
187
}
187
 
188
 
-
 
189
struct InvAgeConsiderItems {
-
 
190
    1:i64 id,
-
 
191
    2:i64 itemId,
-
 
192
    3:i64 currentQuantity,
-
 
193
    4:i64 purchaseId,
-
 
194
    5:double age,
-
 
195
    6:string category,
-
 
196
    7:i64 cost
-
 
197
}
-
 
198
 
188
exception WarehouseServiceException {
199
exception WarehouseServiceException {
189
    1:GenericService.ExceptionType exceptionType,
200
    1:GenericService.ExceptionType exceptionType,
190
    2:string message
201
    2:string message
191
}
202
}
192
 
203
 
Line 420... Line 431...
420
	 
431
	 
421
	 //string scanWithResponse(1:InventoryItem inventoryItem, 2:ScanType type, 3:i64 quantity, 4:i64 billingWarehouseId, 5:i64 transferLotId) throws (1:WarehouseServiceException wex);
432
	 //string scanWithResponse(1:InventoryItem inventoryItem, 2:ScanType type, 3:i64 quantity, 4:i64 billingWarehouseId, 5:i64 transferLotId) throws (1:WarehouseServiceException wex);
422
	 
433
	 
423
	 list<string> checkGrnImeiStatus(1:list<string> imeiNos) throws (1:WarehouseServiceException ex);
434
	 list<string> checkGrnImeiStatus(1:list<string> imeiNos) throws (1:WarehouseServiceException ex);
424
	 
435
	 
-
 
436
	 list<InvAgeConsiderItems> getInventoryAgeConsideredItems(1:i64 itemId) throws (1:WarehouseServiceException ex);
-
 
437
	 
425
}
438
}
426
	 
439
	 
427
440