进仓对货导出线路产品为空

This commit is contained in:
wuteng 2025-07-31 09:53:58 +08:00
parent 64d8ee7cc6
commit 194a9cca53

View File

@ -234,12 +234,12 @@
<el-table-column :label="$t('客户名称')" align="center" prop="customerName" min-width="100" :show-overflow-tooltip="true"/>
<!-- <el-table-column :label="$t('预计进仓日期')" align="center" prop="entryDate" min-width="170" :show-overflow-tooltip="true"/> -->
<!-- <el-table-column :label="$t('客户确认状态')" align="center" prop="confirmStatus" min-width="150" /> -->
<el-table-column :label="$t('线路')" align="center" prop="transLineTypeName" min-width="100" :show-overflow-tooltip="true">
<el-table-column :label="$t('线路')" align="center" prop="waybillDetail.transLineTypeName" min-width="100" :show-overflow-tooltip="true">
<template slot-scope="scope" v-if="scope.row.waybillDetail.transLineTypeName">
{{scope.row.waybillDetail.transLineTypeName}}
</template>
</el-table-column>
<el-table-column :label="$t('产品类型')" align="center" prop="productTypeName" min-width="100" :show-overflow-tooltip="true">
<el-table-column :label="$t('产品类型')" align="center" prop="waybillDetail.productTypeName" min-width="100" :show-overflow-tooltip="true">
<template slot-scope="scope">
{{scope.row.waybillDetail.productTypeName}}
</template>
@ -848,6 +848,12 @@ export default {
if (j === 'waybillDetail.paymentType') {
return this.selectDictLabel(this.dict.type.emis_payment_type,v['waybillDetail']['paymentType']);
}
if(j === 'waybillDetail.transLineTypeName'){
return v['waybillDetail']['transLineTypeName'];
}
if(j === 'waybillDetail.productTypeName'){
return v['waybillDetail']['productTypeName'];
}
return v[j]
}))
},