mirror of
https://github.com/frappe/books.git
synced 2024-11-13 00:46:28 +00:00
Merge pull request #261 from piyushsinghania/fix/payment-entries-not-getting-posted
Fixed payment entries not getting posted in general ledger
This commit is contained in:
commit
5f4bf0be8e
@ -132,6 +132,11 @@ export default class PaymentServer extends BaseDocument {
|
||||
}
|
||||
}
|
||||
|
||||
async afterSubmit() {
|
||||
const entries = await this.getPosting();
|
||||
await entries.post();
|
||||
}
|
||||
|
||||
async afterRevert() {
|
||||
this.updateReferenceOutstandingAmount();
|
||||
const entries = await this.getPosting();
|
||||
|
Loading…
Reference in New Issue
Block a user