Hi, In a webkit report, how can I get the value instead of the key for a selection field ? AMa
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Kế toán
- Tồn kho
- PoS
- Project
- MRP
Câu hỏi này đã bị gắn cờ
Yuri's solution didn't worked for me. Here is my solution.
Since you create the module with selections like below.
'gender': fields.selection(
[('male', 'Male'), ('female', 'Female')],
I have added the below code in my template before the output of the field.
<%
gndr = dict([('male', 'Male'), ('female', 'Female')])
gndrout = str(gndr[o.gender])
%>
Then when displaying, put out the rendered field, as below.
<p>${ gndrout or "" |entity}</p>
This is working for me:
http://www.omniasolutions.eu/OmniaSolutions/index.php?option=com_content&view=article&id=46%3Awebkit-selection-fields&catid=21%3Atechnical-momento&Itemid=30&lang=en
That didn't worked for me. Below is my solution
Bạn có hứng thú với cuộc thảo luận không? Đừng chỉ đọc, hãy tham gia nhé!
Tạo tài khoản ngay hôm nay để tận hưởng các tính năng độc đáo và tham gia cộng đồng tuyệt vời của chúng tôi!
Đăng kýBài viết liên quan | Trả lời | Lượt xem | Hoạt động | |
---|---|---|---|---|
|
1
thg 8 16
|
11256 | ||
|
7
thg 3 15
|
6795 | ||
|
2
thg 3 15
|
8548 | ||
|
0
thg 3 15
|
3584 | ||
|
1
thg 3 15
|
3601 |
pls can you help me how can i create a selection field in my form ?
i will be thanksfull
Please see developer doc on http://doc.openerp.com/v6.0/developer/2_5_Objects_Fields_Methods/field_type.html you need to made class with field type "fields.selection()" and add it to the view like this: <field name="water_source" colspan="1"/>. It's more than just simple. its simplest ;)