-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #355 from shabeeb-aot/feature/11264
Feature/11264
- Loading branch information
Showing
16 changed files
with
571 additions
and
13 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/interfaces/stepper-interfaces/CreateResolution/create-resolution-resource-interface.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
import { DissolutionResourceIF } from '@/interfaces' | ||
import { CorpTypeCd, FilingCodes, ItemTypes } from '@/enums' | ||
import { GetCorpFullDescription } from '@bcrs-shared-components/corp-type-module' | ||
import { CorpFirmDissolutionSteps } from '@/resources/Dissolutions/stepTemplates' | ||
|
||
// SB TODO : cleanup this code | ||
export const SoleProprietorshipDissolutionResource: DissolutionResourceIF = { | ||
entityType: CorpTypeCd.SOLE_PROP, | ||
displayName: GetCorpFullDescription(CorpTypeCd.SOLE_PROP), | ||
steps: CorpFirmDissolutionSteps, | ||
filingData: [{ | ||
entityType: CorpTypeCd.SOLE_PROP, | ||
filingTypeCode: FilingCodes.DISSOLUTION_VOLUNTARY | ||
}], | ||
detailsTitle: 'Company Details', | ||
|
||
reviewAndConfirm: { | ||
completingPartyStatement: { | ||
certifyStatementHeader: null, | ||
certifyStatements: [], | ||
certifyClause: `Note: It is an offence to make or assist in making a false or misleading statement | ||
in a record filed under the Partnership Act. | ||
A person who commits this offence is subject to a maximum fine of $5,000.`, | ||
entityDisplay: GetCorpFullDescription(CorpTypeCd.SOLE_PROP) | ||
} | ||
}, | ||
createResolution: { | ||
reviewConfirmHeader: 'Resolution', | ||
introSection: { | ||
header: '1. Resolution', | ||
items: [ | ||
{ | ||
type: ItemTypes.TEXT, | ||
value: 'Before submitting your voluntary dissolution you must <b>complete, sign, and date</b> a ' | ||
}, | ||
{ | ||
type: ItemTypes.TOOLTIP, | ||
value: { | ||
label: 'resolution', | ||
text: 'Resolution - A formal statement of a decision.' | ||
} | ||
}, | ||
{ | ||
type: ItemTypes.TEXT, | ||
value: 'and deposit the resolution in the Company\'s records book.' | ||
} | ||
] | ||
}, | ||
|
||
confirmSection: { | ||
header: '2. Confirm Resolution Completion', | ||
text: [ | ||
{ | ||
type: ItemTypes.TEXT, | ||
value: 'I confirm a resolution was passed by' | ||
}, | ||
{ | ||
type: ItemTypes.PLACEHOLDER, | ||
value: 'legal_name' | ||
}, | ||
{ | ||
type: ItemTypes.TEXT, | ||
value: 'and has been deposited in the Company\'s records book.' | ||
} | ||
], | ||
items: [] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.