Muhammad Hafiz
09/12/2022, 2:42 AM<#if record.recmachcustrecord9?has_content>
<table border="1" cellpadding="6" cellspacing="0" style="width:100%;" text-align="left"><#list record.recmachcustrecord9 as container><#if container_index==0>
  <thead>
    <tr style="border-bottom:1">
 	<th scope="col" style="width:20%"> ${container.custrecord_container_no@label}</th>
	<th scope="col" style="width:20%"> ${container.custrecord_net_weight@label}</th>
	<th scope="col" style="width:20%"> ${container.custrecord_seal_number_1@label}</th>
	<th scope="col" style="width:20%"> ${container.custrecord_seal_number_2@label}</th>
	<th scope="col" style="width:20%"> </th>
	</tr>
    </thead>
	</#if>
	<tr>
	<td>${container.custrecord_container_no}</td>
	<td>${container.custrecord_net_weight}</td>
	<td>${container.custrecord_seal_number_1}</td>
	<td>${container.custrecord_seal_number_2}</td>
	<td> </td>
	</tr>
	</#list>
  </table>
</#if>