perbaikan print out call report

This commit is contained in:
majid
2025-02-18 16:14:52 +07:00
parent e19d5af09a
commit fa921add45
7 changed files with 299 additions and 311 deletions

View File

@@ -502,4 +502,14 @@
alamatTidakSesuai.style.display = 'grid'; // Tampilkan "Alamat Tidak Sesuai"
}
}
function handleCurrencyInput(input) {
const value = input.value.replace(/[^\d]/g, '');
input.value = formatCurrency(value);
}
function cleanCurrencyValue(value) {
return value.replace(/[^\d]/g, '');
}
</script>