| Line 64... |
Line 64... |
| 64 |
|
64 |
|
| 65 |
inventoryClient = new InventoryClient().getClient();
|
65 |
inventoryClient = new InventoryClient().getClient();
|
| 66 |
List<Warehouse> ourGoodWarehouses = inventoryClient.getWarehouses(WarehouseType.OURS, InventoryType.GOOD, 0, 0, 0);
|
66 |
List<Warehouse> ourGoodWarehouses = inventoryClient.getWarehouses(WarehouseType.OURS, InventoryType.GOOD, 0, 0, 0);
|
| 67 |
Map<Long, Warehouse> ourWarehouseMap = new Hashtable<Long, Warehouse>(200);
|
67 |
Map<Long, Warehouse> ourWarehouseMap = new Hashtable<Long, Warehouse>(200);
|
| 68 |
for(Warehouse warehouse : ourGoodWarehouses) {
|
68 |
for(Warehouse warehouse : ourGoodWarehouses) {
|
| - |
|
69 |
System.out.println("Warehouse = " + warehouse.getId());
|
| 69 |
ourWarehouseMap.put(warehouse.getId(), warehouse);
|
70 |
ourWarehouseMap.put(warehouse.getId(), warehouse);
|
| 70 |
}
|
71 |
}
|
| 71 |
|
72 |
|
| 72 |
inventoryClient = new InventoryClient().getClient();
|
73 |
inventoryClient = new InventoryClient().getClient();
|
| 73 |
List<VendorItemPricing> vendorItemPricings = inventoryClient.getAllVendorItemPricing(0, 0);
|
74 |
List<VendorItemPricing> vendorItemPricings = inventoryClient.getAllVendorItemPricing(0, 0);
|