-
Notifications
You must be signed in to change notification settings - Fork 49
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
18535 - Save and Resume Draft Amalgamation #592
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -751,6 +751,11 @@ export const useStore = defineStore('store', { | |
return this.stateModel.amalgamation.amalgamatingBusinessesValid | ||
}, | ||
|
||
/** The amalgamation court approval. */ | ||
getAmalgamationCourtApproval (): boolean { | ||
return this.stateModel.amalgamation.courtApproval | ||
}, | ||
|
||
// | ||
// Dissolution getters | ||
// | ||
|
@@ -1232,6 +1237,9 @@ export const useStore = defineStore('store', { | |
setAmalgamatingBusinessesValid (valid: boolean) { | ||
this.stateModel.amalgamation.amalgamatingBusinessesValid = valid | ||
}, | ||
setAmalgamationCourtApproval (courtApproval: boolean) { | ||
this.stateModel.amalgamation.courtApproval = courtApproval | ||
}, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I thought we had a ticket to implement the court approval component, but I can't find it. Can you? If not, please create one in the epic that we can groom tomorrow. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, thanks. (I've updated its title to make it easier to find next time 😉 ) I guess you can check off a couple of items in that ticket. And maybe link this PR to that ticket as well. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sounds good, will do that. |
||
setAmalgamationType (type: AmalgamationTypes) { | ||
this.stateModel.amalgamation.type = type | ||
}, | ||
|
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.
OK, so you have the array in the store and a local copy here... I may rework this after you merge and I rebase.