xpansa / community-web

Web part for Odoo community management modules https://github.com/YannickB/community-management/
4 stars 6 forks source link

Membership #19

Open YannickB opened 9 years ago

YannickB commented 9 years ago

As a reminder, a membership is selected between product.product with [('membership','=','True')]

How do you determine the membership of a member?

Also, the list of membership in member list search shall be dynamic, giving choices between all product.product with [('membership','=','True')]

okuryan commented 9 years ago

Looking into it

veryberry commented 9 years ago

For history [13.09.50] veronika: regarding issue https://github.com/xpansa/community-web/issues/19 "Membership"

As a reminder, a membership is selected between product.product with [('membership','=','True')] yes, it's selected this way + condition "('membership_date_to', '>=', datetime.today())" to display on registration page and only this condition ('membership','=','True') to display on memberlist page in search block

How do you determine the membership of a member? Now only one record is chosen from membership.membership_line (res.partner.member_lines field), the first one that fits date_from and date_to conditions Please describe how it should be, should we display several ones near each other on interface?

Also, the list of membership in member list search shall be dynamic, giving choices between all product.product with [('membership','=','True')] I think it's dynamic now [13.13.28] Yannick Buron: Ok 1) My initial statement with [('membership','=','True')] was to determine the product.product to use, not the list of member to display :)

2) Ok thanks for the explanation, the current process looks good

3) Ok, then I need to make some more test I guess

YannickB commented 9 years ago

Ok, I made some new tests and it's look good for me.

Julien, can you also make some test and close the issue if you're ok?