feat: 出库查询添加收货地址及木箱号查询

- 出库单查询及导出增加仓库、库区和收货地址字段
- 货位查询增加木箱号查询条件
- 修复MES接口异常时缺少return的bug
- 移除出库明细页面的debugger并修正日志错别字
This commit is contained in:
yangyufu
2026-07-02 15:13:42 +08:00
parent 0a6bcde1b6
commit 5ca480ed86
10 changed files with 32 additions and 12 deletions

View File

@@ -69,7 +69,14 @@
/>
</el-select>
</el-form-item>
<el-form-item label="木箱号">
<el-input
v-model="query.storagevehicleCode"
clearable
size="mini"
placeholder="请输入木箱编码"
/>
</el-form-item>
<el-form-item label="模糊搜索">
<el-input
v-model="query.search"

View File

@@ -541,7 +541,6 @@ export default {
},
divOpen() {
checkoutbill.getOutBillDtl({ 'iostorinv_id': this.currentRow.iostorinv_id }).then(res => {
debugger
this.openParam = res
this.storId = this.currentRow.stor_id
this.divShow = true

View File

@@ -111,8 +111,12 @@
style="width: 100%;"
>
<el-table-column show-overflow-tooltip prop="stor_name" label="仓库" :min-width="flexWidth('stor_name',crud.data,'仓库')" />
<el-table-column v-if="query.bill_type === '1004'" show-overflow-tooltip prop="in_stor_name" label="移入仓库" :min-width="flexWidth('in_stor_name',crud.data,'仓库')" />
<el-table-column show-overflow-tooltip prop="sect_name" label="库区" :min-width="flexWidth('sect_name',crud.data,'库区')" />
<el-table-column show-overflow-tooltip prop="in_stor_name" label="收货地址(目的仓库)" :min-width="flexWidth('in_stor_name',crud.data,'收货地址(目的仓库)')" >
<template slot-scope="scope">
{{ scope.row.bill_type === '1004' ? scope.row.in_stor_name : scope.row.receiptaddress }}
</template>
</el-table-column>
<el-table-column show-overflow-tooltip prop="bill_type" :formatter="bill_typeFormat" label="业务类型" :min-width="flexWidth('bill_type',crud.data,'业务类型')" />
<el-table-column show-overflow-tooltip prop="vbeln" label="交货单号" :min-width="flexWidth('vbeln',crud.data,'交货单号')" />
<el-table-column show-overflow-tooltip prop="cust_name" label="物流公司" :min-width="flexWidth('cust_name',crud.data,'物流公司')" />