寄件运单查询导出缺少现金客户字段

This commit is contained in:
wuteng 2026-01-12 09:54:34 +08:00
parent 77dee9877a
commit 344343fe8a
4 changed files with 16 additions and 16 deletions

View File

@ -1225,11 +1225,11 @@ export default {
if (j === 'paymentType') {
return this.selectDictLabel(this.dict.type.emis_payment_type,v[j]);
}
if(j === 'waybillOther?.salesSupport'){
return v['waybillOther']['salesSupport'];
if(j === 'waybillOther.salesSupport'){
return v['waybillOther']?.['salesSupport'] || '';
}
if(j === 'waybillOther?.moneyCompany'){
return v['waybillOther']['moneyCompany'];
if(j === 'waybillOther.moneyCompany'){
return v['waybillOther']?.['moneyCompany'] || '';
}
if(j=== 'blIsQuestion'){
if(v[j] == 1){

View File

@ -1189,11 +1189,11 @@ export default {
if (j === 'paymentType') {
return this.selectDictLabel(this.dict.type.emis_payment_type,v[j]);
}
if(j === 'waybillOther?.salesSupport'){
return v['waybillOther']['salesSupport'];
if(j === 'waybillOther.salesSupport'){
return v['waybillOther']?.['salesSupport'] || '';
}
if(j === 'waybillOther?.moneyCompany'){
return v['waybillOther']['moneyCompany'];
if(j === 'waybillOther.moneyCompany'){
return v['waybillOther']?.['moneyCompany'] || '';
}
if(j=== 'blIsQuestion'){
if(v[j] == 1){

View File

@ -1268,11 +1268,11 @@ export default {
if (j === 'paymentType') {
return this.selectDictLabel(this.dict.type.emis_payment_type,v[j]);
}
if(j === 'waybillOther?.salesSupport'){
return v['waybillOther']['salesSupport'];
if(j === 'waybillOther.salesSupport'){
return v['waybillOther']?.['salesSupport'] || '';
}
if(j === 'waybillOther?.moneyCompany'){
return v['waybillOther']['moneyCompany'];
if(j === 'waybillOther.moneyCompany'){
return v['waybillOther']?.['moneyCompany'] || '';
}
if(j=== 'blIsQuestion'){
if(v[j] == 1){

View File

@ -1218,11 +1218,11 @@ export default {
if (j === 'paymentType') {
return this.selectDictLabel(this.dict.type.emis_payment_type,v[j]);
}
if(j === 'waybillOther?.salesSupport'){
return v['waybillOther']['salesSupport'];
if(j === 'waybillOther.salesSupport'){
return v['waybillOther']?.['salesSupport'] || '';
}
if(j === 'waybillOther?.moneyCompany'){
return v['waybillOther']['moneyCompany'];
if(j === 'waybillOther.moneyCompany'){
return v['waybillOther']?.['moneyCompany'] || '';
}
if(j=== 'blIsQuestion'){
if(v[j] == 1){