|
|
|
@ -39,14 +39,14 @@ public class InvPreinProductServiceImpl implements InvPreinProductService {
|
|
|
|
|
public InvPreinProductEntity selectByUnique(Long relId, String batchNo, String supId, String deptCode, String invCode, BigDecimal price) {
|
|
|
|
|
return invPreinProductDao.selectOne(new QueryWrapper<InvPreinProductEntity>().eq("relIdFk", relId).eq(StrUtil.isNotEmpty(batchNo), "batchNo", batchNo)
|
|
|
|
|
.isNull(StrUtil.isEmpty(batchNo), "batchNo").eq("supId", supId).eq("deptCode", deptCode).eq("invCode", invCode)
|
|
|
|
|
.eq(price != null, "price", price).isNull(price == null, "price"));
|
|
|
|
|
.eq(price != null, "price", price).isNull(price == null, "price").last("limit 1"));
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public InvPreinProductEntity selectByUnique(Long relId, String batchNo, String supId) {
|
|
|
|
|
return invPreinProductDao.selectOne(new QueryWrapper<InvPreinProductEntity>().eq("relIdFk", relId).eq(StrUtil.isNotEmpty(batchNo), "batchNo", batchNo)
|
|
|
|
|
.isNull(StrUtil.isEmpty(batchNo), "batchNo").eq("supId", supId));
|
|
|
|
|
.isNull(StrUtil.isEmpty(batchNo), "batchNo").eq("supId", supId).last("limit 1"));
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|