2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 19:29:02 +00:00
books/models/baseModels/Tax/Tax.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
208 B
TypeScript
Raw Normal View History

import Doc from 'fyo/model/doc';
import { ListViewSettings } from 'fyo/model/types';
2022-04-14 08:01:33 +00:00
export class Tax extends Doc {
static getListViewSettings(): ListViewSettings {
return { columns: ['name'] };
}
2022-04-14 08:01:33 +00:00
}