diff --git a/src/app/routes/supply-management/components/onecar-publish/onecar-publish.component.ts b/src/app/routes/supply-management/components/onecar-publish/onecar-publish.component.ts index 07a5b5d2..3a2e0708 100644 --- a/src/app/routes/supply-management/components/onecar-publish/onecar-publish.component.ts +++ b/src/app/routes/supply-management/components/onecar-publish/onecar-publish.component.ts @@ -1128,16 +1128,28 @@ export class SupplyManagementOnecarPublishComponent implements OnInit { receiptAddress: res?.receiptAddress || '', remarks: res?.supplementaryInformationVO?.remarks || '' }; + // this.sf7data = { + // prePay: res?.shippingInformationVO?.prePay, + // toPay: res?.shippingInformationVO?.toPay, + // oilCardPay: 0, + // receiptPay: res?.shippingInformationVO?.receiptPay, + // subtotal: res?.shippingInformationVO?.totalFee, + // total: res?.shippingInformationVO?.totalFee, + // appendFee: res?.shippingInformationVO?.appendFee, + // paymentDays: res?.paymentDays + // }; this.sf7data = { prePay: res?.shippingInformationVO?.prePay, toPay: res?.shippingInformationVO?.toPay, oilCardPay: 0, receiptPay: res?.shippingInformationVO?.receiptPay, - subtotal: res?.shippingInformationVO?.totalFee, total: res?.shippingInformationVO?.totalFee, appendFee: res?.shippingInformationVO?.appendFee, paymentDays: res?.paymentDays }; + this.sf7.setValue('/prePay', this.sf7data.prePay); + this.sf7.setValue('/toPay', this.sf7data.toPay); + this.sf7.setValue('/receiptPay', this.sf7data.receiptPay); this.payChange(); }