Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
3 Trả lời
13735 Lượt xem

I'm a beginner, about Odoo 8.

Is there a way to give boolean checkbox in the list view as yes or no.
Boolean To String.

true, yes, false, no = _(u"true"), _(u"yes"), _(u"false"), _(u"no")

This does not work properly. Is there a solution on a py basis?

<field name="Name2" attrs="{'invisible':[('Name1','=',False)]}"/>

'Name1': fields.boolean('Name1', readonly=True, states={'Draft': [('readonly', False)]}),

  <tree string='List'>
                        <field name="Name1"/> Output as Yes or No
                    </tree>


Maybe with: true, yes, false, no = _(u"true"), _(u"yes"), _(u"false"), _(u"no")

Ảnh đại diện
Huỷ bỏ

Why don't you try selection field instead of boolean.

Câu trả lời hay nhất

Hai Aleks..!
you can achieve this by selection field. 

field_name = fields.Selection([('yes', 'Yes'), ('no', 'No')], string='Yes/No')


Ảnh đại diện
Huỷ bỏ
Tác giả Câu trả lời hay nhất

Thanks, very good answer.   Odoo 8

'field_name' : fields.selection([('yes', 'Yes'), ('no', 'No')], string='Yes/No'),
<field name="field_name" widget="radio"/>

 or

'field_name' : fields.selection([('yes', 'Yes')], string='Yes'),

<field name="field_name" widget="Radio"/>


Ảnh đại diện
Huỷ bỏ
Bài viết liên quan Trả lời Lượt xem Hoạt động
0
thg 4 20
5215
0
thg 4 15
3108
4
thg 8 23
15159
0
thg 3 25
2855
2
thg 4 23
4430