2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 03:29:00 +00:00
books/fyo/utils/format.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

156 lines
3.6 KiB
TypeScript
Raw Normal View History

import { Fyo } from 'fyo';
import { DocValue } from 'fyo/core/types';
import { Doc } from 'fyo/model/doc';
2022-04-18 08:01:41 +00:00
import { DateTime } from 'luxon';
2022-05-23 05:30:54 +00:00
import { Money } from 'pesa';
2022-04-18 08:01:41 +00:00
import { Field, FieldType, FieldTypeEnum } from 'schemas/types';
import { getIsNullOrUndef } from 'utils';
import {
DEFAULT_CURRENCY,
DEFAULT_DATE_FORMAT,
DEFAULT_DISPLAY_PRECISION,
DEFAULT_LOCALE,
} from './consts';
export function format(
value: DocValue,
df: string | Field | null,
doc: Doc | null,
fyo: Fyo
2022-04-18 08:01:41 +00:00
): string {
if (!df) {
return String(value);
}
const field: Field = getField(df);
if (field.fieldtype === FieldTypeEnum.Currency) {
return formatCurrency(value, field, doc, fyo);
2022-04-18 08:01:41 +00:00
}
if (field.fieldtype === FieldTypeEnum.Date) {
return formatDate(value, fyo);
2022-04-18 08:01:41 +00:00
}
if (field.fieldtype === FieldTypeEnum.Check) {
return Boolean(value).toString();
}
if (getIsNullOrUndef(value)) {
return '';
}
return String(value);
}
function formatDate(value: DocValue, fyo: Fyo): string {
2022-04-18 08:01:41 +00:00
const dateFormat =
(fyo.singles.SystemSettings?.dateFormat as string) ?? DEFAULT_DATE_FORMAT;
2022-04-18 08:01:41 +00:00
let dateValue: DateTime;
if (typeof value === 'string') {
dateValue = DateTime.fromISO(value);
} else if (value instanceof Date) {
dateValue = DateTime.fromJSDate(value);
} else {
dateValue = DateTime.fromSeconds(value as number);
}
const formattedDate = dateValue.toFormat(dateFormat);
if (value === 'Invalid DateTime') {
return '';
}
return formattedDate;
}
function formatCurrency(
value: DocValue,
field: Field,
doc: Doc | null,
fyo: Fyo
): string {
const currency = getCurrency(field, doc, fyo);
2022-04-18 08:01:41 +00:00
let valueString;
try {
valueString = formatNumber(value, fyo);
2022-04-18 08:01:41 +00:00
} catch (err) {
(err as Error).message += ` value: '${value}', type: ${typeof value}`;
throw err;
}
const currencySymbol = fyo.currencySymbols[currency];
2022-04-18 08:01:41 +00:00
if (currencySymbol !== undefined) {
return currencySymbol + ' ' + valueString;
}
return valueString;
}
function formatNumber(value: DocValue, fyo: Fyo): string {
const numberFormatter = getNumberFormatter(fyo);
2022-04-18 08:01:41 +00:00
if (typeof value === 'number') {
2022-05-16 10:10:35 +00:00
value = fyo.pesa(value.toFixed(20));
2022-04-18 08:01:41 +00:00
}
if ((value as Money).round) {
const floatValue = parseFloat((value as Money).round());
return numberFormatter.format(floatValue);
}
const floatValue = parseFloat(value as string);
const formattedNumber = numberFormatter.format(floatValue);
if (formattedNumber === 'NaN') {
throw Error(
`invalid value passed to formatNumber: '${value}' of type ${typeof value}`
);
}
return formattedNumber;
}
function getNumberFormatter(fyo: Fyo) {
if (fyo.currencyFormatter) {
return fyo.currencyFormatter;
2022-04-18 08:01:41 +00:00
}
const locale =
(fyo.singles.SystemSettings?.locale as string) ?? DEFAULT_LOCALE;
2022-04-18 08:01:41 +00:00
const display =
(fyo.singles.SystemSettings?.displayPrecision as number) ??
2022-04-18 08:01:41 +00:00
DEFAULT_DISPLAY_PRECISION;
return (fyo.currencyFormatter = Intl.NumberFormat(locale, {
2022-04-18 08:01:41 +00:00
style: 'decimal',
minimumFractionDigits: display,
}));
}
function getCurrency(field: Field, doc: Doc | null, fyo: Fyo): string {
let getCurrency = doc?.getCurrencies?.[field.fieldname];
if (getCurrency !== undefined) {
return getCurrency();
2022-04-18 08:01:41 +00:00
}
getCurrency = doc?.parentdoc?.getCurrencies[field.fieldname];
if (getCurrency !== undefined) {
return getCurrency();
2022-04-18 08:01:41 +00:00
}
return (fyo.singles.SystemSettings?.currency as string) ?? DEFAULT_CURRENCY;
2022-04-18 08:01:41 +00:00
}
function getField(df: string | Field): Field {
if (typeof df === 'string') {
return {
label: '',
fieldname: '',
fieldtype: df as FieldType,
};
}
return df;
}