mirror of
https://github.com/frappe/books.git
synced 2026-08-24 02:24:17 -05:00
56 lines
1.6 KiB
TypeScript
56 lines
1.6 KiB
TypeScript
import { Doc } from 'fyo/model/doc';
|
|
import { FiltersMap, HiddenMap } from 'fyo/model/types';
|
|
import {
|
|
AccountRootTypeEnum,
|
|
AccountTypeEnum,
|
|
} from 'models/baseModels/Account/types';
|
|
|
|
export class POSSettings extends Doc {
|
|
isShiftOpen?: boolean;
|
|
inventory?: string;
|
|
cashAccount?: string;
|
|
writeOffAccount?: string;
|
|
weightEnabledBarcode?: boolean;
|
|
checkDigits?: number;
|
|
itemCodeDigits?: number;
|
|
itemWeightDigits?: number;
|
|
defaultAccount?: string;
|
|
itemVisibility?: string;
|
|
itemVisibilityERP?: 'ERP Sync Items';
|
|
posUI?: 'Classic' | 'Modern';
|
|
canChangeRate?: boolean;
|
|
canEditDiscount?: boolean;
|
|
ignorePricingRule?: boolean;
|
|
|
|
static filters: FiltersMap = {
|
|
cashAccount: () => ({
|
|
rootType: AccountRootTypeEnum.Asset,
|
|
accountType: AccountTypeEnum.Cash,
|
|
isGroup: false,
|
|
}),
|
|
defaultAccount: () => ({
|
|
isGroup: false,
|
|
accountType: AccountTypeEnum.Receivable,
|
|
}),
|
|
};
|
|
|
|
hidden: HiddenMap = {
|
|
weightEnabledBarcode: () =>
|
|
!this.fyo.singles.InventorySettings?.enableBarcodes,
|
|
checkDigits: () =>
|
|
!this.fyo.singles.InventorySettings?.enableBarcodes ||
|
|
!this.weightEnabledBarcode,
|
|
itemCodeDigits: () =>
|
|
!this.fyo.singles.InventorySettings?.enableBarcodes ||
|
|
!this.weightEnabledBarcode,
|
|
itemWeightDigits: () =>
|
|
!this.fyo.singles.InventorySettings?.enableBarcodes ||
|
|
!this.weightEnabledBarcode,
|
|
itemVisibility: () =>
|
|
!this.fyo.singles.AccountingSettings?.enablePointOfSaleWithOutInventory ||
|
|
!!this.fyo.singles.AccountingSettings?.enableERPNextSync,
|
|
itemVisibilityERP: () =>
|
|
!this.fyo.singles.AccountingSettings?.enableERPNextSync,
|
|
};
|
|
}
|