[ADD] stock_picking_comment_template

This commit is contained in:
emagdalena
2019-05-23 13:26:24 +02:00
committed by Roger
parent 0854bf56ed
commit 8bac8d1d4b
17 changed files with 748 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="report_picking_document_comments"
inherit_id="stock.report_picking">
<xpath expr="//table[hasclass('table-condensed')]" position="before">
<p t-if="o.note1">
<span t-field="o.note1"/>
</p>
</xpath>
<xpath expr="//p[@t-field='o.note']" position="after">
<p t-if="o.note2">
<span t-field="o.note2"/>
</p>
</xpath>
</template>
</odoo>