2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 11:29:00 +00:00
books/models/baseModels/Account/Account.ts
18alantom f061108565 fix(ui): transition for hints
- remove fix scrollbar jump on edit toggle
- remove toggle edit toast
- (unrelated) add formula for root type
2023-03-11 10:31:40 +05:30

118 lines
2.7 KiB
TypeScript

import { Fyo } from 'fyo';
import { Doc } from 'fyo/model/doc';
import {
DefaultMap,
FiltersMap,
ListViewSettings,
RequiredMap,
TreeViewSettings,
ReadOnlyMap,
FormulaMap,
} from 'fyo/model/types';
import { ModelNameEnum } from 'models/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;
}
required: RequiredMap = {
/**
* Added here cause rootAccounts don't have parents
* they are created during initialization. if this is
* added to the schema it will cause NOT NULL errors
*/
parentAccount: () => !!this.fyo.singles?.AccountingSettings?.setupComplete,
};
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.getDoc('AccountingSettings');
return accountingSettings.companyName as string;
},
};
}
formulas: FormulaMap = {
rootType: {
formula: async () => {
if (!this.parentAccount) {
return;
}
return await this.fyo.getValue(
ModelNameEnum.Account,
this.parentAccount,
'rootType'
);
},
},
};
static filters: FiltersMap = {
parentAccount: (doc: Doc) => {
const filter: QueryFilter = {
isGroup: true,
};
if (doc.rootType) {
filter.rootType = doc.rootType as string;
}
return filter;
},
};
readOnly: ReadOnlyMap = {
rootType: () => this.inserted,
parentAccount: () => this.inserted,
accountType: () => !!this.accountType && this.inserted,
isGroup: () => this.inserted,
};
}