Files
contract/contract_variable_quantity/views/contract_portal_templates.xml
2021-09-23 16:57:39 +02:00

16 lines
533 B
XML

<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<template
id="portal_contract_page"
inherit_id="contract.portal_contract_page"
name="My Contract - Qty types"
>
<xpath expr="//td[@name='td_quantity']/span" position="attributes">
<attribute name="t-if">line.qty_type=='fixed'</attribute>
</xpath>
<xpath expr="//td[@name='td_quantity']/span" position="after">
<span t-if="line.qty_type=='variable'">Variable</span>
</xpath>
</template>
</odoo>