콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
3 답글
11129 화면

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 


아바타
취소
베스트 답변

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

아바타
취소
베스트 답변

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/

아바타
취소
작성자 베스트 답변

@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

아바타
취소
관련 게시물 답글 화면 활동
2
4월 20
3625
1
11월 17
3805
2
1월 16
35047
6
8월 19
62417
2
8월 19
4323