| Line 1... |
Line 1... |
| 1 |
package in.shop2020.warehouse.persistence;
|
1 |
package in.shop2020.warehouse.persistence;
|
| 2 |
|
2 |
|
| - |
|
3 |
import in.shop2020.warehouse.DoaOutInventoryItem;
|
| 3 |
import in.shop2020.warehouse.InTransitInventory;
|
4 |
import in.shop2020.warehouse.InTransitInventory;
|
| 4 |
import in.shop2020.warehouse.ScanType;
|
5 |
import in.shop2020.warehouse.ScanType;
|
| 5 |
import in.shop2020.warehouse.domain.InventoryItem;
|
6 |
import in.shop2020.warehouse.domain.InventoryItem;
|
| 6 |
|
7 |
|
| 7 |
import java.util.Date;
|
8 |
import java.util.Date;
|
| Line 105... |
Line 106... |
| 105 |
|
106 |
|
| 106 |
Long getCurrentBadQuantityForItem(@Param("itemId") long itemId,@Param("currentWarehouseId") long currentWarehouseId, @Param("physicalWarehouseId") long physicalWarehouseId);
|
107 |
Long getCurrentBadQuantityForItem(@Param("itemId") long itemId,@Param("currentWarehouseId") long currentWarehouseId, @Param("physicalWarehouseId") long physicalWarehouseId);
|
| 107 |
|
108 |
|
| 108 |
@MapKey("itemId")
|
109 |
@MapKey("itemId")
|
| 109 |
Map<Integer, Integer> getItemsInPurchaseReturn(@Param("purchaseReturnId")long purchaseReturnId, @Param("type")ScanType type, @Param("returnTime")String returnTime);
|
110 |
Map<Integer, Integer> getItemsInPurchaseReturn(@Param("purchaseReturnId")long purchaseReturnId, @Param("type")ScanType type, @Param("returnTime")String returnTime);
|
| - |
|
111 |
|
| - |
|
112 |
List<InventoryItem> getDoaOutInventoryItems(@Param("offset")long offset, @Param("limit")long limit);
|
| - |
|
113 |
|
| - |
|
114 |
List<InventoryItem> getDoaOutSearchedItems(@Param("searchTerm")String searchTerm, @Param("offset")long offset, @Param("limit")long limit);
|
| - |
|
115 |
|
| - |
|
116 |
long getCountForDoaOutInventoryItems();
|
| - |
|
117 |
|
| - |
|
118 |
long getDoaOutInventoryItemsResultCount(@Param("searchTerm")String searchTerm);
|
| - |
|
119 |
|
| - |
|
120 |
List<DoaOutInventoryItem> getAllDoaOutInventoryItems();
|
| 110 |
}
|
121 |
}
|