|
|
@ -124,6 +124,28 @@ |
|
|
|
@keyup.enter.native="handleFilter" |
|
|
|
/> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="销售渠道" prop="searchContentSaleCode"> |
|
|
|
<el-input |
|
|
|
v-model="searchContentSaleCode" |
|
|
|
clearable |
|
|
|
size="small" |
|
|
|
placeholder="销售渠道" |
|
|
|
style="width: 200px; margin-left: 8px" |
|
|
|
class="search-container" |
|
|
|
@keyup.enter.native="handleFilter" |
|
|
|
/> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="物料号" prop="searchContentMaterialCode"> |
|
|
|
<el-input |
|
|
|
v-model="searchContentMaterialCode" |
|
|
|
clearable |
|
|
|
size="small" |
|
|
|
placeholder="物料号" |
|
|
|
style="width: 200px; margin-left: 8px" |
|
|
|
class="search-container" |
|
|
|
@keyup.enter.native="handleFilter" |
|
|
|
/> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item> |
|
|
|
<el-button |
|
|
|
icon="el-icon-refresh" |
|
|
@ -395,6 +417,8 @@ export default { |
|
|
|
], |
|
|
|
}, |
|
|
|
searchContent: "", // 输入内容 |
|
|
|
searchContentSaleCode: "", //销售渠道 |
|
|
|
searchContentMaterialCode: "", //物料号 |
|
|
|
customerInfo: { |
|
|
|
settleAccountId: "", |
|
|
|
}, |
|
|
@ -443,6 +467,8 @@ export default { |
|
|
|
//materialGroup: undefined, |
|
|
|
client: undefined, |
|
|
|
billNum: undefined, |
|
|
|
saleCode: undefined, |
|
|
|
materialCode: undefined, |
|
|
|
}, |
|
|
|
listExportQuery: { |
|
|
|
Filters: [ |
|
|
@ -943,6 +969,8 @@ export default { |
|
|
|
// this.listQuery.Filters.push(filter); |
|
|
|
// } |
|
|
|
this.listQuery.billNum = this.searchContent; //结算单号 |
|
|
|
this.listQuery.saleCode = this.searchContentSaleCode; //销售渠道 |
|
|
|
this.listQuery.materialCode = this.searchContentMaterialCode; //物料号 |
|
|
|
this.listQuery.materialGroup = this.getmaterialGroupValue; //7物料组车型 |
|
|
|
this.listQuery.type = this.selectType; //出库类型 |
|
|
|
this.getList(); |
|
|
@ -995,6 +1023,8 @@ export default { |
|
|
|
this.$refs[refName].resetFields(); |
|
|
|
} |
|
|
|
this.searchContent = ""; |
|
|
|
this.searchContentSaleCode=""; |
|
|
|
this.searchContentMaterialCode=""; |
|
|
|
this.getmaterialGroupValue = ""; |
|
|
|
this.selectType = ""; |
|
|
|
this.listQuery.type = undefined; |
|
|
|