2023-06-13 13:37:39 +05:30
|
|
|
import { Attachment } from 'fyo/core/types';
|
2023-03-01 13:43:04 +05:30
|
|
|
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;
|
2024-12-20 09:09:20 +05:30
|
|
|
displayTime?: boolean;
|
2024-12-26 18:33:26 +05:30
|
|
|
posPrintWidth?: number;
|
2024-10-10 16:18:41 +05:30
|
|
|
amountInWords?: boolean;
|
2023-03-13 21:14:10 +05:30
|
|
|
override hidden: HiddenMap = {};
|
2023-03-01 13:43:04 +05:30
|
|
|
}
|