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

Hello,

I been thinking over this one for the past few days with no luck. Maybe someone can help.

I am building a module where I have different Hotels (X number) and each Hotel has different amenities. For that I created a one2many field which inserts the amenities of each Hotel into the amenities table.

Now my problem starts when I need to create the Clients table. For that I have a form view were I am asking for the Client Name, x, x, and Hotel with a many2one field referencing the previous table. In that same form I need to list the amenities that hotel has from the amenities table created above and be able to set a price for each amenity on the list. Each client has a different price even for the same Hotel.

+---------+----------+
| Hotel A | Client A |
+---------+----------+
| Pool    | $34      |
| SPA     | $12      |
| Gym     | $23      |
+---------+----------+
+---------+----------+
| Hotel A | Client B |
+---------+----------+
| Pool    | $74      |
| SPA     | $62      |
| Gym     | $233     |
+---------+----------+

Is there any way I can generate the fields on the fly as soon as the user selects the Hotel? I was thinking if I can do that to save the data into a PricePerClient table where I would have, Client ID, Amenity ID, Price. The Client ID must be the current ID of the form I am seeing.

Any tip/idea will be much appreciated! Thanks! :)

아바타
취소
베스트 답변

My suggestion is to use amenities field as many2one instead of selection. Next you need to put on_change event on you Hotel' field which will calculate ids of amenities for selected Hotel , so each time Hotel' has been changed it will update domain of amenities. You'r on_change must return smth like:

return {'domain': {'amenities': [('id', 'in', amenities_ids)]}}
아바타
취소
관련 게시물 답글 화면 활동
1
3월 15
4068
2
8월 24
2437
2
12월 17
17071
0
4월 15
4074
0
3월 15
3621