mirror of
https://github.com/frappe/books.git
synced 2024-11-10 07:40:55 +00:00
0c369309e3
- update search routing, listConfigs
91 lines
2.3 KiB
TypeScript
91 lines
2.3 KiB
TypeScript
import { Fyo, t } from 'fyo';
|
|
import { Doc } from 'fyo/model/doc';
|
|
import {
|
|
Action,
|
|
DefaultMap,
|
|
FiltersMap,
|
|
HiddenMap,
|
|
ListViewSettings,
|
|
} from 'fyo/model/types';
|
|
import {
|
|
getDocStatus,
|
|
getLedgerLinkAction,
|
|
getNumberSeries,
|
|
getStatusText,
|
|
statusColor,
|
|
} 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;
|
|
}
|
|
|
|
hidden: HiddenMap = {
|
|
referenceNumber: () =>
|
|
!(this.referenceNumber || !(this.isSubmitted || this.isCancelled)),
|
|
referenceDate: () =>
|
|
!(this.referenceDate || !(this.isSubmitted || this.isCancelled)),
|
|
userRemark: () =>
|
|
!(this.userRemark || !(this.isSubmitted || this.isCancelled)),
|
|
attachment: () =>
|
|
!(this.attachment || !(this.isSubmitted || this.isCancelled)),
|
|
};
|
|
|
|
static defaults: DefaultMap = {
|
|
numberSeries: (doc) => getNumberSeries(doc.schemaName, doc.fyo),
|
|
date: () => new Date(),
|
|
};
|
|
|
|
static filters: FiltersMap = {
|
|
numberSeries: () => ({ referenceType: 'JournalEntry' }),
|
|
};
|
|
|
|
static getActions(fyo: Fyo): Action[] {
|
|
return [getLedgerLinkAction(fyo)];
|
|
}
|
|
|
|
static getListViewSettings(): ListViewSettings {
|
|
return {
|
|
columns: [
|
|
'name',
|
|
{
|
|
label: t`Status`,
|
|
fieldname: 'status',
|
|
fieldtype: 'Select',
|
|
render(doc) {
|
|
const status = getDocStatus(doc);
|
|
const color = statusColor[status] ?? 'gray';
|
|
const label = getStatusText(status);
|
|
|
|
return {
|
|
template: `<Badge class="text-xs" color="${color}">${label}</Badge>`,
|
|
};
|
|
},
|
|
},
|
|
'date',
|
|
'entryType',
|
|
'referenceNumber',
|
|
],
|
|
};
|
|
}
|
|
}
|