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

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-input placeholder="请输入关联订单" v-model="queryParam.linkNumber"></a-input>
</a-form-item> </a-form-item>
</a-col> </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-col :md="6" :sm="24">
<a-form-item label="单据状态" :labelCol="labelCol" :wrapperCol="wrapperCol"> <a-form-item label="单据状态" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-select placeholder="请选择单据状态" allow-clear v-model="queryParam.status"> <a-select placeholder="请选择单据状态" allow-clear v-model="queryParam.status">
@@ -235,6 +244,7 @@
depotId: undefined, depotId: undefined,
linkApply: "", linkApply: "",
linkNumber: "", linkNumber: "",
accountId: undefined,
creator: undefined, creator: undefined,
status: undefined, status: undefined,
remark: "" remark: ""
@@ -310,6 +320,7 @@
this.initSystemConfig() this.initSystemConfig()
this.initSupplier() this.initSupplier()
this.initUser() this.initUser()
this.initAccount()
this.initQuickBtn() this.initQuickBtn()
this.getDepotByCurrentUser() this.getDepotByCurrentUser()
}, },

View File

@@ -66,6 +66,15 @@
</a-select> </a-select>
</a-form-item> </a-form-item>
</a-col> </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-col :md="6" :sm="24">
<a-form-item label="单据状态" :labelCol="labelCol" :wrapperCol="wrapperCol"> <a-form-item label="单据状态" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-select placeholder="请选择单据状态" allow-clear v-model="queryParam.status"> <a-select placeholder="请选择单据状态" allow-clear v-model="queryParam.status">
@@ -240,6 +249,7 @@
subType: "销售订单", subType: "销售订单",
organId: undefined, organId: undefined,
depotId: undefined, depotId: undefined,
accountId: undefined,
creator: undefined, creator: undefined,
status: undefined, status: undefined,
salesMan: undefined, salesMan: undefined,
@@ -316,6 +326,7 @@
this.initCustomer() this.initCustomer()
this.initSalesman() this.initSalesman()
this.initUser() this.initUser()
this.initAccount()
this.getSystemConfig() this.getSystemConfig()
this.initQuickBtn() this.initQuickBtn()
this.getDepotByCurrentUser() this.getDepotByCurrentUser()