add route preview-unfinished-payment-orders

This commit is contained in:
Edmond Lang
2025-07-25 19:22:19 +08:00
parent eb9fcbdb23
commit d2787964aa
@@ -126,9 +126,9 @@ function runNextBatch() {
const row = document.createElement('tr');
row.innerHTML = `
<td><a href="\${bookingUrlTemplate.replace('__ORDER_REF__', item.order_ref)}" target="_blank">\${item.order_ref}</a></td>
<td>RM \${item.booking_amount}</td>
<td>RM \${item.paid_amount}</td>
<td>RM \${item.outstanding_amount}</td>
<td>\${item.booking_amount}</td>
<td>\${item.paid_amount}</td>
<td>\${item.outstanding_amount}</td>
<td><a href="\${customerUrlTemplate.replace('__ORDER_REF__', item.customer)}" target="_blank">\${item.customer ?? '-'}</a></td>
<td>\${item.created_at}</td>
`;