2
0
mirror of https://github.com/frappe/books.git synced 2024-11-08 14:50:56 +00:00
books/models/inventory/Batch.ts

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

11 lines
258 B
TypeScript
Raw Normal View History

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