fix:财务模块-付款单页面查询条件修改

dev_1.0.2
UNISINSIGHT\rdpnr_jiangpeng 2026-03-11 10:17:41 +08:00
parent 9f11895847
commit 04b59e281a
2 changed files with 3 additions and 3 deletions

View File

@ -9,10 +9,10 @@
@keyup.enter.native="handleQuery" @keyup.enter.native="handleQuery"
/> />
</el-form-item> </el-form-item>
<el-form-item label="制造商名称" prop="vendorName"> <el-form-item label="制造商" prop="vendorName">
<el-input <el-input
v-model="queryParams.vendorName" v-model="queryParams.vendorName"
placeholder="请输入制造商名称" placeholder="请输入制造商"
clearable clearable
@keyup.enter.native="handleQuery" @keyup.enter.native="handleQuery"
/> />

View File

@ -88,7 +88,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="confirmStatus != null "> and t1.confirm_status = #{confirmStatus}</if> <if test="confirmStatus != null "> and t1.confirm_status = #{confirmStatus}</if>
<if test="approveStatus != null "> and t1.approve_status = #{approveStatus}</if> <if test="approveStatus != null "> and t1.approve_status = #{approveStatus}</if>
<if test="flowType != null "> and t1.flow_type = #{flowType}</if> <if test="flowType != null "> and t1.flow_type = #{flowType}</if>
<if test="vendorName != null "> and t2.vendor_address = #{vendorName}</if> <if test="vendorName != null "> and t2.vendor_address like concat('%',#{vendorName},'%')</if>
<if test="ownerName != null "> and t1.owner_name = #{ownerName}</if> <if test="ownerName != null "> and t1.owner_name = #{ownerName}</if>
<if test="productCode != null and productCode!='' "> and t1.id in (select purchase_id from oms_purchase_order_item where product_code =#{productCode})</if> <if test="productCode != null and productCode!='' "> and t1.id in (select purchase_id from oms_purchase_order_item where product_code =#{productCode})</if>
<if test="productModel != null and productModel!=''"> and t1.id in <if test="productModel != null and productModel!=''"> and t1.id in