Odoo18-Base/addons/product/report/product_packaging.xml
2025-03-10 11:12:23 +07:00

45 lines
2.2 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<odoo>
<data>
<template id="report_packagingbarcode">
<t t-call="web.basic_layout">
<div class="page">
<t t-foreach="docs" t-as="packaging">
<div class="col-4" style="padding:0;">
<table class="table table-condensed" style="border-bottom: 0px solid white !important;width: 3in;">
<tr>
<th style="text-align: left;">
<strong t-field="packaging.name"/>
</th>
</tr>
<tr>
<td>
<strong t-field="packaging.product_id.display_name"/>
</td>
</tr>
<tr>
<td>
<div class="o_row">
<strong>Qty: </strong>
<strong t-field="packaging.qty"/>
<strong t-field="packaging.product_uom_id" groups="uom.group_uom"/>
</div>
</td>
</tr>
<t t-if="packaging.barcode">
<tr>
<td style="text-align: center; vertical-align: middle;" class="col-5">
<div t-field="packaging.barcode" t-options="{'widget': 'barcode', 'symbology': 'auto', 'width': 600, 'height': 150, 'img_style': 'width:100%;height:20%;'}"/>
<span t-field="packaging.barcode"/>
</td>
</tr>
</t>
</table>
</div>
</t>
</div>
</t>
</template>
</data>
</odoo>