@extends('layouts.app')
@section('content')
{{-- Script dinamis --}}
@endsection
if (e.target.classList.contains('harga-input')) {
e.target.value = formatRupiah(e.target.value.replace(/\./g, ''));
}
}, true);
*/
// Hitung total awal saat reload
document.addEventListener('DOMContentLoaded', function() {
document.querySelectorAll('#table-produk tbody tr').forEach(function(row) {
hitungTotalBaris(row);
});
refreshTotalPenawaran();
});
@endsection