mirror of
https://github.com/frappe/books.git
synced 2024-11-10 15:50:56 +00:00
14 lines
262 B
TypeScript
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"],
|
|
};
|
|
}
|
|
|
|
}
|