In my py file
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ờ
In my py file
I got the answer
please update xml file like this
Hi,
Update your code like this,
<field name="marital"/>
<field name="marital_id" invisible="1"/>
<field name="wedding_annniv" attrs="{'invisible':[('marital_id', '!=', True)]}"/>
<field name="spouse_name" attrs="{'invisible':[('marital_id, '!=', True)]}"/>
<field name="spouse_dob" attrs="{'invisible':[('marital_id', '!=', True)]}"/>
In the Python,
marital = fields.Selection([
('single', 'Single'),
('married', 'Married'),
('cohabitant', 'Legal Cohabitant'),
('widower', 'Widower'),
('divorced', 'Divorced')], string='Marital Status', default='single')
marital_id = fields.Boolean(string='Status')
@api.onchange('marital')
def _marital(self):
if self.marital and self.marital == 'married':
self.marital_id = True
else:
self.marital_id = False
Thanks
Thanks for your answer
But i got error like this
EOL while scanning string literal
('', 1, 41, "{'invisible':[('marital_id, '!=', True)]}")
None" while parsing /opt/odoo/odoo11/addons/hr/views/hr_views.xml:34, near
<record id="view_employee_form" model="ir.ui.view">
<field name="marital"/>
<field name="marital_id" invisible="1"/>
<field name="wedding_annniv" attrs="{'invisible':[('marital_id', '!=', True)]}"/>
<field name="spouse_name" attrs="{'invisible':[('marital_id, '!=', True)]}"/>
<field name="spouse_dob" attrs="{'invisible':[('marital_id', '!=', True)]}"/>
i changed xml file like this
I changed python file like this
@api.onchange('marital')
def _onchange_marital(self):
if self.marital and self.marital == "married" :
marital_id = True
else :
marital_id = False
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 9 22
|
4170 | ||
|
1
thg 9 18
|
4170 | ||
|
1
thg 9 18
|
9404 | ||
Invoices' Links not working
Đã xử lý
|
|
2
thg 3 18
|
5441 | |
|
2
thg 7 24
|
2254 |