mirror of
https://github.com/frappe/books.git
synced 2025-01-09 01:44:15 +00:00
7d10951316
- update and remove fields
18 lines
525 B
TypeScript
18 lines
525 B
TypeScript
import { Doc } from 'fyo/model/doc';
|
|
import { ListViewSettings } from 'fyo/model/types';
|
|
import { PriceListItem } from './PriceListItem';
|
|
import { getPriceListEnabledColumn, getPriceListStatusColumn } from 'models/helpers';
|
|
|
|
export class PriceList extends Doc {
|
|
isEnabled?: boolean;
|
|
isSales?: boolean;
|
|
isPurchase?: boolean;
|
|
priceListItem?: PriceListItem[];
|
|
|
|
static getListViewSettings(): ListViewSettings {
|
|
return {
|
|
columns: ['name', getPriceListEnabledColumn(), getPriceListStatusColumn()],
|
|
};
|
|
}
|
|
}
|