fix:财务模块-付款单页面查询条件修改
parent
9f11895847
commit
04b59e281a
|
|
@ -9,10 +9,10 @@
|
|||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="制造商名称" prop="vendorName">
|
||||
<el-form-item label="制造商" prop="vendorName">
|
||||
<el-input
|
||||
v-model="queryParams.vendorName"
|
||||
placeholder="请输入制造商名称"
|
||||
placeholder="请输入制造商"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
|
|
|
|||
|
|
@ -88,7 +88,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
<if test="confirmStatus != null "> and t1.confirm_status = #{confirmStatus}</if>
|
||||
<if test="approveStatus != null "> and t1.approve_status = #{approveStatus}</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="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
|
||||
|
|
|
|||
Loading…
Reference in New Issue