### Install pdf417gen Library Source: https://www.odoo.com/documentation/18.0/applications/finance/fiscal_localizations/chile.html Install the pdf417gen library using pip. This is required for generating PDF reports on Odoo SH or On-Premise instances. ```bash pip install pdf417gen ``` -------------------------------- ### Example Live Session Link with Session Code Source: https://www.odoo.com/documentation/18.0/applications/marketing/surveys/live_session.html Demonstrates the structure of a Session Link when a Session Code is provided. This simplified URL includes the database URL followed by '/s/' and the Session Code. ```text sample-database.odoo.com/s/1212 ``` -------------------------------- ### Adjusting Left Margin for Product Name Source: https://www.odoo.com/documentation/18.0/applications/inventory_and_mrp/inventory/shipping_receiving/setup_configuration/zebra.html Modify the x-coordinate in the ^FT command to prevent product names from being cut off on ZPL labels. This example changes the starting position from 100 to 0. ```ZPL ^XA^CI28 ^FT100,80^A0N,40,30^FD[E-COM11] Cabinet with Doors (wood: Cherry, handles: brass)^FS ... ^XZ ``` ```ZPL ^XA^CI28 ^FT0,80^A0N,40,30^FD[E-COM11] Cabinet with Doors (wood: Cherry, handles: brass)^FS ... ^XZ ```