mirror of
https://github.com/frappe/books.git
synced 2026-09-24 07:15:17 -05:00
11 lines
247 B
TypeScript
11 lines
247 B
TypeScript
import { Doc } from 'fyo/model/doc';
|
|
import { ListViewSettings } from 'fyo/model/types';
|
|
|
|
export class ItemGroup extends Doc {
|
|
static getListViewSettings(): ListViewSettings {
|
|
return {
|
|
columns: ['name', 'tax', 'hsnCode'],
|
|
};
|
|
}
|
|
}
|