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

Show payment metrics #405

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open

Show payment metrics #405

wants to merge 6 commits into from

Conversation

hemant10yadav
Copy link
Contributor

Copy link
Collaborator

@calellowitz calellowitz left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Couple things but generally looks like its on the right track

commcare_connect/opportunity/utils/completed_work.py Outdated Show resolved Hide resolved
commcare_connect/opportunity/utils/completed_work.py Outdated Show resolved Hide resolved
Copy link
Collaborator

@calellowitz calellowitz left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

couple bugs, and as usual this would really benefit from tests, since this is pretty complicated work, and it will be difficult to visually determine if it is fully correct

commcare_connect/opportunity/utils/completed_work.py Outdated Show resolved Hide resolved
for payment in payments:
paid += payment.amount

while paid > current_work.payment_accrued:
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is missing the logic deducts from the total paid when we assign that payment to a completed work. Right now this will run forever in most cases, because the total paid out is always greater than what is due for the next completed work. For example if each work accrues $5 and the first payment was $10, 10 is always greater than 5. We need to deduct what we are assigning to the work, or keep a similar running total for what we owe.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants