-
Notifications
You must be signed in to change notification settings - Fork 14
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
#4390 - CAS Manual Intervention: Add CASInvoiceStatusUpdatedBy
Column
#4467
Conversation
- Added the CASInvoiceStatusUpdatedBy column
- Added system user as the "invoiceStatusUpdatedBy" for the createInvoices method.
CASInvoiceStatusUpdatedBy
Column
UPDATE | ||
sims.cas_invoices | ||
SET | ||
invoice_status_updated_by = ( |
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 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.
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.
@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
.
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.
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.
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.
To me, it is just that the new column should have a meaningful value. I am okay with either of them.
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.
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.
...ges/backend/apps/queue-consumers/src/services/cas-invoice-batch/cas-invoice-batch.service.ts
Outdated
Show resolved
Hide resolved
- SQL Update - constant creation
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.
LGTM, nice work @sh16011993
WHERE | ||
last_name = 'system-user' | ||
); | ||
invoice_status_updated_by = creator; |
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.
Please update the comment -- Update the existing records with the system user.
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.
Thanks for the changes. Looks good 👍
One minor comment on the sql comment
- Updated the comment
|
As a part of this PR, the following have been completed:
CASInvoiceStatusUpdatedBy
column.Rollback Screenshot: