mirror of
https://github.com/frappe/books.git
synced 2024-11-08 14:50:56 +00:00
d42d0841aa
- fix prettier issues
11 lines
258 B
TypeScript
11 lines
258 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'],
|
|
};
|
|
}
|
|
}
|