Overslaan naar inhoud
Menu
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Deze vraag is gerapporteerd
4 Antwoorden
25678 Weergaven
Beste antwoord

Hello,

Greetings for the day!

Try bellow code , sure it will help you 

<label for="fiscal_addition"/>
<div class="o_row">
<field name="fiscal_addition"/><span>%%</span>
</div>

Avatar
Annuleer

The only one that works good, thank you.

Beste antwoord

You can use widget="percentage" in odoo 15 


< field name="my_field" widget="percentage"/>

Avatar
Annuleer

it is available in Odoo 14 as well

Beste antwoord

Dear MonBou,

Please try below code.

<div name="your_field_name">

    <label for="your_field_name"/>

    <field name="your_field_name" class="oe_inline"/> (%%)

</div>

Hope this help for you.

Cheers,

Ankit H Gandhi.

Avatar
Annuleer
Beste antwoord

try this one:

<div>

<field name="my_field" class='oe_inline'/>

<label for="my_field">%%</label>

</div>

Avatar
Annuleer