changes
This commit is contained in:
@@ -813,6 +813,7 @@
|
||||
</th>
|
||||
<th class="text-center" style="min-width:50px;">#</th>
|
||||
<th style="min-width:200px;">Description</th>
|
||||
<th class="text-center" style="min-width:120px;">Mark No</th>
|
||||
<th class="text-center" style="min-width:75px;">CTN</th>
|
||||
<th class="text-center" style="min-width:75px;">QTY</th>
|
||||
<th class="text-center" style="min-width:95px;">TTL/QTY</th>
|
||||
@@ -845,6 +846,7 @@
|
||||
<td class="desc-col" style="font-weight:600;color:var(--primary);">
|
||||
{{ $item->description }}
|
||||
</td>
|
||||
<td class="text-center">{{ $item->mark_no }}</td>
|
||||
<td class="text-center">{{ $item->ctn }}</td>
|
||||
<td class="text-center">{{ $item->qty }}</td>
|
||||
<td class="text-center" style="font-weight:700;">{{ $item->ttl_qty }}</td>
|
||||
@@ -884,7 +886,7 @@
|
||||
|
||||
@if($invoice->items->isEmpty())
|
||||
<tr>
|
||||
<td colspan="15" class="text-center py-4"
|
||||
<td colspan="16" class="text-center py-4"
|
||||
style="color:var(--text-muted);font-weight:600;">
|
||||
<i class="fas fa-inbox me-2"
|
||||
style="font-size:1.3rem;opacity:.4;"></i><br>
|
||||
@@ -1253,6 +1255,7 @@
|
||||
<td class="text-center">{{ $it->ttl_cbm }}</td>
|
||||
<td class="text-center">{{ $it->kg }}</td>
|
||||
<td class="text-center">{{ $it->ttl_kg }}</td>
|
||||
<td>{{ $item->mark_no }}</td>
|
||||
<td class="text-end">
|
||||
{{ number_format($it->ttl_amount, 2) }}
|
||||
</td>
|
||||
@@ -1452,13 +1455,13 @@ document.addEventListener('DOMContentLoaded', function () {
|
||||
row.querySelector(`td:nth-child(${n})`)?.textContent.trim() ?? '';
|
||||
items.push({
|
||||
description: cellText(3),
|
||||
qty: cellText(5),
|
||||
ttlqty: cellText(6),
|
||||
cbm: cellText(10),
|
||||
ttlcbm: cellText(11),
|
||||
kg: cellText(12),
|
||||
ttlkg: cellText(13),
|
||||
amount: cellText(9),
|
||||
qty: cellText(6),
|
||||
ttlqty: cellText(7),
|
||||
cbm: cellText(11),
|
||||
ttlcbm: cellText(12),
|
||||
kg: cellText(13),
|
||||
ttlkg: cellText(14),
|
||||
amount: cellText(10),
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user