1、调整凭证

2、调整对账
3、解决正式结算冲突bug
This commit is contained in:
2026-09-09 10:21:19 +08:00
parent cba2ad3b3b
commit 6d4961f404
12 changed files with 257 additions and 19 deletions
@@ -1181,12 +1181,17 @@ export default {
}
},
async handleUpdate() {
await this.$confirm('将以外部账单匹配金额更新内部结算明细,是否继续?', '更新账单', {
await this.$confirm('将以外部账单数据更新运单及内部结算明细,是否继续?', '更新账单', {
type: 'warning',
});
this.actionLoading = true;
try {
await api.updateByMatch(this.currentId);
await api.updateByMatch(this.currentId, {
id: this.currentId,
reconciliationMode: this.form.reconciliationMode,
internalDetails: this.serializeInternalRows(),
externalDetails: this.serializeExternalRows(),
});
await this.loadDetail();
this.$message.success('账单更新完成');
} finally {