2
0
mirror of https://github.com/frappe/books.git synced 2025-02-15 02:01:48 +00:00
2023-01-14 16:58:16 +05:30

14 lines
268 B
TypeScript

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