|
@@ -295,6 +295,10 @@ public class RollClubThreeDetailsController extends JeecgController<RollClubThre
|
|
|
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");
|
|
|
List<StorageBillPrint> exportList = storageBillPrintService.list(queryWrapper);
|