diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
| commit | 3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch) | |
| tree | a44932296ef4a9b71d5f010906253d8c53727726 /addons/stock/report/picking_templates.xml | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/stock/report/picking_templates.xml')
| -rw-r--r-- | addons/stock/report/picking_templates.xml | 115 |
1 files changed, 115 insertions, 0 deletions
diff --git a/addons/stock/report/picking_templates.xml b/addons/stock/report/picking_templates.xml new file mode 100644 index 00000000..7b41cd08 --- /dev/null +++ b/addons/stock/report/picking_templates.xml @@ -0,0 +1,115 @@ +<?xml version="1.0" encoding="UTF-8"?> +<odoo> + <data> + <template id="label_transfer_template_view_zpl"> + <t t-set="uom_categ_unit" t-value="env.ref('uom.product_uom_categ_unit')"/> + <t t-foreach="docs" t-as="picking"> + + <t t-foreach="picking.move_lines" t-as="move"> + <t t-foreach="move.move_line_ids" t-as="move_line"> + <t t-if="move_line.product_uom_id.category_id == uom_categ_unit"> + <t t-set="qty" t-value="int(move_line.qty_done)"/> + </t> + <t t-else=""> + <t t-set="qty" t-value="1"/> + </t> + <t t-foreach="range(qty)" t-as="item"> + <t t-translation="off"> +^XA +^FO100,50 +^A0N,44,33^FD<t t-esc="move_line.product_id.display_name"/>^FS +^FO100,100 +<t t-if="move_line.product_id.tracking != 'none' and (move_line.lot_id or move_line.lot_name)"> +^A0N,44,33^FDLN/SN: <t t-esc="move_line.lot_id.name or move_line.lot_name"/>^FS +^FO100,150^BY3 +^BCN,100,Y,N,N +^FD<t t-esc="move_line.lot_id.name or move_line.lot_name"/>^FS +</t> +<t t-if="move_line.product_id.tracking == 'none' and move_line.product_id.barcode"> +^BCN,100,Y,N,N +^FD<t t-esc="move_line.product_id.barcode"/>^FS +</t> +^XZ + </t> + </t> + </t> + </t> + </t> + </template> + + <template id="label_transfer_template_view_pdf"> + <t t-call="web.basic_layout"> + <div class="page"> + <t t-set="uom_categ_unit" t-value="env.ref('uom.product_uom_categ_unit')"/> + <t t-foreach="docs" t-as="picking"> + <t t-foreach="picking.move_lines" t-as="move"> + <t t-foreach="move.move_line_ids" t-as="move_line"> + <t t-if="move_line.product_uom_id.category_id == uom_categ_unit"> + <t t-set="qty" t-value="int(move_line.qty_done)"/> + </t> + <t t-else=""> + <t t-set="qty" t-value="1"/> + </t> + <t t-foreach="range(qty)" t-as="item"> + <t t-translation="off"> + <div style="display: inline-table; height: 10rem; width: 32%;"> + <table class="table table-bordered" style="border: 2px solid black;" t-if="picking.move_lines"> + <tr> + <th class="table-active text-left" style="height:4rem;"> + <span t-esc="move.product_id.display_name"/> + </th> + </tr> + <t t-if="move_line.product_id.tracking != 'none'"> + <tr> + <td class="text-center align-middle"> + <t t-if="move_line.lot_name or move_line.lot_id"> + <img t-att-src="'/report/barcode/?type=%s&value=%s&width=%s&height=%s' % ('Code128', move_line.lot_name, 600, 150)" style="width:100%;height:4rem" alt="Barcode"/> + <span t-esc="move_line.lot_name or move_line.lot_id.name"/> + </t> + <t t-else=""> + <span class="text-muted">No barcode available</span> + </t> + </td> + </tr> + </t> + <t t-if="move_line.product_id.tracking == 'none'"> + <tr> + <td class="text-center align-middle" style="height: 6rem;"> + <t t-if="move_line.product_id.barcode"> + <img t-att-src="'/report/barcode/?type=%s&value=%s&width=%s&height=%s' % ('Code128', move_line.product_id.barcode, 600, 150)" style="width:100%;height:4rem" alt="Barcode"/> + <span t-esc="move_line.product_id.barcode"/> + </t> + <t t-else=""> + <span class="text-muted">No barcode available</span> + </t> + </td> + </tr> + </t> + </table> + </div> + </t> + </t> + </t> + </t> + </t> + </div> + </t> + </template> + + <template id="label_picking_type_view"> + <t t-foreach="docs" t-as="operation"> + <t t-translation="off"> +^XA +^FO100,50 +^A0N,44,33^FD<t t-esc="operation.name"/>^FS +<t t-if="operation.barcode"> +^FO100,100 +^BCN,100,Y,N,N +^FD<t t-esc="operation.barcode"/>^FS +</t> +^XZ + </t> + </t> + </template> + </data> +</odoo> |
