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

In Odoo 9, i am using on_change function and i need to hide some custom fields in view sale order

in models.py i have:

...

#Selecction Field

b = fields.Selection([('hide', 'Hide'),('nohide', 'Not Hide'),('choiceoption', 'Choice Option')], default='choiceoption')

b_value = fields.Char('Value', default='Hello')

b_unit = fields.Char('Unit', readonly='True', default='World')

#Function

def on_change_b(self,cr,user,ids,b,b_value,b_unit,context=None):

if b=='choiceoption':

v = {'b_value': 'Choice Option', 'b_unit': 'Choice Option'}

return {'value': v}

elif b=='nohide':

v = {'b_value': 'No Hide Field b_value', 'b_unit': 'No Hide Field b_unit'}

return {'value': v}

else:

v = {'b_value': 'Yes Hide Field b_value', 'b_unit': 'Yes Hide Field b_unit'}

return {'value': v}

...

in templates.xml i have:

...

<field name="b" on_change="on_change_b(b, b_value, b_unit)" />

<field name="b_value" />

<field name="b_unit" />

...

1.- How i can hide the field "b_value" and "b_unit" when i choice "Hide" in the selection field, i think this must be writed in the function "on_change_b" but i do not know how doit the code, maybe with "attrs"


2.- How to initialize a field with invisible = yes for default like:

fieldxyz = fields.Char('This is Field XYZ', default=This is the value of fieldxyz', attrs="{'invisible':true}") <---This is correct?



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

Hi,

To use attrs you may try like this in your xml file:

<field name="b" />

<field name="b_value" attrs="{'invisible':[('b','==','hide')]}" />

<field name="b_unit" attrs="{'invisible':[('b','==','hide')]}"/>


To hide a field, you can use invisible="1" attribute in xml file:

for eg:

<field name="b_unit" invisible="1" />


I tried to correct your code, so that you may understand the syntax of onchange in new api:

from openerp import models, fields, api
class SaleOrder(models.Model):    
    _inherit = 'sale.order'         
    b = fields.Selection([('hide', 'Hide'),('nohide', 'Not Hide'),('choiceoption', 'Choice Option')], default='choiceoption')    
    b_value = fields.Char('Value', default='Hello')    
    b_unit = fields.Char('Unit', readonly=True, default='World')         
    
    @api.onchange('b')

def _on_change(self):

         if self.b=='choiceoption':             

             self.b_value = 'Choice Option'

             self.b_unit = 'Choice Option'         

        elif self.b == 'nohide':             

             self.b_value = 'No Hide Field b_value'

             self.b_unit = 'No Hide Field b_unit'         

        else:

            self.b_value = 'Yes Hide Field b_value'

            self.b_unit = 'Yes Hide Field b_unit' 

Ảnh đại diện
Huỷ bỏ
Tác giả

Thank you Akhil, your code works for me :-)

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

    Refer Onchange in Odoo9 New API

Your onchange syntax is not correct ,First chk that one




Ảnh đại diện
Huỷ bỏ
Tác giả

Thank you Dep for your advise, i will learn more about this.

Bài viết liên quan Trả lời Lượt xem Hoạt động
1
thg 3 15
4644
5
thg 3 24
19309
4
thg 12 23
22260
5
thg 7 24
15628
1
thg 6 22
27142