2
0
mirror of https://github.com/frappe/books.git synced 2024-11-10 07:40:55 +00:00
books/models/baseModels/Account/Account.ts

51 lines
1.1 KiB
TypeScript
Raw Normal View History

import frappe from 'frappe';
import Doc from 'frappe/model/doc';
import {
FiltersMap,
ListViewSettings,
TreeViewSettings,
} from 'frappe/model/types';
import { QueryFilter } from 'utils/db/types';
export default class Account extends Doc {
async beforeInsert() {
if (this.accountType || !this.parentAccount) {
return;
}
const account = await frappe.db.get(
'Account',
this.parentAccount as string
);
this.accountType = account.accountType as string;
}
static listSettings: ListViewSettings = {
columns: ['name', 'parentAccount', 'rootType'],
};
static treeSettings: TreeViewSettings = {
parentField: 'parentAccount',
async getRootLabel(): Promise<string> {
const accountingSettings = await frappe.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;
},
};
}