but my current table output is this one
Code file is this one, how can ichange this
<table class=" delivery-receipt-table" name="stock_move_table">
<!-- table table-sm table-borderless-->
<thead>
<tr>
<th name="th_sm_product">
<strong>Product</strong>
</th>
<th name="th_quantity" class="text-left">
<strong>Qty</strong>
</th>
<th name="th_price" class="text-left">
<strong>Price</strong>
</th>
<th name="th_amount" class="text-left">
<strong>Amount</strong>
</th>
<th name="th_refno" class="text-left">
<strong>Ref.No</strong>
</th>
<th name="th_unit" class="text-left">
<strong>Unit</strong>
</th>
</tr>
</thead>
<tbody>
<t t-set="lines" t-value="o.move_line_ids_without_package"/>
<t t-set="tot" t-value="0.00"/>
<t t-set="tot_weight" t-value="0.00"/>
<tr t-foreach="lines" t-as="move" style="color:black;">
<td>
<span t-field="move.product_id"/>
</td>
<td class="text-left">
<span t-field="move.quantity"/>
</td>
<td class="text-left">
<!-- Call the method to get unit cost -->
<span t-esc="move._get_unit_cost()"
t-options='{"widget": "monetary", "display_currency": o.currency_id}'/>
</td>
<td class="text-left">
<!-- Calculate line amount using the method -->
<t t-set="unit_cost" t-value="move._get_unit_cost()"/>
<t t-set="line_amount" t-value="unit_cost * move.quantity"/>
<span t-esc="line_amount"
t-options='{"widget": "monetary", "display_currency": o.currency_id}'/>
<t t-set="tot" t-value="tot + line_amount"/>
</td>
<td class="text-left">
<span t-field="move.lot_id"/>
</td>
<td class="text-left"
style="background-color: #FFF;">
<span t-field="move.product_uom_id"/>
</td>
<t t-set="tot_weight" t-value="tot_weight + (move.product_id.weight * move.quantity)"/>
</tr>
</tbody>
</table>