diff --git a/static/app.js b/static/app.js index ff8de97..ab69f57 100644 --- a/static/app.js +++ b/static/app.js @@ -148,6 +148,7 @@ $(document).ready(function() { response.data.forEach(patient => { const compoundCount = compoundCounts[patient.patient_id] || 0; + const mileageBalance = patient.mileage_balance || 0; tbody.append(` @@ -158,6 +159,10 @@ $(document).ready(function() { ${compoundCount}회 + + ${mileageBalance.toLocaleString()}P + ${mileageBalance > 0 ? '' : ''} + ${patient.notes || '-'} + + +