Merge pull request 'feat/adjustment-report' (#96) from feat/adjustment-report into development
Reviewed-on: #96pull/98/head^2 20.1.70-alpha.1
commit
ea58096287
|
@ -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