-
Notifications
You must be signed in to change notification settings - Fork 3
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
base: main
Are you sure you want to change the base?
Conversation
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 |
There was a problem hiding this comment.
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
?
There was a problem hiding this comment.
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 | ||
) |
There was a problem hiding this comment.
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.
ab37f83
to
a66867a
Compare
@QuanMPhm what are next steps on this? |
@joachimweyl I forgot about this PR. I must have missed it in Zenhub because it wasn't linked to an issue |
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. |
In the prepay contacts csv, the
MGHPCC Managed
field contains a "Yes" or "No" string, and would be loaded as a string bypandas.load_csv
. Previously, theMOCA_prepaid_invoice
incorrectly assumed theGROUP_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.