This commit is contained in:
wangshiming
2022-02-21 20:27:12 +08:00
parent ece0d578e1
commit 5a3ea6ca50
4 changed files with 113 additions and 13 deletions

View File

@ -81,9 +81,9 @@ export class OrderManagementReceiptsAuditComponent implements OnInit {
if (res) {
let totalCount = 0;
res.forEach((element: any) => {
if (element.billStatusLabel === '待审核') {
if (element.auditStatus == '1') {
this.tabs.receivedQuantity = element.quantity;
} else if (element.billStatusLabel === '已审核') {
} else if (element.auditStatus == '2') {
this.tabs.stayQuantity = element.quantity;
}
totalCount += element.quantity;