2
0
mirror of https://github.com/frappe/books.git synced 2025-01-23 15:18:24 +00:00

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

14 lines
262 B
TypeScript
Raw Permalink Normal View History

import { Doc } from 'fyo/model/doc';
import {
ListViewSettings,
} from 'fyo/model/types';
2023-02-28 11:31:04 +05:30
export class Batch extends Doc {
static getListViewSettings(): ListViewSettings {
return {
columns: ["name", "expiryDate", "manufactureDate"],
};
}
}