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

@ -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 @@
<div>
<span>{{ item?.weight ? item?.weight + '吨/' : '' }}</span>
<span>{{ item?.volume ? item?.volume + '方/' : '' }}</span>
<span>{{ item?.goodsNumber ? item?.goodsNumber + '' : '' }}</span>
<span>{{ item?.goodsNumber ? item?.goodsNumber + '' : '' }}</span>
</div>
</ng-template>
<ng-template st-row="mybidDetailInfo" let-item let-index="index">

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;