跳至内容
菜单
此问题已终结
4 回复
25685 查看
最佳答案

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>

形象
丢弃

The only one that works good, thank you.

最佳答案

You can use widget="percentage" in odoo 15 


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

形象
丢弃

it is available in Odoo 14 as well

最佳答案

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.

形象
丢弃
最佳答案

try this one:

<div>

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

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

</div>

形象
丢弃