Compare commits

..

No commits in common. "ea5809628766ef016b6d5c105ac3e5faa211221c" and "5eb50c952f927ebe3bbeae04ef58a7b83f8156bb" have entirely different histories.

2 changed files with 0 additions and 2 deletions

View File

@ -20,7 +20,6 @@ export class BatchConfirmReconciliationManager extends BaseBatchUpdateStatusMana
status: STATUS.SETTLED, status: STATUS.SETTLED,
reconciliation_status: this.dataStatus, reconciliation_status: this.dataStatus,
payment_code: await generateInvoiceCodeHelper(this.dataService, 'PMY'), payment_code: await generateInvoiceCodeHelper(this.dataService, 'PMY'),
payment_date_bank: data.payment_date_bank ?? new Date(),
}); });
return; return;
} }

View File

@ -31,7 +31,6 @@ export class ConfirmReconciliationManager extends BaseUpdateStatusManager<Transa
this.dataStatus === STATUS.CONFIRMED this.dataStatus === STATUS.CONFIRMED
? this.data.payment_date ? this.data.payment_date
: this.data.settlement_date, : this.data.settlement_date,
payment_date_bank: this.data.payment_date_bank ?? new Date(),
}); });
return; return;