mirror of
https://github.com/frappe/books.git
synced 2024-11-10 07:40:55 +00:00
401a86eeeb
- fix isPesa impl
82 lines
2.0 KiB
TypeScript
82 lines
2.0 KiB
TypeScript
import { Fyo, t } from 'fyo';
|
|
import { Doc } from 'fyo/model/doc';
|
|
import {
|
|
Action,
|
|
DefaultMap,
|
|
FiltersMap,
|
|
ListViewSettings,
|
|
} from 'fyo/model/types';
|
|
import { DateTime } from 'luxon';
|
|
import { getLedgerLinkAction } from 'models/helpers';
|
|
import { Transactional } from 'models/Transactional/Transactional';
|
|
import { Money } from 'pesa';
|
|
import { LedgerPosting } from '../../Transactional/LedgerPosting';
|
|
|
|
export class JournalEntry extends Transactional {
|
|
accounts?: Doc[];
|
|
|
|
async getPosting() {
|
|
const posting: LedgerPosting = new LedgerPosting(this, this.fyo);
|
|
|
|
for (const row of this.accounts ?? []) {
|
|
const debit = row.debit as Money;
|
|
const credit = row.credit as Money;
|
|
const account = row.account as string;
|
|
|
|
if (!debit.isZero()) {
|
|
await posting.debit(account, debit);
|
|
} else if (!credit.isZero()) {
|
|
await posting.credit(account, credit);
|
|
}
|
|
}
|
|
|
|
return posting;
|
|
}
|
|
|
|
static defaults: DefaultMap = {
|
|
date: () => DateTime.local().toISODate(),
|
|
};
|
|
|
|
static filters: FiltersMap = {
|
|
numberSeries: () => ({ referenceType: 'JournalEntry' }),
|
|
};
|
|
|
|
static getActions(fyo: Fyo): Action[] {
|
|
return [getLedgerLinkAction(fyo)];
|
|
}
|
|
|
|
static getListViewSettings(): ListViewSettings {
|
|
return {
|
|
formRoute: (name) => `/edit/JournalEntry/${name}`,
|
|
columns: [
|
|
'name',
|
|
{
|
|
label: t`Status`,
|
|
fieldtype: 'Select',
|
|
size: 'small',
|
|
render(doc) {
|
|
let status = 'Draft';
|
|
let color = 'gray';
|
|
if (doc.submitted) {
|
|
color = 'green';
|
|
status = 'Submitted';
|
|
}
|
|
|
|
if (doc.cancelled) {
|
|
color = 'red';
|
|
status = 'Cancelled';
|
|
}
|
|
|
|
return {
|
|
template: `<Badge class="text-xs" color="${color}">${status}</Badge>`,
|
|
};
|
|
},
|
|
},
|
|
'date',
|
|
'entryType',
|
|
'referenceNumber',
|
|
],
|
|
};
|
|
}
|
|
}
|