批量录入备注调整

This commit is contained in:
wuteng 2025-06-24 18:09:27 +08:00
parent 46be6eb2f2
commit 4b236c838a

View File

@ -566,7 +566,7 @@ export default {
this.orderList = this.orderList.concat(this.tmpDataList);
//拼接remark 和virtualRemark
this.orderList.forEach((item,index)=>{
if(item.blVirtual ==='是'){
if(item.blVirtual ==='是' && item.transLineType ==='缅甸快递'){
item.remark = `${item.remark && item.remark.toString().replace(/\s/g, '').length>0?item.remark+',':''}${item.masterBillCode && item.masterBillCode.toString().replace(/\s/g, '').length>0 ?'该单为虚拟单:对应主单为:'+item.masterBillCode:''}`
}
})