Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <data>
- <!--
- # Done by RHT on the 23/07/2024
- # Pastebin: https://pastebin.com/2xjL9Ac6
- # Need: Adapt the Lot/serial number label printed
- # Task: https://www.odoo.com/odoo/project.task/4033056?cids=1
- -->
- <xpath expr="/t[@t-name='stock.report_lot_label']" position="replace" mode="inner">
- <t t-foreach="docs" t-as="o">
- <t t-call="web.basic_layout">
- <div class="page">
- <div class="oe_structure"/>
- <!-- add company information -->
- <div class="row mt-4 mb-2" id="informations" style="max-height: 13mm; max-width: 15cm;">
- <div class="col-auto col-6" id="company_logo">
- <img t-att-src="image_data_uri(o.company_id.logo)" style="max-height: 20mm; max-width: 7cm;"/>
- </div>
- <div class="col-auto col-6" id="company_informations" style="font-size: 11.25px">
- <br/>
- <span t-field="o.company_id.partner_id.name"/> <br/>
- <span t-field="o.company_id.partner_id.street"/><br/>
- <span t-field="o.company_id.partner_id.city"/>
- <span t-field="o.company_id.partner_id.country_id"/>
- </div>
- </div>
- <hr/>
- <!-- add lot/SN information -->
- <table name="lot_information" class="table-light table-borderless">
- <tbody class="o_small-fs">
- <tr name="product_name" style="font-size: 11.25px">
- <td>
- [Part Number] Name :
- </td>
- <td>
- <span t-field="o.product_id.display_name"/>
- </td>
- </tr>
- <tr name="lot_number" style="font-size: 11.25px">
- <td>
- Lot or S/N :
- </td>
- <td>
- <span t-field="o.name" />
- </td>
- </tr>
- <tr name="expiration_date" style="font-size: 11.25px">
- <td>
- Expiration Date :
- </td>
- <td> <span t-field="o.expiration_date" t-options="{"widget": "date"}"> N/A</span>
- </td>
- </tr>
- <tr name="location" style="font-size: 11.25px">
- <td>
- WH Location :
- </td>
- <td>
- <span t-field="o.location_id.display_name"/>
- </td>
- </tr>
- </tbody>
- </table>
- </div>
- <p style="page-break-after: always;"/>
- </t>
- </t>
- </xpath>
- </data>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement