Subversion Repositories SmartDukaan

Rev

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

Rev 6558 Rev 7410
Line 103... Line 103...
103
 
103
 
104
	public void markItemAsLost(long id, long currentQuantity) {
104
	public void markItemAsLost(long id, long currentQuantity) {
105
		inventoryItemMapper.markItemAsLost(id, currentQuantity);
105
		inventoryItemMapper.markItemAsLost(id, currentQuantity);
106
		
106
		
107
	}
107
	}
-
 
108
 
-
 
109
	/*public void markTransferLotAsRecieved(long id) {
-
 
110
		inventoryItemMapper.markTransferLotAsRecieved(id);
-
 
111
	}*/
-
 
112
 
-
 
113
	public List<InventoryItem> getInventoryItemsForTransferLot(long id) {
-
 
114
		return inventoryItemMapper.getInventoryItemsForTransferLot(id);
-
 
115
	}
-
 
116
 
-
 
117
	/*public InventoryItem getNonSeralizedInventoryItemForPhysicalWarehouse(
-
 
118
			String itemNumber, long itemId, long physicalWarehouseId) {
-
 
119
		return  inventoryItemMapper.getNonSeralizedInventoryItemForPhysicalWarehouse(itemNumber, itemId, physicalWarehouseId);
-
 
120
	}*/
-
 
121
 
-
 
122
	public long getCurrentQuantityForNonSerializedItemInPhysicalWarehouse(
-
 
123
			long itemId, long physicalWarehouseId) {
-
 
124
		return inventoryItemMapper.getCurrentQuantityForNonSerializedItemInPhysicalWarehouse(itemId, physicalWarehouseId);
-
 
125
	}
-
 
126
 
-
 
127
	public List<InventoryItem> getCurrentNonSerializedItemsByItemIdInPhysicalWarehouse(
-
 
128
			long itemId, long physicalWarehouseId) {
-
 
129
		return inventoryItemMapper.getCurrentNonSerializedItemsByItemIdInPhysicalWarehouse(itemId, physicalWarehouseId);
-
 
130
	}
108
	
131
	
109
}
132
}