doctor-admin-components 1.0.13-beta.61 → 1.0.13-beta.63
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -2152,13 +2152,15 @@ export default {
|
|
|
2152
2152
|
},
|
|
2153
2153
|
getShipmentPurchaseAmount() {
|
|
2154
2154
|
let shipmentFileInfo = this.shipmentItemData
|
|
2155
|
-
|
|
2156
|
-
|
|
2157
|
-
|
|
2158
|
-
|
|
2159
|
-
|
|
2160
|
-
|
|
2161
|
-
|
|
2155
|
+
if(shipmentFileInfo?.shipmentId) {
|
|
2156
|
+
getPurchaseAmount(shipmentFileInfo.shipmentId).then((res) => {
|
|
2157
|
+
this.purchaseBalanceMoney = (res.data?.totalPurchaseAmount - res.data?.purchaseDepositAmount).toFixed(2)
|
|
2158
|
+
this.shipmentPurchaseAmountMessage =
|
|
2159
|
+
`${this.$t('contractDetail.reference_invince')}$` + this.purchaseBalanceMoney
|
|
2160
|
+
;
|
|
2161
|
+
return this.shipmentPurchaseAmountMessage;
|
|
2162
|
+
});
|
|
2163
|
+
}
|
|
2162
2164
|
},
|
|
2163
2165
|
},
|
|
2164
2166
|
computed: {
|
|
@@ -82,7 +82,6 @@
|
|
|
82
82
|
</el-form-item>
|
|
83
83
|
<el-form-item
|
|
84
84
|
label="应付金额($)"
|
|
85
|
-
label-width="140px"
|
|
86
85
|
:prop="'proFormInvoiceList.' + index + '.amount'"
|
|
87
86
|
:rules="[
|
|
88
87
|
{ required: true, message: '不能为空' },
|
|
@@ -203,7 +202,6 @@
|
|
|
203
202
|
</el-form-item>
|
|
204
203
|
<el-form-item
|
|
205
204
|
label="应付金额($)"
|
|
206
|
-
label-width="140px"
|
|
207
205
|
:prop="'fixedInvoiceList.' + index + '.amount'"
|
|
208
206
|
:rules="[
|
|
209
207
|
{ required: true, message: '不能为空' },
|