Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
madis
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Soluris
madis
Commits
774dc93a
There was an error fetching the commit references. Please try again later.
Commit
774dc93a
authored
1 month ago
by
Théo BOYER
Browse files
Options
Downloads
Patches
Plain Diff
php-cs-fixer
parent
3f1c6dba
No related branches found
No related tags found
1 merge request
!306
[Ergonomie] Fix Bilan + Calcul dynamique de l'impact potentiel + PDF AIPD + Odre d'éléments traitements + Données Hors UE
Pipeline
#90561
passed
1 month ago
Stage: cache
Stage: tests
Stage: quality-assurance
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/Domain/Reporting/Generator/Word/ContractorGenerator.php
+13
-13
13 additions, 13 deletions
src/Domain/Reporting/Generator/Word/ContractorGenerator.php
with
13 additions
and
13 deletions
src/Domain/Reporting/Generator/Word/ContractorGenerator.php
+
13
−
13
View file @
774dc93a
...
...
@@ -84,26 +84,26 @@ class ContractorGenerator extends AbstractGenerator implements ImpressionGenerat
}
$section
->
addText
(
"Un recensement des sous-traitants gérants des données à caractère personnel de
{
$collectivity
}
a été effectué."
);
$section
->
addText
(
"
Il y a
"
.
(
$nbContractors
==
1
?
"
un sous-traitant identifié.
"
:
"
{
$nbContractors
}
sous-traitants identifiés."
));
$section
->
addText
(
'
Il y a
'
.
(
1
==
$nbContractors
?
'
un sous-traitant identifié.
'
:
"
{
$nbContractors
}
sous-traitants identifiés."
));
$section
->
addListItem
(
(
$nbVerifiedContractualClauses
==
0
?
"
Aucune clause contractuelle n’a été vérifiée ;
"
:
(
$nbVerifiedContractualClauses
==
1
?
"
1 clause contractuelle a été vérifiée ;
"
:
"
{
$nbVerifiedContractualClauses
}
clauses contractuelles vérifiées ;"
)
)
0
==
$nbVerifiedContractualClauses
?
'
Aucune clause contractuelle n’a été vérifiée ;
'
:
(
1
==
$nbVerifiedContractualClauses
?
'
1 clause contractuelle a été vérifiée ;
'
:
"
{
$nbVerifiedContractualClauses
}
clauses contractuelles vérifiées ;"
)
);
$section
->
addListItem
(
(
$nbAdoptedSecurityFeatures
==
0
?
"
Aucun sous-traitant n’a adopté les éléments de sécurité nécessaires ;
"
:
(
$nbAdoptedSecurityFeatures
==
1
?
"
1 sous-traitant a adopté les éléments de sécurité nécessaires ;
"
:
"
{
$nbAdoptedSecurityFeatures
}
sous-traitants ont adopté les éléments de sécurité nécessaires ;"
)
)
0
==
$nbAdoptedSecurityFeatures
?
'
Aucun sous-traitant n’a adopté les éléments de sécurité nécessaires ;
'
:
(
1
==
$nbAdoptedSecurityFeatures
?
'
1 sous-traitant a adopté les éléments de sécurité nécessaires ;
'
:
"
{
$nbAdoptedSecurityFeatures
}
sous-traitants ont adopté les éléments de sécurité nécessaires ;"
)
);
$section
->
addListItem
(
(
$nbMaintainsTreatmentRegister
==
0
?
"
Aucun sous-traitant ne tient à jour un registre des traitements ;
"
:
(
$nbMaintainsTreatmentRegister
==
1
?
"
1 sous-traitant tient à jour un registre des traitements ;
"
:
"
{
$nbMaintainsTreatmentRegister
}
sous-traitants tiennent à jour un registre des traitements ;"
)
)
0
==
$nbMaintainsTreatmentRegister
?
'
Aucun sous-traitant ne tient à jour un registre des traitements ;
'
:
(
1
==
$nbMaintainsTreatmentRegister
?
'
1 sous-traitant tient à jour un registre des traitements ;
'
:
"
{
$nbMaintainsTreatmentRegister
}
sous-traitants tiennent à jour un registre des traitements ;"
)
);
$section
->
addListItem
(
(
$nbSendingDataOutsideEu
==
0
?
"Aucun sous-traitant n'envoie des données hors Union européenne."
:
(
$nbSendingDataOutsideEu
==
1
?
"
1 sous-traitant envoie des données hors Union européenne.
"
:
"
{
$nbSendingDataOutsideEu
}
sous-traitants envoient des données hors Union européenne."
)
)
0
==
$nbSendingDataOutsideEu
?
"Aucun sous-traitant n'envoie des données hors Union européenne."
:
(
1
==
$nbSendingDataOutsideEu
?
'
1 sous-traitant envoie des données hors Union européenne.
'
:
"
{
$nbSendingDataOutsideEu
}
sous-traitants envoient des données hors Union européenne."
)
);
$ContractorsListTable
=
$section
->
addTable
(
$this
->
tableStyle
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment