src/views/financialManagement/payable/input-invoice.vue
@@ -377,7 +377,9 @@ const formatMoney = (value) => { if (value === undefined || value === null) return "0.00"; return Number(value).toFixed(4).replace(/\B(?=(\d{3})+(?!\d))/g, ","); const parts = Number(value).toFixed(4).split("."); parts[0] = parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, ","); return parts.join("."); }; const normalizeStatus = (status) => {