mirror of
https://github.com/frappe/books.git
synced 2024-11-08 14:50:56 +00:00
d0571a2450
- update files to ignore - delete babel.config.js
54 lines
1.5 KiB
TypeScript
54 lines
1.5 KiB
TypeScript
import { DocValue } from 'fyo/core/types';
|
|
import { Doc } from 'fyo/model/doc';
|
|
import { ListsMap, ValidationMap } from 'fyo/model/types';
|
|
import { ValidationError } from 'fyo/utils/errors';
|
|
import { t } from 'fyo/utils/translation';
|
|
import { SelectOption } from 'schemas/types';
|
|
import { getCountryInfo } from 'utils/misc';
|
|
|
|
export default class SystemSettings extends Doc {
|
|
dateFormat?: string;
|
|
locale?: string;
|
|
displayPrecision?: number;
|
|
internalPrecision?: number;
|
|
hideGetStarted?: boolean;
|
|
countryCode?: string;
|
|
currency?: string;
|
|
version?: string;
|
|
instanceId?: string;
|
|
|
|
validations: ValidationMap = {
|
|
displayPrecision(value: DocValue) {
|
|
if ((value as number) >= 0 && (value as number) <= 9) {
|
|
return;
|
|
}
|
|
|
|
throw new ValidationError(
|
|
t`Display Precision should have a value between 0 and 9.`
|
|
);
|
|
},
|
|
};
|
|
|
|
static lists: ListsMap = {
|
|
locale() {
|
|
const countryInfo = getCountryInfo();
|
|
return Object.keys(countryInfo)
|
|
.filter((c) => !!countryInfo[c]?.locale)
|
|
.map(
|
|
(c) =>
|
|
({
|
|
value: countryInfo[c]?.locale,
|
|
label: `${c} (${countryInfo[c]?.locale ?? t`Not Found`})`,
|
|
} as SelectOption)
|
|
);
|
|
},
|
|
currency() {
|
|
const countryInfo = getCountryInfo();
|
|
const currencies = Object.values(countryInfo)
|
|
.map((ci) => ci?.currency as string)
|
|
.filter(Boolean);
|
|
return [...new Set(currencies)];
|
|
},
|
|
};
|
|
}
|