mirror of
https://github.com/frappe/books.git
synced 2024-11-10 15:50:56 +00:00
9 lines
240 B
TypeScript
9 lines
240 B
TypeScript
|
import { Doc } from 'fyo/model/doc';
|
||
|
import { HiddenMap } from 'fyo/model/types';
|
||
|
|
||
|
export class PrintSettings extends Doc {
|
||
|
override hidden: HiddenMap = {
|
||
|
displayBatch: () => !this.fyo.singles.InventorySettings?.enableBatches,
|
||
|
};
|
||
|
}
|