Subversion Repositories SmartDukaan

Rev

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

Rev 15045 Rev 16264
Line 221... Line 221...
221
	9:i64 doaOutTimeStamp,
221
	9:i64 doaOutTimeStamp,
222
	10:double transferPrice,
222
	10:double transferPrice,
223
	11:double nlcPrice
223
	11:double nlcPrice
224
}
224
}
225
 
225
 
-
 
226
struct TransferInvoiceScan {
-
 
227
    1:string shipmentReference,
-
 
228
    2:i64 transferLotId,
-
 
229
    3:string source,
-
 
230
    4:i64 quantity,
-
 
231
    5:string inventoryType,
-
 
232
    6:i64 date,
-
 
233
    7:i64 scannedQuantity
-
 
234
}
-
 
235
 
226
exception WarehouseServiceException {
236
exception WarehouseServiceException {
227
    1:GenericService.ExceptionType exceptionType,
237
    1:GenericService.ExceptionType exceptionType,
228
    2:string message
238
    2:string message
229
}
239
}
230
 
240
 
Line 479... Line 489...
479
	 RemovalStockShipmentReference getRemovalStockShipmentReferenceById(1:i64 id) throws (1:WarehouseServiceException ex);
489
	 RemovalStockShipmentReference getRemovalStockShipmentReferenceById(1:i64 id) throws (1:WarehouseServiceException ex);
480
	 
490
	 
481
	 i64 createRemovalStockShipmentReference(1:RemovalStockShipmentReference removalStockShipmentReference) throws (1:WarehouseServiceException ex);
491
	 i64 createRemovalStockShipmentReference(1:RemovalStockShipmentReference removalStockShipmentReference) throws (1:WarehouseServiceException ex);
482
	 
492
	 
483
	 void updateShipmentReferenceTransferLot(1:i64 transferLotId, 2:i64 shipmentReferenceId) throws (1:WarehouseServiceException ex); 
493
	 void updateShipmentReferenceTransferLot(1:i64 transferLotId, 2:i64 shipmentReferenceId) throws (1:WarehouseServiceException ex); 
-
 
494
	 
-
 
495
	 /**
-
 
496
     * Returns the shipment references and the count of scans against on a given day.
-
 
497
     */
-
 
498
     list<TransferInvoiceScan> fetchScansPerTransferInvoiceNumber(1:i64 date);
484
}
499
}
485
	 
500
	 
486
501