doctor-admin-components 1.0.13-beta.5 → 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
|
@@ -521,7 +521,7 @@ export default {
|
|
|
521
521
|
billInfoSummary: {
|
|
522
522
|
type: Object,
|
|
523
523
|
default: () => {
|
|
524
|
-
return
|
|
524
|
+
return null
|
|
525
525
|
}
|
|
526
526
|
}
|
|
527
527
|
},
|
|
@@ -967,7 +967,8 @@ export default {
|
|
|
967
967
|
}
|
|
968
968
|
})
|
|
969
969
|
}
|
|
970
|
-
}
|
|
970
|
+
}
|
|
971
|
+
if (this.billInfoSummary) {
|
|
971
972
|
this.addContainerRow()
|
|
972
973
|
}
|
|
973
974
|
|
|
@@ -1084,10 +1085,7 @@ export default {
|
|
|
1084
1085
|
})
|
|
1085
1086
|
})
|
|
1086
1087
|
} else {
|
|
1087
|
-
this
|
|
1088
|
-
this.generateFinalInvoiceForm.quoteType = this.contract.quoteType
|
|
1089
|
-
this.generateFinalInvoiceOpen = true
|
|
1090
|
-
this.generateFinalInvoiceTitle = '更新临时尾款发票'
|
|
1088
|
+
this.$emit('openGenerateLive', { ...this.form, quoteType: this.contract.quoteType })
|
|
1091
1089
|
}
|
|
1092
1090
|
}
|
|
1093
1091
|
})
|
|
@@ -1097,11 +1095,7 @@ export default {
|
|
|
1097
1095
|
this.reset()
|
|
1098
1096
|
const shipmentId = row.shipmentId
|
|
1099
1097
|
getBizShipment(shipmentId).then((response) => {
|
|
1100
|
-
this.
|
|
1101
|
-
this.generateFinalInvoiceForm.quoteType = response.data.quoteType
|
|
1102
|
-
this.generateFinalInvoiceForm.saleFinalInvoice = response.data.saleInvoice
|
|
1103
|
-
this.generateFinalInvoiceOpen = true
|
|
1104
|
-
this.generateFinalInvoiceTitle = '生成临时尾款发票'
|
|
1098
|
+
this.$emit('openGenerateLive', response.data)
|
|
1105
1099
|
})
|
|
1106
1100
|
},
|
|
1107
1101
|
/** 删除按钮操作 */
|