Please enable JavaScript.
Coggle requires JavaScript to display documents.
<customer-card-component>, CompanyIdentityForm, BeneficialOwner,…
<customer-card-component>
<personal-customer-compliance-component> // conformité si client particulier
<legal-entity-compliance-component> // conformité si client entreprise
<french-company-identity-component>
Inputs()
companyName : string
siret : string
siren: string
registrationStatus : StatutActiviteEnum
legalForm : string
apeDescription: string
apeCode : string
props()
companyIdentityFormGroup : FormGroup<CompanyIdentityForm>
Methods()
onSearchBySirenClick()
onRefreshSirenInformationClick()
onVisualizeCompanyPublicInformationClick()
<update-siren-information-component>
methods()
getSirenInformation(siren: string)
onUpdateButtonClick()
onDenyButtonClick()
props
sirenInformationFormGroup : FormGroup<SirenInformationForm>
Inputs()
companyIdentityFormGroup : FormGroup<CompanyIdentityForm>
<french-company-finder-component>
<company-beneficial-owners-component>
Inputs()
companyBeneficialOwnerList: BeneficialOwner[] = []
methods()
onUpdateOwners()
<company-beneficial-owner-card-component>
Input()
beneficialOwner: BeneficialOwner
method()
onShowOwnerDetails()
<update-beneficial-owners-component>
methods()
getBeneficialOwners(siren: string)
onValidateClick()
onDenyClick()
methods()
getCompanyIdentity(id : string)
CompanyIdentityForm
apeCodeGroup: FormGroup<IdentityFieldGroup>
legalFormGroup: FormGroup<IdentityFieldGroup>
sirenFormGroup: FormGroup<IdentityFieldGroup>
companyNameCtrl : FormContrl<string>
siretFormGroup : FormGroup<IdentityFieldGroup>
activityStatusCtrl : FormControl<ActivityStatusFormGroup>
activityFormGroup: FormGroup<IdentityFieldGroup>
BeneficialOwner
name : string
actionsPart: number
address: string
birthDate : string
nationality: string
type: BeneficialOwnerType
SirenInformationForm
apeCtrl: FormControl<string>
legalFormCtrl: FormControl<string>
statusCtrl: FormControl<ActivityStatusEnum>
IdentityFieldGroup
fieldValueCtrl : FormControl<string>
upToDateCtrl : FormControl<boolean>
ActivityStatusFormGroup
activityStatusValueCtrl: FormControl<StatutActiviteEnum>
activityStatusChangeDateCtrl: FormControl<string>