Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Quitar miembros con pendientes de reporte de miembros #173

Open
samsagaz opened this issue Mar 2, 2020 · 1 comment
Open

Quitar miembros con pendientes de reporte de miembros #173

samsagaz opened this issue Mar 2, 2020 · 1 comment
Labels
Members Corresponde a la app de Miembros de la Asociación Civil

Comments

@samsagaz
Copy link
Collaborator

samsagaz commented Mar 2, 2020

Los miembros pendientes de pago no deberían aparecer en /reportes/miembros o se debe corregir
`
def get_debt_state(member, limit_year, limit_month):
"""Return if the member is in debt, and the missing quotas.

The quotas verified are from first payment up to the given year/month limit (including).
"""
# verify the limit is after member started paying
if member.first_payment_year == limit_year:
    if member.first_payment_month > limit_month:
        return []
elif member.first_payment_year > limit_year:
    return []

`
ya que explota al listar miembros que no tienen first_payment_month

@facundobatista
Copy link
Member

En verdad (aunque el procedimiento que tenemos evita en el 99% que sea así) podemos tener miembros que todavía no pagaron. Así que tenemos que dar soporte a ese caso en el reporte de miembros.

O sea, incluirlos, que no explote, y obviamente mostrar eso en algún lado (por ejemplo, en la lista de pagos: indicar que NINGUNO).

@lecovi lecovi added the Members Corresponde a la app de Miembros de la Asociación Civil label May 25, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Members Corresponde a la app de Miembros de la Asociación Civil
Projects
None yet
Development

No branches or pull requests

3 participants