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

Convert prepay managed field into Boolean #155

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

QuanMPhm
Copy link
Contributor

In the prepay contacts csv, the MGHPCC Managed field contains a "Yes" or "No" string, and would be loaded as a string by pandas.load_csv. Previously, the MOCA_prepaid_invoice incorrectly assumed the GROUP_MANAGED_FIELD was a boolean, leading to a bug in billing.

Fortunately, we don't have any prepay projects yet, so the impact of this is 0 (other than people's review time (I'm sorry)).

The prepay test case has been updated.

@knikolla
Copy link
Contributor

Related CCI-MOC/nerc-rates#19

@@ -64,5 +60,5 @@ def _lower_col(data):
]
self.export_data = self.export_data[
self.export_data[invoice.INSTITUTION_FIELD].isin(included_institutions)
| (self.export_data[invoice.GROUP_MANAGED_FIELD].apply(_lower_col) == "yes")
| (self.export_data[invoice.GROUP_MANAGED_FIELD] == True) # noqa: E712
Copy link
Collaborator

Choose a reason for hiding this comment

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

why did you disable E712 instead of doing what it actually says i.e. something is True instead of something == True?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I somehow forgot that was an option :P

True
if group_info[invoice.PREPAY_MANAGED_FIELD].lower() == "yes"
else False
)
Copy link
Collaborator

Choose a reason for hiding this comment

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

can be simplified to:

            prepay_group_dict[group_name][invoice.PREPAY_MANAGED_FIELD] = (
                group_info[invoice.PREPAY_MANAGED_FIELD].lower() == "yes" 
                )

This will also fix a bug in `MOCA_prepaid_invoice`, where `_prepare_export()`
previously assumed the `GROUP_MANAGED_FIELD` was a boolean,
while in fact it has been a "yes" or "no" string.

The prepay test case has been updated.
@QuanMPhm QuanMPhm force-pushed the bug/prepay_managed_bool branch from ab37f83 to a66867a Compare March 7, 2025 19:28
@joachimweyl
Copy link
Contributor

@QuanMPhm what are next steps on this?

@QuanMPhm QuanMPhm requested a review from naved001 March 19, 2025 22:37
@QuanMPhm
Copy link
Contributor Author

@joachimweyl I forgot about this PR. I must have missed it in Zenhub because it wasn't linked to an issue

@joachimweyl
Copy link
Contributor

What I tend to do is turn off issues, filter for author set to myself and then I can see all of the PRs I created.

@QuanMPhm
Copy link
Contributor Author

QuanMPhm commented Mar 20, 2025

@knikolla @naved001 @hakasapl Sorry for the late ping. I have implemented all feedback and waiting for review

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.

4 participants