lilei hace 8 meses
padre
commit
106beab642

+ 1 - 1
public/version.json

@@ -1,5 +1,5 @@
 {
   "message": "发现有新版本发布,确定更新系统?",
   "vendorJsVersion": "",
-  "version": 1728895634404
+  "version": 1729060694982
 }

+ 8 - 1
src/views/reportData/purchaseReceiptReport/purchaseReceiptDetail.vue

@@ -39,6 +39,11 @@
                 <a-input id="salesDetailReportList-name" v-model.trim="queryParam.productEntity.name" allowClear placeholder="请输入产品名称"/>
               </a-form-model-item>
             </a-col>
+            <a-col :md="6" :sm="24">
+              <a-form-model-item label="供应商名称">
+                <a-input id="salesDetailReportList-purchaseTargetName" v-model.trim="queryParam.purchaseTargetName" allowClear placeholder="请输入供应商名称"/>
+              </a-form-model-item>
+            </a-col>
           </template>
           <a-col :md="6" :sm="24" style="margin-bottom: 10px;">
             <a-button type="primary" @click="handleSearch" :disabled="disabled" id="purchaseReceiptDetailList-refresh">查询</a-button>
@@ -110,7 +115,8 @@ export default {
           productTypeSn3: undefined, // 分类3
           code: '', // 编码
           name: ''// 产品名称
-        }
+        },
+        purchaseTargetName: '' // 供应商名称
       },
       productType: [], // 产品类型值
       rules: {
@@ -214,6 +220,7 @@ export default {
       this.queryParam.productEntity.productTypeSn3 = ''
       this.queryParam.productEntity.code = ''
       this.queryParam.productEntity.name = ''
+      this.queryParam.purchaseTargetName = ''
       this.productType = []
       this.$refs.ruleForm.resetFields()
       this.totalData = null

+ 8 - 1
src/views/reportData/purchaseReceiptReport/purchaseReceiptOrder.vue

@@ -18,6 +18,11 @@
               <rangeDate id="purchaseReceiptDetailList-time" ref="rangeDate" @change="dateChange" />
             </a-form-model-item>
           </a-col>
+          <a-col :md="6" :sm="24">
+            <a-form-model-item label="供应商名称">
+              <a-input id="purchaseReceiptDetailList-purchaseTargetName" v-model.trim="queryParam.purchaseTargetName" allowClear placeholder="请输入供应商名称"/>
+            </a-form-model-item>
+          </a-col>
           <a-col :md="6" :sm="24" style="margin-bottom: 10px;">
             <a-button type="primary" @click="handleSearch" :disabled="disabled" id="purchaseReceiptOrderList-refresh">查询</a-button>
             <a-button style="margin-left: 5px" @click="resetSearchForm" :disabled="disabled" id="purchaseReceiptOrderList-reset">重置</a-button>
@@ -75,7 +80,8 @@ export default {
       queryParam: { //  查询条件
         time: [], // 时间
         beginDate: '', // 开始时间
-        endDate: '' // 结束时间
+        endDate: '', // 结束时间
+        purchaseTargetName: '' // 供应商名称
       },
       rules: {
         'time': [{ required: true, message: '请选择财务审核时间', trigger: 'change' }]
@@ -169,6 +175,7 @@ export default {
       this.queryParam.time = []
       this.queryParam.beginDate = ''
       this.queryParam.endDate = ''
+      this.queryParam.purchaseTargetName = ''
       this.$refs.ruleForm.resetFields()
       this.totalData = null
       this.$refs.table.clearTable()