mirror of
https://github.com/frappe/books.git
synced 2024-11-10 07:40:55 +00:00
20ea214a4b
- add deletion - fix reversion
48 lines
1.3 KiB
TypeScript
48 lines
1.3 KiB
TypeScript
import { Fyo } from 'fyo';
|
|
import { Action, ListViewSettings } from 'fyo/model/types';
|
|
import { LedgerPosting } from 'models/Transactional/LedgerPosting';
|
|
import { ModelNameEnum } from 'models/types';
|
|
import { getInvoiceActions, getTransactionStatusColumn } from '../../helpers';
|
|
import { Invoice } from '../Invoice/Invoice';
|
|
import { SalesInvoiceItem } from '../SalesInvoiceItem/SalesInvoiceItem';
|
|
|
|
export class SalesInvoice extends Invoice {
|
|
items?: SalesInvoiceItem[];
|
|
|
|
async getPosting() {
|
|
const posting: LedgerPosting = new LedgerPosting(this, this.fyo);
|
|
await posting.debit(this.account!, this.baseGrandTotal!);
|
|
|
|
for (const item of this.items!) {
|
|
await posting.credit(item.account!, item.baseAmount!);
|
|
}
|
|
|
|
if (this.taxes) {
|
|
for (const tax of this.taxes!) {
|
|
await posting.credit(tax.account!, tax.baseAmount!);
|
|
}
|
|
}
|
|
|
|
await posting.makeRoundOffEntry();
|
|
return posting;
|
|
}
|
|
|
|
static getActions(fyo: Fyo): Action[] {
|
|
return getInvoiceActions(ModelNameEnum.SalesInvoice, fyo);
|
|
}
|
|
|
|
static getListViewSettings(): ListViewSettings {
|
|
return {
|
|
formRoute: (name) => `/edit/SalesInvoice/${name}`,
|
|
columns: [
|
|
'party',
|
|
'name',
|
|
getTransactionStatusColumn(),
|
|
'date',
|
|
'grandTotal',
|
|
'outstandingAmount',
|
|
],
|
|
};
|
|
}
|
|
}
|