Files

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'],
};
}
}