I used a Percent(%) in form view but when I used in Groupby Symbol is not display.
Anyone can help here?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
I used a Percent(%) in form view but when I used in Groupby Symbol is not display.
Anyone can help here?
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 |
What did you tried so far?