|
@@ -287,6 +287,18 @@ public class RollClubThreeDetailsController extends JeecgController<RollClubThre
|
|
if (oConvertUtils.isNotEmpty(storageBillPrint.getLicensePlate())) {
|
|
if (oConvertUtils.isNotEmpty(storageBillPrint.getLicensePlate())) {
|
|
queryWrapper.like("license_plate", storageBillPrint.getLicensePlate());
|
|
queryWrapper.like("license_plate", storageBillPrint.getLicensePlate());
|
|
}
|
|
}
|
|
|
|
+ // 定尺查询
|
|
|
|
+ if (oConvertUtils.isNotEmpty(storageBillPrint.getSize())) {
|
|
|
|
+ queryWrapper.like("size", storageBillPrint.getSize());
|
|
|
|
+ }
|
|
|
|
+ // 热坯/冷坯查询
|
|
|
|
+ if (oConvertUtils.isNotEmpty(storageBillPrint.getBtype())) {
|
|
|
|
+ queryWrapper.eq("btype", storageBillPrint.getBtype());
|
|
|
|
+ }
|
|
|
|
+ // 牌号查询
|
|
|
|
+ if (oConvertUtils.isNotEmpty(storageBillPrint.getBrandNum())) {
|
|
|
|
+ queryWrapper.eq("brand_num", storageBillPrint.getBrandNum());
|
|
|
|
+ }
|
|
// 根据到站时间排序
|
|
// 根据到站时间排序
|
|
queryWrapper.orderByDesc("arrival_time");
|
|
queryWrapper.orderByDesc("arrival_time");
|
|
List<StorageBillPrint> exportList = storageBillPrintService.list(queryWrapper);
|
|
List<StorageBillPrint> exportList = storageBillPrintService.list(queryWrapper);
|