diff --git a/src/app/routes/order-management/components/receipts-audit/receipts-audit.component.html b/src/app/routes/order-management/components/receipts-audit/receipts-audit.component.html index 27bb781f..8402a5ee 100644 --- a/src/app/routes/order-management/components/receipts-audit/receipts-audit.component.html +++ b/src/app/routes/order-management/components/receipts-audit/receipts-audit.component.html @@ -4,7 +4,7 @@ * @Author : Shiming * @Date : 2022-01-12 10:52:50 * @LastEditors : Shiming - * @LastEditTime : 2022-02-21 20:13:21 + * @LastEditTime : 2022-02-21 20:16:13 * @FilePath : \\tms-obc-web\\src\\app\\routes\\order-management\\components\\receipts-audit\\receipts-audit.component.html * Copyright (C) 2022 huzhenhong. All rights reserved. --> @@ -101,7 +101,7 @@
{{ item?.weight ? item?.weight + '吨/' : '' }} {{ item?.volume ? item?.volume + '方/' : '' }} - {{ item?.goodsNumber ? item?.goodsNumber + '吨' : '' }} + {{ item?.goodsNumber ? item?.goodsNumber + '件' : '' }}
diff --git a/src/app/routes/order-management/components/receipts-audit/receipts-audit.component.ts b/src/app/routes/order-management/components/receipts-audit/receipts-audit.component.ts index 102f9147..27389f1a 100644 --- a/src/app/routes/order-management/components/receipts-audit/receipts-audit.component.ts +++ b/src/app/routes/order-management/components/receipts-audit/receipts-audit.component.ts @@ -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; diff --git a/src/app/routes/order-management/modal/audit/voucher-view/voucher-view.component.html b/src/app/routes/order-management/modal/audit/voucher-view/voucher-view.component.html index 79c0788c..95f1d062 100644 --- a/src/app/routes/order-management/modal/audit/voucher-view/voucher-view.component.html +++ b/src/app/routes/order-management/modal/audit/voucher-view/voucher-view.component.html @@ -4,11 +4,11 @@ * @Author : Shiming * @Date : 2021-12-15 13:17:42 * @LastEditors : Shiming - * @LastEditTime : 2022-02-15 15:12:02 + * @LastEditTime : 2022-02-21 20:25:47 * @FilePath : \\tms-obc-web\\src\\app\\routes\\order-management\\modal\\audit\\voucher-view\\voucher-view.component.html * Copyright (C) 2022 huzhenhong. All rights reserved. --> - +
@@ -23,6 +23,7 @@
+