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

I have a many2one field state_id from res.country.state. Based on the state I want the view to change with

attrs="{'invisible':[('state_id', '=', '39')]}

and

colors="red:state_id=='39'"

Both cause errors. So I try state_id equals 'Pennsylvania' and more errors. Then since the data is passed via JSON as an object I try state_id.id and more errors. So then I try state_id[0] with same result. There must be a way to use conditionals in views with many2one fields like this although I could not find examples in the source code of various addons. Does anybody know the way to handle this?

아바타
취소
베스트 답변

Hi as i don't want you to use state_id or many2one field like that

you my suggestion is that you should use state_id.name and give the 'name' that which country you want.

or if you still want state_id then just do like below

  attrs="{'invisible':[('state_id.id', '=', 39)]}

  and

  colors="red:state_id.id==39"

but you should use name because in this case you can change the name of country in user interface while you can not change ID so it should be like

  attrs="{'invisible':[('state_id.name', '=','Newyork')]}

  and

  colors="red:state_id.name=='Newyork'"

Thanks
Sandeep

아바타
취소
작성자

I got this: Error: QWeb2 - template['ListView.rows']: Runtime Error: Error: QWeb2 - template['ListView.row']: Runtime Error: Error: AttributeError: object has no attribute 'name'

i'm also same error

관련 게시물 답글 화면 활동
1
6월 17
5483
3
7월 24
3407
1
3월 22
10055
3
10월 18
5306
0
3월 15
3882