Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
3 Odpowiedzi
11136 Widoki

i have two class x and y

class x_obj(osv.osv):

   _columns ={

        fields ..........

      x_id:fields.many2one('y.obj')

                 }

x_obj() 


class y_obj(osv.osv):

_columns ={

fields ..........

y_id:fields.one2many('x.obj', 'x_id', 'x_child'),

}

y_obj()

I have form view that retrieves all records in x_obj table based on certain condition 

but what i am facing is i don't want a new record to be created in x_table except y_obj's reference only to be updated in existing x_object table records when i save the record in y_obj, and how can really retrieve child x_obj's id through  y_id field i can access all fields but i couldn't get x_obj's id through one2many field reference 


Awatar
Odrzuć
Najlepsza odpowiedź

Please Check existing Answers check in Google or check in help forrum.Its a duplicate question,

Just call the super of parent class


https://www.odoo.com/forum/help-1/question/how-to-use-create-and-write-function-18592

Awatar
Odrzuć
Najlepsza odpowiedź

Learn how to override create method in Odoo v8 using API with example,

http://odootechnical.com/learn-overriding-create-method-in-odoo-8/

Learn how to override write method in Odoo v8 using API with example,

http://odootechnical.com/learn-overriding-write-method-in-odoo-8/

Awatar
Odrzuć
Autor Najlepsza odpowiedź

@Dep Thanks for your help but the link you referred is not helping me in my case, I am in y_obj's form and wants change the status for created records in x_obj  (using one2may reference) table but instead it is creating a new record with updated state and x_id but what i want is i only wanted the state to be changed and the reference id which is x_id

Awatar
Odrzuć
Powiązane posty Odpowiedzi Widoki Czynność
2
kwi 20
3629
1
lis 17
3807
2
sty 16
35047
6
sie 19
62420
2
sie 19
4324