From 20bf9973fc80831edd76eef68684c2390b2ad867 Mon Sep 17 00:00:00 2001
From: gongchunyi <deslre0381@gmail.com>
Date: 星期五, 13 三月 2026 10:03:28 +0800
Subject: [PATCH] fix: 产品规格增加物料编号、(规格 + 编号)的筛选
---
src/main/resources/mapper/productionPlan/ProductionPlanMapper.xml | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/src/main/resources/mapper/productionPlan/ProductionPlanMapper.xml b/src/main/resources/mapper/productionPlan/ProductionPlanMapper.xml
index de06cf1..a7c1b84 100644
--- a/src/main/resources/mapper/productionPlan/ProductionPlanMapper.xml
+++ b/src/main/resources/mapper/productionPlan/ProductionPlanMapper.xml
@@ -59,6 +59,9 @@
<if test="c.specification != null and c.specification != '' ">
AND pms.specification LIKE CONCAT('%',#{c.specification},'%')
</if>
+ <if test="c.applyNo != null and c.applyNo != '' ">
+ AND pp.apply_no LIKE CONCAT('%',#{c.applyNo},'%')
+ </if>
<if test="c.startDate != null">
AND pp.start_date >= DATE_FORMAT(#{c.startDate},'%Y-%m-%d')
</if>
--
Gitblit v1.9.3