|
|
@@ -13,7 +13,7 @@ import java.io.Serializable |
|
|
|
interface InventoryLotLineRepository : AbstractRepository<InventoryLotLine, Long> { |
|
|
|
fun findInventoryLotLineInfoByInventoryLotItemIdIn(ids: List<Serializable>): List<InventoryLotLineInfo> |
|
|
|
|
|
|
|
@Query("select ill from InventoryLotLine ill where :id is null or ill.inventoryLot.item.id = :id") |
|
|
|
@Query("select ill from InventoryLotLine ill where :id is null or ill.inventoryLot.item.id = :id order by ill.id desc") |
|
|
|
fun findInventoryLotLineInfoByItemId(id: Long?, pageable: Pageable): Page<InventoryLotLineInfo> |
|
|
|
|
|
|
|
@Query(""" |
|
|
|