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

Merged
merged 6 commits into from
Oct 7, 2024
Merged

Show payment metrics #405

merged 6 commits into from
Oct 7, 2024

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.

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.

Since this will be used internally only for now, going to merge this. I imagine there is a way to simplify that algorithm, which is quite difficult to follow with all the breaks and continues, but it looks correct, and this will allow people to start looking at the data

@calellowitz calellowitz merged commit 9a2ae99 into main Oct 7, 2024
2 checks passed
@calellowitz calellowitz deleted the hy/show-payment-metrics branch October 7, 2024 08:34
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