doctor-admin-components 1.0.13-beta.6 → 1.0.13-beta.7
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
|
@@ -1085,10 +1085,7 @@ export default {
|
|
|
1085
1085
|
})
|
|
1086
1086
|
})
|
|
1087
1087
|
} else {
|
|
1088
|
-
this
|
|
1089
|
-
this.generateFinalInvoiceForm.quoteType = this.contract.quoteType
|
|
1090
|
-
this.generateFinalInvoiceOpen = true
|
|
1091
|
-
this.generateFinalInvoiceTitle = '更新临时尾款发票'
|
|
1088
|
+
this.$emit('openGenerateLive', { ...this.form, quoteType: this.contract.quoteType })
|
|
1092
1089
|
}
|
|
1093
1090
|
}
|
|
1094
1091
|
})
|
|
@@ -1098,11 +1095,7 @@ export default {
|
|
|
1098
1095
|
this.reset()
|
|
1099
1096
|
const shipmentId = row.shipmentId
|
|
1100
1097
|
getBizShipment(shipmentId).then((response) => {
|
|
1101
|
-
this.
|
|
1102
|
-
this.generateFinalInvoiceForm.quoteType = response.data.quoteType
|
|
1103
|
-
this.generateFinalInvoiceForm.saleFinalInvoice = response.data.saleInvoice
|
|
1104
|
-
this.generateFinalInvoiceOpen = true
|
|
1105
|
-
this.generateFinalInvoiceTitle = '生成临时尾款发票'
|
|
1098
|
+
this.$emit('openGenerateLive', response.data)
|
|
1106
1099
|
})
|
|
1107
1100
|
},
|
|
1108
1101
|
/** 删除按钮操作 */
|