Commit 28372227 by 王昆

dd

parent 869e80fc
...@@ -172,7 +172,17 @@ class IInvoiceService extends ServiceBase { ...@@ -172,7 +172,17 @@ class IInvoiceService extends ServiceBase {
await this.setDeliver(list); await this.setDeliver(list);
//格式化业务员 //格式化业务员
await this.setStatus(list); await this.setStatus(list);
for(let item of list){
if(item.red_status==0){
item.redStatusName = "红冲";
}else if(item.red_status==1){
item.redStatusName = '已经红冲';
}else if(item.red_status==2){
item.redStatusName = "红冲中";
}else{
item.redStatusName = "";
}
}
await this.setProduct(list); await this.setProduct(list);
} }
return system.getResultSuccess({ count: total, rows: list }); return system.getResultSuccess({ count: total, rows: list });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment