panorama facturador mejoras UI/UX

This commit is contained in:
2025-09-30 13:44:12 -06:00
parent b171fbdb21
commit a5941c4a43
10 changed files with 289 additions and 64 deletions

View File

@@ -36,9 +36,11 @@ defineProps<{
}>()
const formatCurrency = (value: number) => {
return new Intl.NumberFormat('es-GT', {
return new Intl.NumberFormat('es-HN', {
style: 'currency',
currency: 'GTQ'
}).format(value)
currency: 'HNL',
minimumFractionDigits: 2,
maximumFractionDigits: 2
}).format(value).replace('HNL', 'L')
}
</script>