Subversion Repositories SmartDukaan

Rev

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

Rev 10120 Rev 10215
Line 2... Line 2...
2
 
2
 
3
import in.shop2020.warehouse.InTransitInventory;
3
import in.shop2020.warehouse.InTransitInventory;
4
import in.shop2020.warehouse.ScanType;
4
import in.shop2020.warehouse.ScanType;
5
import in.shop2020.warehouse.domain.InventoryItem;
5
import in.shop2020.warehouse.domain.InventoryItem;
6
 
6
 
-
 
7
import java.util.Date;
7
import java.util.List;
8
import java.util.List;
8
import java.util.Map;
9
import java.util.Map;
9
 
10
 
10
import org.apache.ibatis.annotations.Param;
11
import org.apache.ibatis.annotations.Param;
11
 
12
 
Line 84... Line 85...
84
	/*InventoryItem getNonSeralizedInventoryItemForPhysicalWarehouse(
85
	/*InventoryItem getNonSeralizedInventoryItemForPhysicalWarehouse(
85
			@Param("itemNumber")String itemNumber, @Param("itemId")long itemId, @Param("physicalWarehouseId")long physicalWarehouseId);*/
86
			@Param("itemNumber")String itemNumber, @Param("itemId")long itemId, @Param("physicalWarehouseId")long physicalWarehouseId);*/
86
	
87
	
87
	List<InventoryItem> getTransferLotItemsForMarkReceive(
88
	List<InventoryItem> getTransferLotItemsForMarkReceive(
88
			@Param("transferLotId")long transferLotId,@Param("type")ScanType scanType);
89
			@Param("transferLotId")long transferLotId,@Param("type")ScanType scanType);
-
 
90
 
-
 
91
	List<Long> getNonEmptyGrnsByDate(@Param("startDate") Date startDate, @Param("endDate") Date endDate);
-
 
92
	
-
 
93
	List<Long> getAllGrnsByDate(@Param("startDate") Date startDate, @Param("endDate") Date endDate);
89
}
94
}