Merge pull request '寄件运单查询导出缺少现金客户字段' (#189) from develop into master
Reviewed-on: http://git.xdadan.loc/tanex/emis-frontend/pulls/189
This commit is contained in:
commit
ed410b72fc
@ -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){
|
||||
|
||||
@ -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){
|
||||
|
||||
@ -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){
|
||||
|
||||
@ -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){
|
||||
|
||||
Loading…
Reference in New Issue
Block a user