Browse Source

修改条码库存记录与产品库存记录条件搜索问题

zhifei 1 year ago
parent
commit
b64a69a3cd

+ 2 - 2
ruoyi-ui/src/views/wms/skuinv/index.vue

@@ -1,7 +1,7 @@
 <template>
   <div class="app-container">
-    <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px">
-      <el-form-item label="条码号" prop="barcode">
+    <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="80px">
+      <el-form-item label="ERP品号" prop="barcode">
         <el-input
           v-model="queryParams.barcode"
           placeholder="请输入ERP品号"

+ 5 - 18
warewms-ams/src/main/resources/mapper/erp/ErpBarcodesInvMapper.xml

@@ -53,24 +53,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
         LEFT JOIN erp_barcodes eb on eb.lotnum = illa.lotnum
         LEFT JOIN code_sku_relationship csr on csr.sn = ila.lotatt02
         <where>
-            <if test="barcode != null  and barcode != ''"> and barcode = #{barcode}</if>
-            <if test="stockId != null  and stockId != ''"> and stock_id = #{stockId}</if>
-            <if test="locationNo != null  and locationNo != ''"> and location_no = #{locationNo}</if>
-            <if test="boxNo != null  and boxNo != ''"> and box_no = #{boxNo}</if>
-            <if test="lotnum != null  and lotnum != ''"> and lotnum = #{lotnum}</if>
-            <if test="qty != null "> and qty = #{qty}</if>
-            <if test="type != null  and type != ''"> and type = #{type}</if>
-            <if test="erpNo != null  and erpNo != ''"> and erp_no = #{erpNo}</if>
-            <if test="erpName != null  and erpName != ''"> and erp_name like concat('%', #{erpName}, '%')</if>
-            <if test="erpType != null  and erpType != ''"> and erp_type = #{erpType}</if>
-            <if test="userdefine1 != null  and userdefine1 != ''"> and userdefine1 = #{userdefine1}</if>
-            <if test="userdefine2 != null  and userdefine2 != ''"> and userdefine2 = #{userdefine2}</if>
-            <if test="userdefine3 != null  and userdefine3 != ''"> and userdefine3 = #{userdefine3}</if>
-            <if test="userdefine4 != null  and userdefine4 != ''"> and userdefine4 = #{userdefine4}</if>
-            <if test="userdefine5 != null  and userdefine5 != ''"> and userdefine5 = #{userdefine5}</if>
-            <if test="userdefine6 != null  and userdefine6 != ''"> and userdefine6 = #{userdefine6}</if>
-            <if test="userdefine7 != null  and userdefine7 != ''"> and userdefine7 = #{userdefine7}</if>
-            <if test="userdefine8 != null  and userdefine8 != ''"> and userdefine8 = #{userdefine8}</if>
+            <if test="barcode != null  and barcode != ''"> and csr.sn like CONCAT('%', #{barcode},'%')</if>
+            <if test="locationNo != null  and locationNo != ''"> and bli.location_no like CONCAT('%', #{locationNo},'%') </if>
+            <if test="boxNo != null  and boxNo != ''"> and ila.lotatt07 like CONCAT('%',#{boxNo},'%')</if>
+            <if test="lotnum != null  and lotnum != ''"> and illa.lotnum like CONCAT('%',#{lotnum},'%') </if>
+            <if test="qty != null "> and illa.qty like CONCAT('%',#{qty},'%')</if>
         </where>
     </select>
 

+ 3 - 18
warewms-ams/src/main/resources/mapper/erp/ErpSkuInvMapper.xml

@@ -63,24 +63,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
         LEFT JOIN base_location_info bli ON bli.id = illa.location_id
         LEFT JOIN erp_barcodes eb ON eb.lotnum = illa.lotnum
         <where>
-            <if test="barcode != null  and barcode != ''">and barcode = #{barcode}</if>
-            <if test="stockId != null  and stockId != ''">and stock_id = #{stockId}</if>
-            <if test="locationNo != null  and locationNo != ''">and location_no = #{locationNo}</if>
-            <if test="boxNo != null  and boxNo != ''">and box_no = #{boxNo}</if>
-            <if test="lotnum != null  and lotnum != ''">and lotnum = #{lotnum}</if>
-            <if test="qty != null ">and qty = #{qty}</if>
-            <if test="type != null  and type != ''">and type = #{type}</if>
-            <if test="erpNo != null  and erpNo != ''">and erp_no = #{erpNo}</if>
-            <if test="erpName != null  and erpName != ''">and erp_name like concat('%', #{erpName}, '%')</if>
-            <if test="erpType != null  and erpType != ''">and erp_type = #{erpType}</if>
-            <if test="userdefine1 != null  and userdefine1 != ''">and userdefine1 = #{userdefine1}</if>
-            <if test="userdefine2 != null  and userdefine2 != ''">and userdefine2 = #{userdefine2}</if>
-            <if test="userdefine3 != null  and userdefine3 != ''">and userdefine3 = #{userdefine3}</if>
-            <if test="userdefine4 != null  and userdefine4 != ''">and userdefine4 = #{userdefine4}</if>
-            <if test="userdefine5 != null  and userdefine5 != ''">and userdefine5 = #{userdefine5}</if>
-            <if test="userdefine6 != null  and userdefine6 != ''">and userdefine6 = #{userdefine6}</if>
-            <if test="userdefine7 != null  and userdefine7 != ''">and userdefine7 = #{userdefine7}</if>
-            <if test="userdefine8 != null  and userdefine8 != ''">and userdefine8 = #{userdefine8}</if>
+            <if test="barcode != null  and barcode != ''">and  bs.sku like concat('%',#{barcode},'%')</if>
+            <if test="locationNo != null  and locationNo != ''">and bli.location_no like concat('%',#{locationNo},'%')</if>
+            <if test="boxNo != null  and boxNo != ''">and ila.lotatt07 like concat('%',#{boxNo},'%')</if>
         </where>
     </select>