2023-06-13 08:07:39 +00:00
|
|
|
import { Attachment } from 'fyo/core/types';
|
2023-03-01 08:13:04 +00:00
|
|
|
import { Doc } from 'fyo/model/doc';
|
|
|
|
import { HiddenMap } from 'fyo/model/types';
|
|
|
|
|
|
|
|
export class PrintSettings extends Doc {
|
2023-06-13 08:07:39 +00:00
|
|
|
logo?: Attachment;
|
|
|
|
email?: string;
|
|
|
|
phone?: string;
|
|
|
|
address?: string;
|
|
|
|
companyName?: string;
|
|
|
|
color?: string;
|
|
|
|
font?: string;
|
|
|
|
displayLogo?: boolean;
|
2024-12-20 03:39:20 +00:00
|
|
|
displayTime?: boolean;
|
2024-12-26 13:03:26 +00:00
|
|
|
posPrintWidth?: number;
|
2024-10-10 10:48:41 +00:00
|
|
|
amountInWords?: boolean;
|
2023-03-13 15:44:10 +00:00
|
|
|
override hidden: HiddenMap = {};
|
2023-03-01 08:13:04 +00:00
|
|
|
}
|