Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
4 ตอบกลับ
6916 มุมมอง

I used a Percent(%) in form view but when I used in Groupby Symbol is not display.

Anyone can help here?

อวตาร
ละทิ้ง

What did you tried so far?

คำตอบที่ดีที่สุด

Hello Nikul,

You can add character function field with and store=True, which returns the string with percentage sign appends, like this :

@api.depends('basic')
def _compute_percent(self):
    for rec in self:
       rec.per_net_amt = str(rec.basic) + " %"

per_net_amt = fields.Char(compute='_compute_percent', string="percent field", store=True)
​basic = fields.Float("Basic Amount")

Hope it will help you.
Thanks

อวตาร
ละทิ้ง
คำตอบที่ดีที่สุด

Hello Nikul

Check this app store module will help you https://apps.odoo.com/apps/modules/12.0/percent_field/

อวตาร
ละทิ้ง
คำตอบที่ดีที่สุด

you can achieve it by overriding of read_group.

อวตาร
ละทิ้ง
Related Posts ตอบกลับ มุมมอง กิจกรรม
How can I style Odoo Form? แก้ไขแล้ว
3
ก.ย. 24
4388
2
ก.ย. 23
10019
1
เม.ย. 22
4312
0
ต.ค. 21
2743
0
ส.ค. 19
2383