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

I write a field in product.py:

        'english_name':fields.char('English Name', size=128, select=True),

and I want to add this field in the sale.order.line. If I should write a realted ? I try to write like this in sale.py:

'product_eng_id': fields.related('english_name','product_eng_id', type = "many2one", relation = "product.product" , string = 'english name',store=False),

But it also show the "name" instead of "english_name"..I don't know what's wrong,maybe the relation is not product.product?..My fields.related have some problems?

아바타
취소
베스트 답변

Try this:

'product_eng_name': fields.related('product_eng_id', 'english_name', type='char', string='Product English Name'),
아바타
취소
작성자

Thanks so much~~

베스트 답변

i think you have added the field 'english_name' in the model 'product.product' and want to add related field in 'sale.order.line'

In the 'sale.order.line' model add

'product_eng_name':fields.related('product_id', 'english_name', type='char', size=64,string='Product English Name'),
아바타
취소
작성자

Thanks so much~~It can work now

관련 게시물 답글 화면 활동
3
1월 18
5943
1
12월 23
17641
0
2월 25
1665
0
1월 25
1420
1
12월 24
1839