Files
Odoo-18.0-20251222/sale_elaboration/reports/report_base.xml
tocmo0nlord adbe430761
Some checks failed
pre-commit / pre-commit (push) Has been cancelled
tests / Detect unreleased dependencies (push) Has been cancelled
tests / test with OCB (push) Has been cancelled
tests / test with Odoo (push) Has been cancelled
Initial commit: Odoo 18.0-20251222 extra-addons
2026-03-13 20:43:25 +00:00

19 lines
736 B
XML
Executable File

<?xml version="1.0" encoding="utf-8" ?>
<!-- Copyright 2024 Moduon Team S.L. <info@moduon.team>
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->
<data>
<!-- Reusable template for printing elaborations and notes -->
<template id="elaboration_notes">
<!-- `record` can be stock.move or stock.move.line -->
<div
class="fst-italic"
t-if="record.elaboration_ids or record.elaboration_note"
>
<i class="fa fa-comment-o " />
<span t-field="record.elaboration_ids" />
<t t-if="record.elaboration_ids and record.elaboration_note">.</t>
<span t-field="record.elaboration_note" />
</div>
</template>
</data>