|
|
@@ -0,0 +1,541 @@
|
|
|
+<!--
|
|
|
+Contenu de la page pages/organization.vue
|
|
|
+Contient toutes les informations sur l'organization courante
|
|
|
+-->
|
|
|
+<template>
|
|
|
+ <LayoutContainer>
|
|
|
+ <UiForm :model="model" :entity="organization">
|
|
|
+ <template #form.input="{model, entity}">
|
|
|
+ <v-expansion-panels :value="panel" focusable accordion>
|
|
|
+ <!-- Description -->
|
|
|
+ <UiExpansionPanel id="description" icon="fa-info">
|
|
|
+ <v-container fluid class="container">
|
|
|
+ <v-row>
|
|
|
+ <v-col cols="12" sm="6">
|
|
|
+ <UiInputText field="name" :data="entity['name']" @update="updateRepository" :rules="rules().nameRules" />
|
|
|
+ </v-col>
|
|
|
+
|
|
|
+ <v-col cols="12" sm="6">
|
|
|
+ <UiInputText field="acronym" :data="entity['acronym']" @update="updateRepository" />
|
|
|
+ </v-col>
|
|
|
+
|
|
|
+ <v-col v-if="organizationProfile.isInsideNetwork()" cols="12" sm="6">
|
|
|
+ <UiInputText :label="organizationProfile.isCmf() ? 'identifierCmf' : 'identifierFfec'" field="identifier" :data="entity['identifier']" @update="updateRepository" />
|
|
|
+ </v-col>
|
|
|
+
|
|
|
+ <v-col v-if="organizationProfile.isFfec()" cols="12" sm="6">
|
|
|
+ <UiInputText field="ffecApproval" :data="entity['ffecApproval']" @update="updateRepository" />
|
|
|
+ </v-col>
|
|
|
+
|
|
|
+ <v-col cols="12" sm="6">
|
|
|
+ <UiInputText field="description" :data="entity['description']" @update="updateRepository" />
|
|
|
+ </v-col>
|
|
|
+
|
|
|
+ <v-col cols="12" sm="6">
|
|
|
+ <div>
|
|
|
+ <span>{{ $t('logo') }}</span>
|
|
|
+ <UiHelp right>
|
|
|
+ <p v-html="$t('logo_upload')" />
|
|
|
+ </UiHelp>
|
|
|
+ </div>
|
|
|
+ <UiImage
|
|
|
+ :id="getIdFromUri(entity['logo'])"
|
|
|
+ :upload="true"
|
|
|
+ :width="200"
|
|
|
+ field="logo"
|
|
|
+ :ownerId="id"
|
|
|
+ @update="updateRepository"
|
|
|
+ ></UiImage>
|
|
|
+ </v-col>
|
|
|
+
|
|
|
+ <v-col v-if="!organizationProfile.isManagerProduct()" cols="12" sm="6">
|
|
|
+ <UiInputEnum field="principalType" :data="entity['principalType']" enum-type="organization_principal_type" @update="updateRepository" />
|
|
|
+ </v-col>
|
|
|
+
|
|
|
+ <v-col v-if="!organizationProfile.isFfec() && !organizationProfile.isManagerProduct() && !organizationProfile.isArtist()" cols="12" sm="6">
|
|
|
+ <UiInputEnum field="schoolCategory" :data="entity['schoolCategory']" enum-type="organization_school_cat" @update="updateRepository" />
|
|
|
+ </v-col>
|
|
|
+
|
|
|
+ <v-col v-if="organizationProfile.isFfec()" cols="12" sm="6">
|
|
|
+ <UiInputEnum field="typeEstablishment" :data="entity['typeEstablishment']" enum-type="organization_type_establishment" @update="updateRepository" />
|
|
|
+ </v-col>
|
|
|
+
|
|
|
+ <v-col v-if="entity.typeEstablishment === 'MULTIPLE'" cols="12" sm="6">
|
|
|
+ <UiInputEnum field="typeEstablishmentDetail" :data="entity['typeEstablishmentDetail']" enum-type="organization_type_establishment_detail" @update="updateRepository" />
|
|
|
+ </v-col>
|
|
|
+
|
|
|
+ <v-col cols="12" sm="6" v-if="organizationProfile.isCmf()">
|
|
|
+ <div class="d-flex flex-row">
|
|
|
+ <UiInputAutocomplete
|
|
|
+ field="typeOfPractices"
|
|
|
+ :items="typeOfPractices"
|
|
|
+ :isLoading="typeOfPracticesFetchingState.pending"
|
|
|
+ :item-text="['name']"
|
|
|
+ :data="getIdsFromUris(entity['typeOfPractices'])"
|
|
|
+ :translate="true"
|
|
|
+ :multiple="true"
|
|
|
+ group="category"
|
|
|
+ :rules="rules().typeOfPractice"
|
|
|
+ @update="updateRepository($event.map((id) => `/api/type_of_practices/${id}`), 'typeOfPractices')"
|
|
|
+ class="flex"
|
|
|
+ />
|
|
|
+ <UiHelp>
|
|
|
+ {{ $t('type_of_practices_autocomplete') }}
|
|
|
+ </UiHelp>
|
|
|
+ </div>
|
|
|
+ </v-col>
|
|
|
+ <v-col cols="12" sm="6" v-if="getIdsFromUris(entity['typeOfPractices']).indexOf(37) >= 0">
|
|
|
+ <UiInputTextArea field="otherPractice" :data="entity['otherPractice']" @update="updateRepository" />
|
|
|
+ </v-col>
|
|
|
+ </v-row>
|
|
|
+ </v-container>
|
|
|
+ </UiExpansionPanel>
|
|
|
+
|
|
|
+ <!-- Adresses -->
|
|
|
+ <UiExpansionPanel id="address_postal" icon="fa-globe-europe">
|
|
|
+ <v-container fluid class="container">
|
|
|
+ <v-row>
|
|
|
+ <v-col cols="12" sm="12">
|
|
|
+ <UiCollection
|
|
|
+ :model="models().OrganizationAddressPostal"
|
|
|
+ :parent="organization"
|
|
|
+ loaderType="image"
|
|
|
+ newLink="/organization/address/new"
|
|
|
+ >
|
|
|
+ <template #list.item="{items}">
|
|
|
+ <v-container fluid>
|
|
|
+ <v-row dense>
|
|
|
+ <v-col
|
|
|
+ v-for="item in items"
|
|
|
+ :key="item.id"
|
|
|
+ cols="4"
|
|
|
+ >
|
|
|
+ <UiCard
|
|
|
+ :id="item.id"
|
|
|
+ :link="`/organization/address/${item.id}`"
|
|
|
+ :model="models().OrganizationAddressPostal"
|
|
|
+ >
|
|
|
+ <template #card.title>
|
|
|
+ {{ $t(item.type) }}
|
|
|
+ </template>
|
|
|
+ <template #card.text>
|
|
|
+ {{ item.addressPostal.streetAddress }} <br>
|
|
|
+ <span v-if="item.addressPostal.streetAddressSecond">{{ item.addressPostal.streetAddressSecond }} <br></span>
|
|
|
+ <span v-if="item.addressPostal.streetAddressThird">{{ item.addressPostal.streetAddressThird }} <br></span>
|
|
|
+ {{ item.addressPostal.postalCode }} {{ item.addressPostal.addressCity }}<br>
|
|
|
+ <span v-if="item.addressPostal.addressCountry">
|
|
|
+ <UiItemFromUri
|
|
|
+ :model="models().Country"
|
|
|
+ :query="repositories().countryRepository.query()"
|
|
|
+ :uri="item.addressPostal.addressCountry"
|
|
|
+ >
|
|
|
+ <template #item.text="{item}">
|
|
|
+ {{item.name}}
|
|
|
+ </template>
|
|
|
+ </UiItemFromUri>
|
|
|
+ </span>
|
|
|
+ </template>
|
|
|
+ </UiCard>
|
|
|
+ </v-col>
|
|
|
+ </v-row>
|
|
|
+ </v-container>
|
|
|
+ </template>
|
|
|
+ </UiCollection>
|
|
|
+ </v-col>
|
|
|
+ </v-row>
|
|
|
+ </v-container>
|
|
|
+ </UiExpansionPanel>
|
|
|
+
|
|
|
+ <!-- Point de Contact-->
|
|
|
+ <UiExpansionPanel id="contact_point" icon="fa-phone">
|
|
|
+ <v-container class="container">
|
|
|
+ <v-row>
|
|
|
+ <v-col cols="12" sm="12">
|
|
|
+ <UiCollection
|
|
|
+ :model="models().ContactPoint"
|
|
|
+ :parent="organization"
|
|
|
+ loaderType="image"
|
|
|
+ newLink="/organization/contact_points/new"
|
|
|
+ >
|
|
|
+ <template #list.item="{items}">
|
|
|
+ <v-container fluid>
|
|
|
+ <v-row :dense="true">
|
|
|
+ <v-col
|
|
|
+ v-for="item in items"
|
|
|
+ :key="item.id"
|
|
|
+ cols="4"
|
|
|
+ >
|
|
|
+ <UiCard
|
|
|
+ :id="item.id"
|
|
|
+ :link="`/organization/contact_points/${item.id}`"
|
|
|
+ :model="models().ContactPoint"
|
|
|
+ >
|
|
|
+ <template #card.title>
|
|
|
+ {{ $t(item.contactType) }}
|
|
|
+ </template>
|
|
|
+ <template #card.text>
|
|
|
+ <span v-if="item.email"><strong>{{ $t('email') }}</strong> : {{ item.email }} <br></span>
|
|
|
+ <span v-if="item.emailInvalid" class="ot_danger--text"><v-icon class="ot_danger--text">mdi-alert</v-icon> <strong>{{ $t('emailInvalid') }}</strong> : {{ item.emailInvalid }} <br></span>
|
|
|
+
|
|
|
+ <span v-if="item.telphone"><strong>{{ $t('telphone') }}</strong> : {{ formatPhoneNumber(item.telphone) }} <br></span>
|
|
|
+ <span v-if="item.telphoneInvalid" class="ot_danger--text"><v-icon class="ot_danger--text">mdi-alert</v-icon> <strong>{{ $t('telphoneInvalid') }}</strong> : {{ formatPhoneNumber(item.telphoneInvalid) }} <br></span>
|
|
|
+
|
|
|
+ <span v-if="item.mobilPhone"><strong>{{ $t('mobilPhone') }}</strong> : {{ formatPhoneNumber(item.mobilPhone) }} <br></span>
|
|
|
+ <span v-if="item.mobilPhoneInvalid" class="ot_danger--text"><v-icon class="ot_danger--text">mdi-alert</v-icon> <strong>{{ $t('mobilPhoneInvalid') }}</strong> : {{ formatPhoneNumber(item.mobilPhoneInvalid) }} </span>
|
|
|
+ </template>
|
|
|
+ </UiCard>
|
|
|
+ </v-col>
|
|
|
+ </v-row>
|
|
|
+ </v-container>
|
|
|
+ </template>
|
|
|
+ </UiCollection>
|
|
|
+ </v-col>
|
|
|
+ </v-row>
|
|
|
+ </v-container>
|
|
|
+ </UiExpansionPanel>
|
|
|
+
|
|
|
+ <!-- Informations légales -->
|
|
|
+ <UiExpansionPanel id="legalInformation" icon="fa-gavel">
|
|
|
+ <v-container fluid class="container">
|
|
|
+ <v-row>
|
|
|
+ <v-col cols="12" sm="6">
|
|
|
+ <UiInputText
|
|
|
+ field="siretNumber"
|
|
|
+ :data="entity['siretNumber']"
|
|
|
+ :error="siretError"
|
|
|
+ :error-message="siretErrorMessage"
|
|
|
+ :rules="rules().siretRule"
|
|
|
+ @update="checkSiretHook($event, 'siretNumber', updateRepository)"
|
|
|
+ />
|
|
|
+ </v-col>
|
|
|
+
|
|
|
+ <v-col cols="12" sm="6">
|
|
|
+ <UiInputText field="apeNumber" :data="entity['apeNumber']" @update="updateRepository" />
|
|
|
+ </v-col>
|
|
|
+
|
|
|
+ <v-col v-if="entity['legalStatus'] === 'ASSOCIATION_LAW_1901'" cols="12" sm="6">
|
|
|
+ <UiInputText field="waldecNumber" :data="entity['waldecNumber']" @update="updateRepository" />
|
|
|
+ </v-col>
|
|
|
+
|
|
|
+ <v-col cols="12" sm="6">
|
|
|
+ <UiInputDatePicker field="creationDate" :data="entity['creationDate']" @update="updateRepository" />
|
|
|
+ </v-col>
|
|
|
+
|
|
|
+ <v-col cols="12" sm="6">
|
|
|
+ <UiInputText field="prefectureName" :data="entity['prefectureName']" @update="updateRepository" />
|
|
|
+ </v-col>
|
|
|
+
|
|
|
+ <v-col cols="12" sm="6">
|
|
|
+ <UiInputText field="prefectureNumber" :data="entity['prefectureNumber']" @update="updateRepository" />
|
|
|
+ </v-col>
|
|
|
+
|
|
|
+ <v-col cols="12" sm="6">
|
|
|
+ <UiInputDatePicker field="declarationDate" :data="entity['declarationDate']" @update="updateRepository" />
|
|
|
+ </v-col>
|
|
|
+
|
|
|
+ <v-col cols="12" sm="6">
|
|
|
+ <UiInputText field="tvaNumber" :data="entity['tvaNumber']" @update="updateRepository" />
|
|
|
+ </v-col>
|
|
|
+
|
|
|
+ <v-col cols="12" sm="6">
|
|
|
+ <UiInputEnum field="legalStatus" :data="entity['legalStatus']" enum-type="organization_legal" @update="updateRepository" />
|
|
|
+ </v-col>
|
|
|
+
|
|
|
+ </v-row>
|
|
|
+ </v-container>
|
|
|
+ </UiExpansionPanel>
|
|
|
+
|
|
|
+ <!-- Agréments -->
|
|
|
+ <UiExpansionPanel id="agrements" icon="fa-certificate">
|
|
|
+ <v-container class="container">
|
|
|
+ <v-row>
|
|
|
+ <v-col cols="12" sm="6">
|
|
|
+ <UiInputText field="youngApproval" :data="entity['youngApproval']" @update="updateRepository" />
|
|
|
+ </v-col>
|
|
|
+
|
|
|
+ <v-col cols="12" sm="6">
|
|
|
+ <UiInputText field="trainingApproval" :data="entity['trainingApproval']" @update="updateRepository" />
|
|
|
+ </v-col>
|
|
|
+
|
|
|
+ <v-col cols="12" sm="6">
|
|
|
+ <UiInputText field="otherApproval" :data="entity['otherApproval']" @update="updateRepository" />
|
|
|
+ </v-col>
|
|
|
+ </v-row>
|
|
|
+ </v-container>
|
|
|
+ </UiExpansionPanel>
|
|
|
+
|
|
|
+ <!-- Salariés -->
|
|
|
+ <UiExpansionPanel id="salary" icon="fa-users">
|
|
|
+ <v-container class="container">
|
|
|
+ <v-row>
|
|
|
+ <v-col cols="12" sm="6">
|
|
|
+ <UiInputText field="collectiveAgreement" :data="entity['collectiveAgreement']" @update="updateRepository" />
|
|
|
+ </v-col>
|
|
|
+
|
|
|
+ <v-col cols="12" sm="6">
|
|
|
+ <UiInputEnum field="opca" :data="entity['opca']" enum-type="organization_opca" @update="updateRepository" />
|
|
|
+ </v-col>
|
|
|
+
|
|
|
+ <v-col cols="12" sm="6">
|
|
|
+ <UiInputText field="icomNumber" :data="entity['icomNumber']" @update="updateRepository" />
|
|
|
+ </v-col>
|
|
|
+
|
|
|
+ <v-col cols="12" sm="6">
|
|
|
+ <UiInputText field="urssafNumber" :data="entity['urssafNumber']" @update="updateRepository" />
|
|
|
+ </v-col>
|
|
|
+ </v-row>
|
|
|
+ </v-container>
|
|
|
+ </UiExpansionPanel>
|
|
|
+
|
|
|
+ <!-- Réseaux -->
|
|
|
+ <UiExpansionPanel v-if="organizationProfile.isInsideNetwork()" id="network" icon="fa-share-alt">
|
|
|
+ <v-container class="container">
|
|
|
+ <v-row>
|
|
|
+ <v-col cols="12" sm="12">
|
|
|
+ <UiCollection
|
|
|
+ :model="models().NetworkOrganization"
|
|
|
+ :parent="organization"
|
|
|
+ loaderType="text"
|
|
|
+ >
|
|
|
+ <template #list.item="{items}">
|
|
|
+ <div v-for="item in items" :key="item.id">
|
|
|
+ <span>{{ item.network.name }}</span> - <span>{{$t('first_subscription')}} : <UiTemplateDate :data="item.startDate" /></span>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </UiCollection>
|
|
|
+ </v-col>
|
|
|
+ <v-col v-if="organizationProfile.isFfec()" cols="12" sm="6">
|
|
|
+ <UiInputText field="budget" :data="entity['budget']" type="number" @update="updateRepository" />
|
|
|
+ </v-col>
|
|
|
+
|
|
|
+ <v-col v-if="organizationProfile.isFfec()" cols="12" sm="6">
|
|
|
+ <UiInputCheckbox field="isPedagogicIsPrincipalActivity" :data="entity['isPedagogicIsPrincipalActivity']" @update="updateRepository" />
|
|
|
+ </v-col>
|
|
|
+
|
|
|
+ <v-col v-if="organizationProfile.isFfec()" cols="12" sm="6">
|
|
|
+ <UiInputText field="pedagogicBudget" :data="entity['pedagogicBudget']" type="number" @update="updateRepository" />
|
|
|
+ </v-col>
|
|
|
+ </v-row>
|
|
|
+ </v-container>
|
|
|
+ </UiExpansionPanel>
|
|
|
+
|
|
|
+ <!-- Communication -->
|
|
|
+ <UiExpansionPanel id="communication" icon="fa-rss">
|
|
|
+ <v-container class="container">
|
|
|
+ <v-row>
|
|
|
+ <v-col cols="12" sm="6">
|
|
|
+ <UiInputText field="twitter" :data="entity['twitter']" @update="updateRepository" />
|
|
|
+ </v-col>
|
|
|
+
|
|
|
+ <v-col cols="12" sm="6">
|
|
|
+ <UiInputText field="youtube" :data="entity['youtube']" @update="updateRepository" />
|
|
|
+ </v-col>
|
|
|
+
|
|
|
+ <v-col cols="12" sm="6">
|
|
|
+ <UiInputText field="facebook" :data="entity['facebook']" @update="updateRepository" />
|
|
|
+ </v-col>
|
|
|
+
|
|
|
+ <v-col cols="12" sm="6">
|
|
|
+ <UiInputText field="instagram" :data="entity['instagram']" @update="updateRepository" />
|
|
|
+ </v-col>
|
|
|
+
|
|
|
+ <v-col cols="12" sm="6">
|
|
|
+ <UiInputCheckbox field="portailVisibility" :data="entity['portailVisibility']" @update="updateRepository" />
|
|
|
+ </v-col>
|
|
|
+
|
|
|
+ <v-col cols="12" sm="6">
|
|
|
+ <div class="d-flex flex-column">
|
|
|
+ <UiHelp class="d-flex flex-row">
|
|
|
+ <span>{{ $t('image') }}</span>
|
|
|
+ <p v-html="$t('communication_image_upload')" />
|
|
|
+ </UiHelp>
|
|
|
+ <UiImage
|
|
|
+ :id="getIdFromUri(entity['image'])"
|
|
|
+ :upload="true"
|
|
|
+ :width="200"
|
|
|
+ field="image"
|
|
|
+ :ownerId="id"
|
|
|
+ @update="updateRepository"
|
|
|
+ ></UiImage>
|
|
|
+ </div>
|
|
|
+ </v-col>
|
|
|
+
|
|
|
+ <v-col cols="12" sm="12">
|
|
|
+ <UiCollection
|
|
|
+ :model="models().OrganizationArticle"
|
|
|
+ :parent="organization"
|
|
|
+ loaderType="text"
|
|
|
+ >
|
|
|
+ <template #list.item="{items}">
|
|
|
+ <h4 class="ot_grey--text font-weight-regular">{{$t('organizationArticle')}}</h4>
|
|
|
+ <UiTemplateDataTable
|
|
|
+ :headers="[
|
|
|
+ { text: $t('title'), value: 'title' },
|
|
|
+ { text: $t('link'), value: 'link' },
|
|
|
+ { text: $t('date'), value: 'date' },
|
|
|
+ ]"
|
|
|
+ :items="items"
|
|
|
+ >
|
|
|
+ <template #item.date="{item}">
|
|
|
+ <UiTemplateDate :data="item.date" />
|
|
|
+ </template>
|
|
|
+ </UiTemplateDataTable>
|
|
|
+ </template>
|
|
|
+ </UiCollection>
|
|
|
+ </v-col>
|
|
|
+
|
|
|
+ </v-row>
|
|
|
+ </v-container>
|
|
|
+ </UiExpansionPanel>
|
|
|
+
|
|
|
+ <!-- IBAN -->
|
|
|
+ <UiExpansionPanel id="bank_account" icon="fa-euro-sign">
|
|
|
+ <v-container class="container">
|
|
|
+ <v-row>
|
|
|
+ <v-col cols="12" sm="12">
|
|
|
+ <UiCollection
|
|
|
+ :model="models().BankAccount"
|
|
|
+ :parent="organization"
|
|
|
+ loaderType="image"
|
|
|
+ newLink="/organization/bank_account/new"
|
|
|
+ >
|
|
|
+ <template #list.item="{items}">
|
|
|
+ <v-container fluid>
|
|
|
+ <v-row :dense="true">
|
|
|
+ <v-col
|
|
|
+ v-for="item in items"
|
|
|
+ :key="item.id"
|
|
|
+ cols="4"
|
|
|
+ >
|
|
|
+ <UiCard
|
|
|
+ :id="item.id"
|
|
|
+ :link="`/organization/bank_account/${item.id}`"
|
|
|
+ :model="models().BankAccount"
|
|
|
+ >
|
|
|
+ <template #card.text>
|
|
|
+ <span v-if="item.bankName"><strong>{{ $t('bankName') }}</strong> : {{ item.bankName }} <br></span>
|
|
|
+
|
|
|
+ <span v-if="item.bic"><strong>{{ $t('bic') }}</strong> : {{ item.bic }} <br></span>
|
|
|
+ <span v-if="item.bicInvalid" class="ot_danger--text"><v-icon class="ot_danger--text">mdi-alert</v-icon> <strong>{{ $t('bicInvalid') }}</strong> : {{ item.bicInvalid }} <br></span>
|
|
|
+
|
|
|
+ <span v-if="item.iban"><strong>{{ $t('iban') }}</strong> : {{ item.iban }} <br></span>
|
|
|
+ <span v-if="item.ibanInvalid" class="ot_danger--text"><v-icon class="ot_danger--text">mdi-alert</v-icon> <strong>{{ $t('ibanInvalid') }}</strong> : {{ item.ibanInvalid }} <br></span>
|
|
|
+
|
|
|
+ </template>
|
|
|
+ </UiCard>
|
|
|
+ </v-col>
|
|
|
+ </v-row>
|
|
|
+ </v-container>
|
|
|
+ </template>
|
|
|
+ </UiCollection>
|
|
|
+ </v-col>
|
|
|
+ </v-row>
|
|
|
+ </v-container>
|
|
|
+ </UiExpansionPanel>
|
|
|
+ </v-expansion-panels>
|
|
|
+ </template>
|
|
|
+ </UiForm>
|
|
|
+ </LayoutContainer>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script lang="ts">
|
|
|
+
|
|
|
+import {useEntityFetch} from "~/composables/data/useEntityFetch";
|
|
|
+import {TypeOfPractice} from "~/models/Organization/TypeOfPractice";
|
|
|
+import {reactive, ref} from "@vue/reactivity";
|
|
|
+import {$organizationProfile} from "~/services/profile/organizationProfile";
|
|
|
+import {useProfileOrganizationStore} from "~/store/profile/organization";
|
|
|
+import {useExtensionPanel} from "~/composables/layout/useExtensionPanel";
|
|
|
+import {useRoute} from "#app";
|
|
|
+import { useValidation } from "~/composables/form/useValidation";
|
|
|
+import {useEntityManager} from "~/composables/data/useEntityManager";
|
|
|
+import Url from "~/services/utils/url";
|
|
|
+import {Organization} from "~/models/Organization/Organization";
|
|
|
+import {useI18nUtils} from "~/composables/utils/useI18nUtils";
|
|
|
+import {ContactPoint} from "~/models/Core/ContactPoint";
|
|
|
+import {BankAccount} from "~/models/Core/BankAccount";
|
|
|
+import {OrganizationAddressPostal} from "~/models/Organization/OrganizationAddressPostal";
|
|
|
+import {Country} from "~/models/Core/Country";
|
|
|
+import {NetworkOrganization} from "~/models/Network/NetworkOrganization";
|
|
|
+import {OrganizationArticle} from "~/models/Organization/OrganizationArticle";
|
|
|
+
|
|
|
+const id: number | null = useProfileOrganizationStore().id
|
|
|
+if (id === null) {
|
|
|
+ throw new Error('Missing organization id')
|
|
|
+}
|
|
|
+
|
|
|
+const { em } = useEntityManager()
|
|
|
+
|
|
|
+const organizationProfile = reactive($organizationProfile())
|
|
|
+
|
|
|
+const { fetch, fetchCollection } = useEntityFetch()
|
|
|
+
|
|
|
+const model = Organization
|
|
|
+const { data: organization, pending: organizationPending } = fetch(Organization, id)
|
|
|
+
|
|
|
+const { data: typeOfPractices, pending: typeOfPracticesPending } = fetchCollection(TypeOfPractice)
|
|
|
+
|
|
|
+const route = ref(useRoute())
|
|
|
+const { panel } = useExtensionPanel(route)
|
|
|
+
|
|
|
+
|
|
|
+const { siretError, siretErrorMessage, validateSiret } = useValidation().useValidateSiret()
|
|
|
+
|
|
|
+const validateSiretHook = async (siret: string, field: string, updateRepository: any) => {
|
|
|
+ await validateSiret(siret)
|
|
|
+ if (organization.value !== null && !siretError.value) {
|
|
|
+ em.save(Organization, organization.value)
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+const formatPhoneNumber = (number: string): string => {
|
|
|
+ return useI18nUtils().formatPhoneNumber(number)
|
|
|
+}
|
|
|
+
|
|
|
+const getIdsFromUris = (uris: Array<string>) => {
|
|
|
+ const ids:Array<any> = []
|
|
|
+ for(const uri of uris){
|
|
|
+ ids.push(Url.extractIdFromUri(uri))
|
|
|
+ }
|
|
|
+ return ids
|
|
|
+}
|
|
|
+
|
|
|
+const getIdFromUri = (uri: string) => Url.extractIdFromUri(uri)
|
|
|
+
|
|
|
+function getValidationRules (i18n: any, $organizationProfile:any) {
|
|
|
+ return {
|
|
|
+ nameRules: [
|
|
|
+ (nameValue: string) => !!nameValue || i18n.t('required'),
|
|
|
+ (nameValue: string) => (nameValue || '').length <= 128 || i18n.t('name_length_rule')
|
|
|
+ ],
|
|
|
+ siretRule: [
|
|
|
+ (siretValue: string) => /^([0-9]{9}|[0-9]{14})$/.test(siretValue) || i18n.t('siret_error')
|
|
|
+ ],
|
|
|
+ typeOfPractice: [
|
|
|
+ (typeOfPracticeValue: Array<number>) => {
|
|
|
+ if(!$organizationProfile.isManagerProduct())
|
|
|
+ return typeOfPracticeValue.length > 0 || i18n.t('required')
|
|
|
+ return true
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+const models = () => {
|
|
|
+ return {
|
|
|
+ Organization,
|
|
|
+ ContactPoint,
|
|
|
+ BankAccount,
|
|
|
+ OrganizationAddressPostal,
|
|
|
+ Country,
|
|
|
+ NetworkOrganization,
|
|
|
+ OrganizationArticle
|
|
|
+ }
|
|
|
+}
|
|
|
+</script>
|
|
|
+
|
|
|
+<style scoped>
|
|
|
+ .v-icon.v-icon {
|
|
|
+ font-size: 14px;
|
|
|
+ }
|
|
|
+</style>
|