Compare commits
3 Commits
5eb50c952f
...
ea58096287
Author | SHA1 | Date |
---|---|---|
|
ea58096287 | |
|
1dfcaf7b15 | |
|
8b58598955 |
|
@ -20,6 +20,7 @@ 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;
|
||||||
}
|
}
|
||||||
|
|
|
@ -31,6 +31,7 @@ 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;
|
||||||
|
|
Loading…
Reference in New Issue