给销售订单加上结算账户的查询条件

This commit is contained in:
jishenghua
2026-02-11 16:57:45 +08:00
parent 0d49485cf9
commit 547660462b
2 changed files with 22 additions and 0 deletions

View File

@@ -75,6 +75,15 @@
<a-input placeholder="请输入关联订单" v-model="queryParam.linkNumber"></a-input>
</a-form-item>
</a-col>
<a-col :md="6" :sm="24">
<a-form-item label="结算账户" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-select placeholder="请选择结算账户" showSearch allow-clear optionFilterProp="children" v-model="queryParam.accountId">
<a-select-option v-for="(item,index) in accountList" :key="index" :value="item.id">
{{ item.name }}
</a-select-option>
</a-select>
</a-form-item>
</a-col>
<a-col :md="6" :sm="24">
<a-form-item label="单据状态" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-select placeholder="请选择单据状态" allow-clear v-model="queryParam.status">
@@ -235,6 +244,7 @@
depotId: undefined,
linkApply: "",
linkNumber: "",
accountId: undefined,
creator: undefined,
status: undefined,
remark: ""
@@ -310,6 +320,7 @@
this.initSystemConfig()
this.initSupplier()
this.initUser()
this.initAccount()
this.initQuickBtn()
this.getDepotByCurrentUser()
},

View File

@@ -66,6 +66,15 @@
</a-select>
</a-form-item>
</a-col>
<a-col :md="6" :sm="24">
<a-form-item label="结算账户" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-select placeholder="请选择结算账户" showSearch allow-clear optionFilterProp="children" v-model="queryParam.accountId">
<a-select-option v-for="(item,index) in accountList" :key="index" :value="item.id">
{{ item.name }}
</a-select-option>
</a-select>
</a-form-item>
</a-col>
<a-col :md="6" :sm="24">
<a-form-item label="单据状态" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-select placeholder="请选择单据状态" allow-clear v-model="queryParam.status">
@@ -240,6 +249,7 @@
subType: "销售订单",
organId: undefined,
depotId: undefined,
accountId: undefined,
creator: undefined,
status: undefined,
salesMan: undefined,
@@ -316,6 +326,7 @@
this.initCustomer()
this.initSalesman()
this.initUser()
this.initAccount()
this.getSystemConfig()
this.initQuickBtn()
this.getDepotByCurrentUser()