mirror of
https://github.com/OCA/stock-logistics-reporting.git
synced 2025-02-16 17:13:21 +02:00
24 lines
829 B
XML
24 lines
829 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<odoo>
|
|
|
|
<template id="report_picking_document_comments" inherit_id="stock.report_picking">
|
|
<xpath expr="//table[hasclass('table-sm')]" position="before">
|
|
<t
|
|
t-foreach="o.comment_template_ids.filtered(lambda x: x.position == 'before_lines')"
|
|
t-as="comment_template_top"
|
|
>
|
|
<div t-raw="comment_template_top.text" />
|
|
</t>
|
|
</xpath>
|
|
<xpath expr="//p[@t-field='o.note']" position="after">
|
|
<t
|
|
t-foreach="o.comment_template_ids.filtered(lambda x: x.position == 'after_lines')"
|
|
t-as="comment_template_bottom"
|
|
>
|
|
<div t-raw="comment_template_bottom.text" />
|
|
</t>
|
|
</xpath>
|
|
</template>
|
|
|
|
</odoo>
|