| | |
| | | this.$post({ |
| | | url: "/Womdaa/GetByBillNoBG", |
| | | data: { billNo: this.orderNo, machineNo: this.machineNo || null } |
| | | }) |
| | | }).then(res => { |
| | | const list = res?.data?.tbBillList || res?.data || []; |
| | | this.reportingHistory = list.map(r => { |
| | |
| | | productionCount: r.productionCount ?? r.todayOutput ?? 0, |
| | | totalProduction: r.kgQty ?? r.totalProduction ?? 0, |
| | | good: r.sQuantity ?? r.okQty ?? 0, |
| | | defective: (r.defectiveQty ?? |
| | | ((r.kgQty ?? r.totalProduction ?? 0) - (r.sQuantity ?? r.okQty ?? 0))) |
| | | defective: r.ngQty |
| | | } |
| | | }); |
| | | }).catch(() => { this.reportingHistory = []; }); |