2
0
mirror of https://github.com/frappe/books.git synced 2025-01-24 07:38:25 +00:00

19 lines
445 B
TypeScript
Raw Permalink Normal View History

2023-06-13 13:37:39 +05:30
import { Attachment } from 'fyo/core/types';
import { Doc } from 'fyo/model/doc';
import { HiddenMap } from 'fyo/model/types';
export class PrintSettings extends Doc {
2023-06-13 13:37:39 +05:30
logo?: Attachment;
email?: string;
phone?: string;
address?: string;
companyName?: string;
color?: string;
font?: string;
displayLogo?: boolean;
displayTime?: boolean;
2024-12-26 18:33:26 +05:30
posPrintWidth?: number;
amountInWords?: boolean;
2023-03-13 21:14:10 +05:30
override hidden: HiddenMap = {};
}