2
0
mirror of https://github.com/frappe/books.git synced 2025-01-23 23:28:24 +00:00
2023-02-28 11:31:04 +05:30

14 lines
262 B
TypeScript

import { Doc } from 'fyo/model/doc';
import {
ListViewSettings,
} from 'fyo/model/types';
export class Batch extends Doc {
static getListViewSettings(): ListViewSettings {
return {
columns: ["name", "expiryDate", "manufactureDate"],
};
}
}