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

#4390 - CAS Manual Intervention: Add CASInvoiceStatusUpdatedBy Column #4467

Merged
merged 6 commits into from
Mar 12, 2025

Conversation

sh16011993
Copy link
Collaborator

@sh16011993 sh16011993 commented Mar 12, 2025

As a part of this PR, the following have been completed:

  • Added the migration for the CASInvoiceStatusUpdatedBy column.

Rollback Screenshot:

image

- Added the CASInvoiceStatusUpdatedBy column
@sh16011993 sh16011993 self-assigned this Mar 12, 2025
@sh16011993 sh16011993 added the DB DB migration involved label Mar 12, 2025
- Added system user as the "invoiceStatusUpdatedBy" for the createInvoices method.
@sh16011993 sh16011993 changed the title #4390 - CAS Manual Intervention: Add Column #4390 - CAS Manual Intervention: Add CASInvoiceStatusUpdatedBy Column Mar 12, 2025
UPDATE
sims.cas_invoices
SET
invoice_status_updated_by = (
Copy link
Collaborator

Choose a reason for hiding this comment

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

Can we not use the creator value from same column? - Even though creator is nullable current code ensures that creator is saved during invoice creation process.

Copy link
Collaborator Author

@sh16011993 sh16011993 Mar 12, 2025

Choose a reason for hiding this comment

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

@dheepak-aot I had checked with @andrewsignori-aot on this during the implementation. He mentioned that for the existing records I should assign this column value to be the system-user.

Copy link
Collaborator

@dheepak-aot dheepak-aot Mar 12, 2025

Choose a reason for hiding this comment

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

Which is the same effect from assigning the creator. Advantage is it will simplify the SQL. Let me know if there is a reason to not go this way. Not a blocker.

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

To me, it is just that the new column should have a meaningful value. I am okay with either of them.

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

Also, if we go with the system-user there will be a distinction between the pre-existing records vs the ones that will come into the database after this code push since afterwards it will be the ministry user doing the update.

- SQL Update
- constant creation
Copy link
Contributor

@guru-aot guru-aot left a comment

Choose a reason for hiding this comment

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

LGTM, nice work @sh16011993

WHERE
last_name = 'system-user'
);
invoice_status_updated_by = creator;
Copy link
Collaborator

Choose a reason for hiding this comment

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

Please update the comment -- Update the existing records with the system user.

Copy link
Collaborator

@dheepak-aot dheepak-aot left a comment

Choose a reason for hiding this comment

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

Thanks for the changes. Looks good 👍

One minor comment on the sql comment

- Updated the comment
Copy link

Copy link

Backend Unit Tests Coverage Report

Totals Coverage
Statements: 22% ( 3962 / 18005 )
Methods: 9.88% ( 228 / 2308 )
Lines: 25.39% ( 3424 / 13487 )
Branches: 14.03% ( 310 / 2210 )

Copy link

E2E Queue Consumers Coverage Report

Totals Coverage
Statements: 85.72% ( 1507 / 1758 )
Methods: 83.25% ( 169 / 203 )
Lines: 88.1% ( 1244 / 1412 )
Branches: 65.73% ( 94 / 143 )

Copy link

E2E SIMS API Coverage Report

Totals Coverage
Statements: 70.63% ( 6454 / 9138 )
Methods: 68.32% ( 798 / 1168 )
Lines: 74.19% ( 5015 / 6760 )
Branches: 52.98% ( 641 / 1210 )

Copy link

E2E Workflow Workers Coverage Report

Totals Coverage
Statements: 65.59% ( 589 / 898 )
Methods: 59.63% ( 65 / 109 )
Lines: 68.72% ( 468 / 681 )
Branches: 51.85% ( 56 / 108 )

@sh16011993 sh16011993 added this pull request to the merge queue Mar 12, 2025
Merged via the queue into main with commit 50d34ef Mar 12, 2025
21 checks passed
@sh16011993 sh16011993 deleted the 4390_cas_manual_intervention_migration_add_column branch March 12, 2025 19:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
DB DB migration involved
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants