Advertisement
rht_odoo

[QW][4033056]add_informations

Jul 23rd, 2024 (edited)
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.25 KB | None | 0 0
  1. <data>
  2.     <!--
  3.    # Done by RHT on the 23/07/2024
  4.    # Pastebin: https://pastebin.com/2xjL9Ac6
  5.    # Need: Adapt the Lot/serial number label printed
  6.    # Task: https://www.odoo.com/odoo/project.task/4033056?cids=1
  7.    -->
  8.     <xpath expr="/t[@t-name='stock.report_lot_label']" position="replace" mode="inner">
  9.         <t t-foreach="docs" t-as="o">
  10.             <t t-call="web.basic_layout">
  11.                 <div class="page">
  12.                     <div class="oe_structure"/>
  13.                     <!-- add company information -->
  14.                     <div class="row mt-4 mb-2" id="informations" style="max-height: 13mm; max-width: 15cm;">
  15.                         <div class="col-auto col-6" id="company_logo">
  16.                               <img t-att-src="image_data_uri(o.company_id.logo)" style="max-height: 20mm; max-width: 7cm;"/>
  17.                       </div>
  18.                         <div class="col-auto col-6" id="company_informations" style="font-size: 11.25px">
  19.                             <br/>
  20.                             <span t-field="o.company_id.partner_id.name"/> <br/>
  21.                             <span t-field="o.company_id.partner_id.street"/><br/>
  22.                             <span t-field="o.company_id.partner_id.city"/>
  23.                             <span t-field="o.company_id.partner_id.country_id"/>
  24.                         </div>
  25.                     </div>
  26.                     <hr/>
  27.                      <!-- add lot/SN information -->
  28.                     <table name="lot_information" class="table-light table-borderless">
  29.                         <tbody class="o_small-fs">
  30.                           <tr name="product_name" style="font-size: 11.25px">
  31.                             <td>
  32.                              [Part Number] Name :
  33.                             </td>
  34.                             <td>
  35.                                 <span t-field="o.product_id.display_name"/>
  36.                             </td>
  37.                           </tr>
  38.                           <tr name="lot_number" style="font-size: 11.25px">
  39.                             <td>
  40.                               Lot or S/N :
  41.                             </td>
  42.                             <td>
  43.                                 <span t-field="o.name" />    
  44.                             </td>
  45.                           </tr>
  46.                           <tr name="expiration_date" style="font-size: 11.25px">
  47.                             <td>
  48.                              Expiration Date :
  49.                             </td>
  50.                             <td>  <span t-field="o.expiration_date" t-options="{&quot;widget&quot;: &quot;date&quot;}"> N/A</span>
  51.                             </td>
  52.                           </tr>
  53.                           <tr name="location" style="font-size: 11.25px">
  54.                             <td>
  55.                               WH Location :
  56.                             </td>
  57.                             <td>
  58.                                 <span t-field="o.location_id.display_name"/>
  59.                             </td>
  60.                           </tr>
  61.                         </tbody>
  62.                       </table>
  63.                 </div>
  64.                 <p style="page-break-after: always;"/>
  65.             </t>
  66.         </t>
  67.     </xpath>
  68. </data>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement