Subversion Repositories SmartDukaan

Rev

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

Rev 21242 Rev 21617
Line 54... Line 54...
54
    // derived fields for  efficient lookups
54
    // derived fields for  efficient lookups
55
    11:i64 supplierId,
55
    11:i64 supplierId,
56
    12:double unitPrice,
56
    12:double unitPrice,
57
    13:i64 currentWarehouseId,
57
    13:i64 currentWarehouseId,
58
    14:ScanType lastScanType,
58
    14:ScanType lastScanType,
59
    15:double nlc
59
    15:double nlc,
-
 
60
    16:string serialNumber2,
-
 
61
    17:i64 firstScanned,
-
 
62
    18:i64 activated,
-
 
63
    19:i64 created
60
}
64
}
61
 
65
 
62
struct Scan {
66
struct Scan {
63
    1:i64 id,
67
    1:i64 id,
64
    2:i64 inventoryItemId,
68
    2:i64 inventoryItemId,
Line 498... Line 502...
498
     * Returns the shipment references and the count of scans against on a given day.
502
     * Returns the shipment references and the count of scans against on a given day.
499
     */
503
     */
500
     list<TransferInvoiceScan> fetchScansPerTransferInvoiceNumber(1:i64 date);
504
     list<TransferInvoiceScan> fetchScansPerTransferInvoiceNumber(1:i64 date);
501
     
505
     
502
     list<InventoryItem> getInventoryItems(1:list<string> serialNumbers) throws (1:WarehouseServiceException wex);
506
     list<InventoryItem> getInventoryItems(1:list<string> serialNumbers) throws (1:WarehouseServiceException wex);
-
 
507
 
-
 
508
     list<InventoryItem> getInventoryItemsBySerailNumbers(1:list<string> serialNumbers) throws (1:WarehouseServiceException wex);
-
 
509
     
-
 
510
     void scanPurchaseBulk(1:list<InventoryItem> inventoryItems) throws (1:WarehouseServiceException wex);
-
 
511
     
-
 
512
     
-
 
513
     
-
 
514
     
503
     
515
     
504
}
516
}
505
	 
517
	 
506
518