mirror of
https://github.com/frappe/books.git
synced 2024-11-10 07:40:55 +00:00
20ea214a4b
- add deletion - fix reversion
83 lines
1.8 KiB
TypeScript
83 lines
1.8 KiB
TypeScript
import { Fyo } from 'fyo';
|
|
import { Doc } from 'fyo/model/doc';
|
|
import {
|
|
DefaultMap,
|
|
FiltersMap,
|
|
ListViewSettings,
|
|
TreeViewSettings,
|
|
} from 'fyo/model/types';
|
|
import { QueryFilter } from 'utils/db/types';
|
|
import { AccountRootType, AccountRootTypeEnum, AccountType } from './types';
|
|
|
|
export class Account extends Doc {
|
|
rootType?: AccountRootType;
|
|
accountType?: AccountType;
|
|
parentAccount?: string;
|
|
|
|
get isDebit() {
|
|
const debitAccounts = [
|
|
AccountRootTypeEnum.Asset,
|
|
AccountRootTypeEnum.Expense,
|
|
] as AccountRootType[];
|
|
return debitAccounts.includes(this.rootType!);
|
|
}
|
|
|
|
get isCredit() {
|
|
return !this.isDebit;
|
|
}
|
|
|
|
static defaults: DefaultMap = {
|
|
/**
|
|
* NestedSet indices are actually not used
|
|
* this needs updation as they may be required
|
|
* later on.
|
|
*/
|
|
lft: () => 0,
|
|
rgt: () => 0,
|
|
};
|
|
|
|
async beforeSync() {
|
|
if (this.accountType || !this.parentAccount) {
|
|
return;
|
|
}
|
|
|
|
const account = await this.fyo.db.get(
|
|
'Account',
|
|
this.parentAccount as string
|
|
);
|
|
this.accountType = account.accountType as AccountType;
|
|
}
|
|
|
|
static getListViewSettings(): ListViewSettings {
|
|
return {
|
|
columns: ['name', 'parentAccount', 'rootType'],
|
|
};
|
|
}
|
|
|
|
static getTreeSettings(fyo: Fyo): void | TreeViewSettings {
|
|
return {
|
|
parentField: 'parentAccount',
|
|
async getRootLabel(): Promise<string> {
|
|
const accountingSettings = await fyo.doc.getSingle(
|
|
'AccountingSettings'
|
|
);
|
|
return accountingSettings.companyName as string;
|
|
},
|
|
};
|
|
}
|
|
|
|
static filters: FiltersMap = {
|
|
parentAccount: (doc: Doc) => {
|
|
const filter: QueryFilter = {
|
|
isGroup: true,
|
|
};
|
|
|
|
if (doc.rootType) {
|
|
filter.rootType = doc.rootType as string;
|
|
}
|
|
|
|
return filter;
|
|
},
|
|
};
|
|
}
|