Hi community,
Am facing this issue.
i have this field in my model : start_date: field.Float()
For instance, if 10:20 is inputed in form view it's okay but when printed in pdf i got 10.5
What could be the issue?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
Hi community,
Am facing this issue.
i have this field in my model : start_date: field.Float()
For instance, if 10:20 is inputed in form view it's okay but when printed in pdf i got 10.5
What could be the issue?
I faced something similar in my Odoo 13. Solution:
In the model:
start_date = fields.Float ('Date')
In QWeb report:
<span t-esc = "doc.start_date" t-options= '{"widget": "float_time"}'/>
Hope this helps someone. Cheers!
long story short: <span t-field="start_date" t-field-options='{"format": "%H:%M"} />
Use odoo date field
start_date = fields.Date('Date')
Instead of float
start_date: field.Float()
And in qweb reports use
<span t-field="doc.start_date"/>
For more information visit
1- http://learnopenerp.blogspot.com/2016/11/how-to-create-qweb-reports-in-openerp.html
2- http://learnopenerp.blogspot.com/2016/09/how-to-create-custom-reports-in-odoo.html
สร้างบัญชีวันนี้เพื่อเพลิดเพลินไปกับฟีเจอร์พิเศษและมีส่วนร่วมกับคอมมูนิตี้ที่ยอดเยี่ยมของเรา!
ลงชื่อRelated Posts | ตอบกลับ | มุมมอง | กิจกรรม | |
---|---|---|---|---|
|
2
ต.ค. 23
|
6416 | ||
|
2
พ.ย. 22
|
6797 | ||
|
0
ก.ย. 21
|
2900 | ||
Create ticket from Email
แก้ไขแล้ว
|
|
2
มี.ค. 20
|
11587 | |
|
2
ธ.ค. 19
|
2661 |
check the widget float_time