fix(erp): enable erp pages and menu items

This commit is contained in:
Erik Silva
2025-12-29 17:23:59 -03:00
parent e124a64a5d
commit adbff9bb1e
13990 changed files with 1110936 additions and 59 deletions

View File

@@ -0,0 +1,10 @@
export const formatCurrency = (value: number | string) => {
return new Intl.NumberFormat('pt-BR', {
style: 'currency',
currency: 'BRL',
}).format(Number(value));
};
export const formatDate = (date: string | Date) => {
return new Intl.DateTimeFormat('pt-BR').format(new Date(date));
};