@php
error_reporting(0);
if (is_array(unserialize($rapport['nature_travaux']))) {
$nature_travaux = unserialize($rapport['nature_travaux']);
} else {
$nature_travaux = $rapport['nature_travaux'];
}
@endphp
@if ((is_array($nature_travaux) && (in_array('combles_perdu', $nature_travaux) || in_array('comble_perdu', $nature_travaux))) || $rapport['nature_travaux'] == 'comble_perdu')
@include('pdf.templates_pdf.rapports.page_heading')
ISOLATION DES COMBLES
- @if (!empty($rapport['bat_bar']) && $rapport['bat_bar'] == 1)
BAT
@else
BAR
@endif
@if ($rapport['type_rapport'] == 2)
-EN-101
@else
-EN-106
@endif
CONCLUSION PORTANT SUR LE CLASSEMENT DE
L'OPERATION
@if ($rapport['version'] >= 3)
@if ($rapport['conformite_combles'] == 'conforme')
X
@else
@endif
Satisfaisant
@if ($rapport['conformite_combles'] == 'non_conforme')
X
@else
@endif
Non Satisfaisant
@if (($rapport['conformite_combles'] == 'non_verifiable' && strpos($rapport['observations_combles'], 'Installation inaccessible') !== false) || strpos($rapport['observations_combles'], 'possible par une trappe') !== false || strpos($rapport['observations_combles'], 'accès non sécurisé') !== false)
)
X
@else
@endif
Non vérifiable
@if ($rapport['conformite_combles'] == 'non_verifiable' && strpos($rapport['observations_combles'], 'Propriétaire absent') !== false)
X
@else
@endif
Propriétaire absent ou accès refusé
DECLARATION DE LA SITUATION AYANT
CONDUIT
AU CLASSEMENT NON VERIFIABLE DE LA VERIFICATION
@if (strpos($rapport['observations_combles'], 'possible par une trappe') !== false)
X
@endif
Isolation réalisée par le toit du bâtiment sans accès
possible par une trappe
@if (strpos($rapport['observations_combles'], 'accès non sécurisé') !== false)
X
@endif
Absence de moyen d'accès ou moyen d'accès non
sécurisé au lieu de l'opération d'isolation
@if (in_array('rampant_toiture', $nature_travaux))
@if (strpos($rapport['observations_rampants'], 'recouverte de') !== false)
X
@endif
Isolation de rampant recouverte de
placôplatre
@endif
DECLARATION DU BENEFICIAIRE
@if ($rapport['declaration_beneficiaire'] == '1')
X
@endif
Le bénéficiaire a déclaré ne jamais avoir eu en sa possession de facture, devis ou cadre de
contribution et l'a attesté par écrit.
CONSTAT SUR LA REALISATION DES
TRAVAUX
@if (strpos($rapport['observations_combles'], 'non réalisés') == false && $rapport['declaration_beneficiaire'] != 1 && strpos($rapport['observations_combles'], 'inaccessible') == false && strpos($rapport['observations_combles'], 'de visite') == false && strpos($rapport['observations_combles'], 'possible par une trappe') == false && strpos($rapport['observations_combles'], 'accès sécurisé') == false && $rapport['connaissance_beneficiaire'] == 0)
X
@endif
La zone de travaux est accessible et
les travaux ont été réalisés.
@if (strpos($rapport['observations_combles'], 'isolation non') !== false && strpos($rapport['observations_combles'], 'inaccessible') == false)
X
@endif
La zone de travaux est accessible et
manifestement les travaux n’ont pas été réalisés.
@if ($rapport['connaissance_beneficiaire'] == 1)
X
@endif
Le bénéficiaire n'a pas connaissance
de la réalisation de travaux et l'a attesté par écrit.
@endif
@if ($rapport['version'] >= 3)
CONSTAT SUR LE RESPECT DU DELAI
MINIMAL
DE
SEPT
JOURS FRANCS ENTRE LA DATE D’ACCEPTATION ET LA DATE DE REALISATION DES TRAVAUX..
@php
$date_acceptation = str_replace('.', '-', $rapport['date_acceptation']);
$date_acceptation = str_replace(' ', '', $rapport['date_acceptation']);
$date_acceptation = str_replace('/', '-', $date_acceptation);
$date_acceptation_en = date('Y-m-d 00:00:01', strtotime($date_acceptation));
$date_acceptation = date('d/m/Y', strtotime($date_acceptation));
$date_realisation = str_replace('.', '-', $rapport['date_realisation']);
$date_realisation = str_replace(' ', '', $rapport['date_realisation']);
$date_realisation = str_replace('/', '-', $date_realisation);
$date_realisation_en = date('Y-m-d 00:00:01', strtotime($date_realisation));
$date_realisation = date('d/m/Y', strtotime($date_realisation));
@endphp
@if (strtotime($date_acceptation_en) < strtotime('2020-09-01 00:00:01'))
X
@endif
Sans objet (Opération engagée avant
le 1er septembre 2020)
@if (strtotime($date_acceptation_en) >= strtotime('2020-09-01 00:00:01'))
X
@endif
Opération engagée après le 1er
septembre 2020
Date d'acceptation du devis : @if (!empty($date_acceptation) && $date_acceptation_en != '1970-01-01 00:00:01')
{{ $date_acceptation }}
@endif
Date de réalisation des travaux : @if (!empty($date_realisation) && $date_realisation_en != '1970-01-01 00:00:01')
{{ $date_realisation }}
@endif
@if (!empty($date_realisation) && !empty($date_acceptation) && $date_acceptation_en != '1970-01-01 00:00:01' && $date_realisation_en != '1970-01-01 00:00:01' && strtotime($date_realisation_en) >= strtotime('2020-09-01 00:00:01'))
Respect du délai minimal des 7 jours :
@if (strtotime($date_realisation_en) - strtotime($date_acceptation_en) >= 604800 && (!isset($rapport['respect_delai']) || (isset($rapport['respect_delai']) && !in_array($rapport['respect_delai'], ['non_avec_piece', 'non_declaration']))))
X
@else
@endif
Satisfaisant
@if (strtotime($date_realisation_en) - strtotime($date_acceptation_en) < 604800 || (isset($rapport['respect_delai']) && in_array($rapport['respect_delai'], ['non_avec_piece', 'non_declaration'])))
X
@else
@endif
Non Satisfaisant
(Délai :
{{ ceil((strtotime($date_realisation_en) - strtotime($date_acceptation_en)) / 86400) . ' jours' }})
@endif
@if (!empty($date_realisation) && !empty($date_acceptation) && $date_acceptation_en != '1970-01-01 00:00:01' && $date_realisation_en != '1970-01-01 00:00:01' && strtotime($date_realisation_en) >= strtotime('2020-09-01 00:00:01') && strtotime($date_realisation_en) - strtotime($date_acceptation_en) < 604800)
OBSERVATIONS |
Le délai de sept jours francs entre la d’acception du devis et la réalisation des travaux
n’a
pas
été
respecté par
le professionnel ayant réalisé les travaux d’isolation.
|
@endif
@endif
@include('pdf.templates_pdf.rapports.page_heading')
CONSTAT SUR LES CARACTERISTIQUES DES
ISOLANTS
MIS EN OEUVRE
Mode de pose |
@if ($rapport['procede_comble'] == '1' || $rapport['procede_comble'] == 'souffle')
PROCEDE D'ISOLATION PAR SOUFFLAGE
@endif
@if ($rapport['procede_comble'] == '2' || $rapport['procede_comble'] == 'deroule')
PROCEDE D'ISOLATION EN DEROULE
@endif
|
Type de produit |
@if ($rapport['conformite_combles'] == 'conforme' || $rapport['conformite_combles'] == 'non_conforme')
{{ $rapport['nature_isolation_combles'] }}
@endif
|
Marque/référence de l'isolation |
@if ($rapport['conformite_combles'] == 'conforme' || $rapport['conformite_combles'] == 'non_conforme')
{{ strtoupper($rapport['marque_isolation_combles']) }}
@endif
|
Epaisseur de l'isolation (mm) |
@if ($rapport['conformite_combles'] == 'conforme' || $rapport['conformite_combles'] == 'non_conforme')
{{ $epaisseur = (int) filter_var($rapport['epaisseur_isolation_combles'], FILTER_SANITIZE_NUMBER_FLOAT) }}
@endif
|
@if ($rapport['procede_comble'] == '2' || $rapport['procede_comble'] == 'deroule')
Résistance thermique
(m2.K/W)
|
@if ($rapport['conformite_combles'] == 'conforme' || $rapport['conformite_combles'] == 'non_conforme')
@if ($rapport['bat_bar'] == 0)
{{ $rapport['resistance_thermique_combles'] }}
@else
@if ($rapport['resistance_thermique_combles'] == 'Rth supérieure ou égale à 7')
Rth supérieure ou égale à 7
@endif
@if ($rapport['resistance_thermique_combles'] == 'Rth inférieure à 7')
Rth inférieure à 7
@endif
@endif
@endif
|
@endif
@if ($rapport['procede_comble'] == '1' || $rapport['procede_comble'] == 'souffle')
Répartition de l'isolant |
@if ($rapport['conformite_combles'] == 'conforme' || $rapport['conformite_combles'] == 'non_conforme')
@if ($rapport['repartition_isolation_combles'] == 'Satisfaisant' || $rapport['repartition_isolation_combles'] == 'conforme')
Homogène
@endif
@if ($rapport['repartition_isolation_combles'] == 'Non satisfaisant' || $rapport['repartition_isolation_combles'] == 'non_conforme')
Non Homogène
@endif
@endif
|
@endif
@if ($rapport->type_rapport == 12)
@php $rth = $rapport['bat_bar'] === 0 ? 1.2 : 1.5 @endphp
@else
@php $rth = 7 @endphp
@endif
@isset($rapport['lambda_combles'])
@php
$epaisseur = (int) filter_var($rapport['epaisseur_isolation_combles'], FILTER_SANITIZE_NUMBER_FLOAT);
$calcul = $epaisseur / str_replace(',', '.', $rapport['lambda_combles']) / 1000;
@endphp
@else
@php $calcul = 0; @endphp
@endisset
@if (($rapport['procede_comble'] == '1' || $rapport['procede_comble'] == 'souffle') && $rapport['conformite_combles'] != 'non_verifiable')
Calcul de la résistance thermique :
Résistance thermique demandée (m².K/W) {{ $rth }}
Résistance thermique atteinte (m².K/W)
{{ $calcul >= 7 ? 'Oui' : 'Non' }}
Résistance thermique calculée (m².K/W) {{ $calcul }}
Lambda W/m.K
{{ str_replace(',', '.', $rapport['lambda_combles']) }}
Nombre de sacs utilisés {{ $rapport['nbre_sacs'] > 0 ? $rapport['nbre_sacs'] : '' }}
@if (strpos($rapport['nbre_sacs'] == 0))
X
@endif
Information non disponible
@endif
Observations |
@if (!empty($rapport['observations_combles']))
{!! nl2br($rapport['observations_combles']) !!}
@endif
@if (empty($rapport['lambda_combles']) && $rapport['lambda_combles'] == 0 && $rapport['lambda_combles'] == '' && ($rapport['procede_comble'] == 1 || $rapport['procede_comble'] == 'souffle'))
@if ($rapport['conformite_combles'] != 'non_verifiable')
Lambda non renseigné
@endif
@else
@if ($calcul >= 7)
@if (empty($rapport['observations_combles']))
Néant
@endif
@else
@endif
@endif
|
@if ($rapport['procede_comble'] == '1' || $rapport['procede_comble'] == '2' || $rapport['procede_comble'] == 'deroule' || $rapport['procede_comble'] == 'souffle')
@include('pdf.templates_pdf.rapports.page_heading')
@endif
CONSTAT SUR LA QUALITE DES TRAVAUX REALISES
@if ($rapport['amenagements_necessaires_combles'] == 'Satisfaisant' && $rapport['conformite_combles'] != 'non_verifiable')
X
@else
@endif
Satisfaisant
@if (in_array($rapport['amenagements_necessaires_combles'], ['Non satisfaisant', 'Non Satisfaisant']) && $rapport['conformite_combles'] != 'non_verifiable')
X
@else
@endif
Non Satisfaisant
@if ($rapport['conformite_combles'] == 'non_verifiable' || $rapport['amenagements_necessaires_combles'] == 'non_verifiable')
X
@else
@endif
Non vérifiable
@if ($rapport['pige_combles'])
Piges ou repérage de hauteur
|
{{ $format[$rapport['pige_combles']] ?? '' }}
|
@endif
Aménagements |
Pare-vapeur |
{{ $format[$rapport['pare_vapeur_combles']] }}
|
Réhausse de trappe rigide |
{{ $format[$rapport['rehausse_trappe_combles']] }}
|
Ecart au feu des conduits de fumée |
{{ $format[$rapport['ecart_feu_combles']] }}
|
Capot de protection des points d'éclairage |
{{ $format[$rapport['eclairage_combles']] }}
|
Environnement |
Traces d'humidité (infiltration ou de défaut
d’étanchéité)
|
{{ $format[$rapport['humidite']] }}
|
Observations |
@if (!empty($rapport['obs_travaux_combles']))
{!! nl2br($rapport['obs_travaux_combles']) !!}
@else
Néant
@endif
|
@if ($rapport['procede_comble'] == '1' || $rapport['procede_comble'] == 'souffle')
COMMENTAIRE GENERAL
OBSERVATIONS |
@if (!empty($rapport['remarques_combles']))
{!! nl2br($rapport['remarques_combles']) !!}
@else
Néant
@endif
|
@endif
@include('pdf.templates_pdf.rapports.page_heading')
CONSTAT SUR LA SURFACE ISOLEE
@if ($rapport['version'] < 3)
Surface m2 prévue |
@endif
@if ($rapport['version'] >= 3)
Surface m2 déclarée sur la
facture
|
@endif
{{ $rapport['surface_prevue_combles'] }} |
@if ($rapport['version'] < 3)
Surface m2 réalisée |
@endif
@if ($rapport['version'] >= 3)
Surface m2 mesurée |
@endif
@if ($rapport['conformite_combles'] == 'non_verifiable' || $rapport['conformite_rampants'] == 'non_verifiable' || $rapport['conformite_planchers'] == 'non_verifiable')
Non vérifiable
@else
{{ $rapport['surface_realisee_combles'] }}
@endif
|
Ecart entre surface réalisée et
surface
mesurée
|
@if ($rapport['conformite_combles'] == 'non_verifiable' || $rapport['conformite_rampants'] == 'non_verifiable' || $rapport['conformite_planchers'] == 'non_verifiable')
Non vérifiable
@else
{{ intval($rapport['surface_realisee_combles']) - intval($rapport['surface_prevue_combles']) }}
({{ round(((intval($rapport['surface_realisee_combles']) - intval($rapport['surface_prevue_combles'])) /intval($rapport['surface_realisee_combles'])) *100) . '%)' }}
@endif
|
Condition de réalisation de la mesure :
@if (strpos($rapport['observations_surface_combles'], 'mesure de la surface isolée') == false)
X
@endif
La mesure de la surface isolée a été réalisée depuis les locaux ou les
travaux ont été réalisés
@if (strpos($rapport['observations_surface_combles'], 'mesure de la surface isolée') !== false)
X
@endif
La mesure de la surface isolée a été réalisée depuis l'extérieur des locaux
où les travaux ont été réalisés
Commentaires |
@if (!empty($rapport['observations_surface_combles']))
{!! nl2br($rapport['observations_surface_combles']) !!}
@else
Néant
@endif
|
@elseif ((is_array($nature_travaux) && in_array('rampant_toiture', $nature_travaux)) || $rapport['nature_travaux'] == 'rampant_toiture')
@include('pdf.templates_pdf.rapports.page_heading')
ISOLATION
RAMPANTS DE TOITURE - @if (!empty($rapport['bat_bar']) && $rapport['bat_bar'] == 1)
BAT
@else
BAR
@endif
@if ($rapport['type_rapport'] == 2)
-EN-101
@else
-EN-106
@endif
CONCLUSION PORTANT SUR LE CLASSEMENT DE
L'OPERATION
@if ($rapport['version'] <= 2)
@if ($rapport['conformite_rampants'] == 'conforme')
X
@else
@endif
Satisfaisant
@if ($rapport['conformite_rampants'] == 'non_conforme')
X
@else
@endif
Non Satisfaisant
@if ($rapport['conformite_rampants'] == 'non_verifiable')
X
@else
@endif
Non Vérifiable
@endif
@if ($rapport['version'] >= 3)
@if ($rapport['conformite_rampants'] == 'conforme')
X
@else
@endif
Satisfaisant
@if ($rapport['conformite_rampants'] == 'non_conforme')
X
@else
@endif
Non Satisfaisant
@if (($rapport['conformite_rampants'] == 'non_verifiable' && strpos($rapport['observations_rampants'], 'Installation inaccessible') !== false) || strpos($rapport['observations_rampants'], 'possible par une trappe') !== false || strpos($rapport['observations_rampants'], 'accès non sécurisé') !== false || strpos($rapport['observations_rampants'], 'rampant recouverte') !== false)
X
@else
@endif
Non vérifiable
@if ($rapport['conformite_rampants'] == 'non_verifiable' && strpos($rapport['observations_rampants'], 'Propriétaire absent') !== false)
X
@else
@endif
Propriétaire absent ou accès refusé
@if ($rapport['version'] == 3)
DECLARATION DU
BENEFICIAIRE
@if ($rapport['declaration_beneficiaire'] == '1')
X
@endif
Le bénéficiaire a déclaré ne jamais avoir eu en sa
possession de facture, devis ou cadre de
contribution et l’a attesté par écrit.
@endif
@if ($rapport['version'] >= 4)
DECLARATION DE LA SITUATION AYANT
CONDUIT AU CLASSEMENT NON VERIFIABLE DE LA VERIFICATION
@if (strpos($rapport['observations_rampants'], 'possible par une trappe') !== false)
X
@endif
Isolation réalisée par le toit du bâtiment sans
accès possible par une trappe
@if (strpos($rapport['observations_rampants'], 'accès non sécurisé') !== false)
X
@endif
Absence de moyen d'accès ou moyen d'accès non
sécurisé au lieu de l'opération d'isolation
@if (strpos($rapport['observations_rampants'], 'recouverte de') !== false)
X
@endif
Isolation de rampant recouverte de
placôplatre
DECLARATION DU BENEFICIAIRE
@if ($rapport['declaration_beneficiaire'] == '1')
X
@endif
Le bénéficiaire a déclaré ne jamais avoir eu en sa
possession de facture, devis ou cadre de
contribution et l'a attesté par écrit.
@endif
CONSTAT SUR LA REALISATION DES
TRAVAUX
@if (strpos($rapport['observations_rampants'], 'non réalisés') == false && strpos($rapport['observations_rampants'], 'pas connaissance') == false && strpos($rapport['observations_rampants'], 'inaccessible') == false && strpos($rapport['observations_rampants'], 'de visite') == false && strpos($rapport['observations_rampants'], 'possible par une trappe') == false && strpos($rapport['observations_rampants'], 'accès sécurisé') == false && $rapport['connaissance_beneficiaire'] == 0)
X
@endif
La zone de travaux est accessible et les
travaux ont été réalisés.
@if (strpos($rapport['observations_rampants'], 'isolation non') != false)
X
@endif
La zone de travaux est accessible et
manifestement les travaux n’ont pas été réalisés.
@if ($rapport['connaissance_beneficiaire'] == 1)
X
@endif
Le bénéficiaire n'a pas connaissance de
la réalisation de travaux et l'a attesté par écrit.
@endif
CONSTAT SUR LE RESPECT DU DELAI MINIMAL
DE
SEPT
JOURS FRANCS ENTRE LA DATE D’ACCEPTATION ET LA DATE DE REALISATION DES TRAVAUX
@php
$date_acceptation = str_replace('.', '-', $rapport['date_acceptation']);
$date_acceptation = str_replace(' ', '', $rapport['date_acceptation']);
$date_acceptation = str_replace('/', '-', $date_acceptation);
$date_acceptation_en = date('Y-m-d 00:00:01', strtotime($date_acceptation));
$date_acceptation = date('d/m/Y', strtotime($date_acceptation));
$date_realisation = str_replace('.', '-', $rapport['date_realisation']);
$date_realisation = str_replace(' ', '', $rapport['date_realisation']);
$date_realisation = str_replace('/', '-', $date_realisation);
$date_realisation_en = date('Y-m-d 00:00:01', strtotime($date_realisation));
$date_realisation = date('d/m/Y', strtotime($date_realisation));
@endphp
@if (strtotime($date_acceptation_en) <= strtotime('2020-09-01 00:00:01'))
X
@endif
Sans objet (Opération engagée avant le 1er
septembre 2020)
@if (strtotime($date_acceptation_en) >= strtotime('2020-09-01 00:00:01'))
X
@endif
Opération engagée après le 1er septembre
2020
Date d'acceptation du devis : @if (!empty($date_acceptation) && $date_acceptation_en != '1970-01-01 00:00:01')
{{ $date_acceptation }}
@endif
Date de réalisation des travaux : @if (!empty($date_realisation) && $date_realisation_en != '1970-01-01 00:00:01')
{{ $date_realisation }}
@endif
@if (!empty($date_realisation) && !empty($date_acceptation) && $date_acceptation_en != '1970-01-01 00:00:01' && $date_realisation_en != '1970-01-01 00:00:01' && strtotime($date_realisation_en) >= strtotime('2020-09-01 00:00:01'))
Respect du délai minimal des 7 jours :
@if (strtotime($date_realisation_en) - strtotime($date_acceptation_en) >= 604800 && (!isset($rapport['respect_delai']) || (isset($rapport['respect_delai']) && !in_array($rapport['respect_delai'], ['non_avec_piece', 'non_declaration']))))
X
@else
@endif
Satisfaisant
@if (strtotime($date_realisation_en) - strtotime($date_acceptation_en) < 604800 || (isset($rapport['respect_delai']) && in_array($rapport['respect_delai'], ['non_avec_piece', 'non_declaration'])))
X
@else
@endif
Non Satisfaisant
(Délai
:{{ ceil((strtotime($date_realisation_en) - strtotime($date_acceptation_en)) / 86400) . ' jours' }})
@endif
@if (!empty($date_realisation) && !empty($date_acceptation) && $date_acceptation_en != '1970-01-01 00:00:01' && $date_realisation_en != '1970-01-01 00:00:01' && strtotime($date_realisation_en) >= strtotime('2020-09-01 00:00:01') && strtotime($date_realisation_en) - strtotime($date_acceptation_en) < 604800)
OBSERVATIONS |
Le délai de sept jours francs entre la d’acception du devis et la réalisation des travaux
n’a pas
été
respecté par
le professionnel ayant réalisé les travaux d’isolation.
|
@endif
@include('pdf.templates_pdf.rapports.page_heading')
CONSTAT SUR LES CARACTERISTIQUES DES
ISOLANTS
MIS EN OEUVRE
Type de produit |
@if ($rapport['conformite_rampants'] == 'conforme' || $rapport['conformite_rampants'] == 'non_conforme')
{{ $rapport['nature_isolation_rampants'] }}
@endif
|
Marque/référence de
l'isolation
|
@if ($rapport['conformite_rampants'] == 'conforme' || $rapport['conformite_rampants'] == 'non_conforme')
{{ strtoupper($rapport['marque_isolation_rampants']) }}
@endif
|
Epaisseur de l'isolation (mm)
|
@if ($rapport['conformite_rampants'] == 'conforme' || $rapport['conformite_rampants'] == 'non_conforme')
{{ $rapport['epaisseur_isolation_rampants'] }}
@endif
|
Résistance thermique (m2.K/W)
|
@if ($rapport['conformite_rampants'] == 'conforme' || $rapport['conformite_rampants'] == 'non_conforme')
{{ $rapport['resistance_thermique_rampants'] }}
@endif
|
Observations |
@if ($rapport['conformite_rampants'] == 'conforme' || $rapport['conformite_rampants'] == 'non_conforme' || $rapport['conformite_rampants'] == 'non_verifiable')
@if (!empty($rapport['observations_rampants']))
{!! nl2br($rapport['observations_rampants']) !!}
@else
@if ($rapport['conformite_rampants'] == 'sans_objet' || $rapport['conformite_rampants'] == '')
@else
Néant
@endif
@endif
@endif
|
CONSTAT SUR LA QUALITE DES TRAVAUX
REALISES
@if ($rapport['amenagements_necessaires_rampants'] == 'Satisfaisant' && $rapport['conformite_rampants'] != 'non_verifiable')
X
@else
@endif
Satisfaisant
@if (in_array($rapport['amenagements_necessaires_rampants'], ['Non satisfaisant', 'Non Satisfaisant']) && $rapport['conformite_rampants'] != 'non_verifiable')
X
@else
@endif
Non Satisfaisant
@if ($rapport['conformite_rampants'] == 'non_verifiable' || $rapport['amenagements_necessaires_rampants'] == 'non_verifiable')
X
@else
@endif
Non vérifiable
Pare-vapeur |
{{ $format[$rapport['pare_vapeur_rampants']] }}
|
Observations |
@if (!empty($rapport['obs_travaux_rampants']))
{!! nl2br($rapport['obs_travaux_rampants']) !!}
@else
Néant
@endif
|
COMMENTAIRE GENERAL
Observations |
@if (!empty($rapport['remarques_rampants']))
{!! nl2br($rapport['remarques_rampants']) !!}
@else
Néant
@endif
|
@include('pdf.templates_pdf.rapports.page_heading')
CONSTAT SUR LA SURFACE ISOLEE
@if ($rapport['version'] < 3)
Surface m2 prévue |
@endif
@if ($rapport['version'] >= 3)
Surface m2 déclarée sur la
facture
|
@endif
{{ $rapport['surface_prevue_rampants'] }} |
@if ($rapport['version'] < 3)
Surface m2 réalisée |
@endif
@if ($rapport['version'] >= 3)
Surface m2 mesurée |
@endif
{{ $rapport['surface_realisee_rampants'] }}
|
Ecart entre surface réalisée et
surface
mesurée
|
{{ intval($rapport['surface_realisee_rampants']) - intval($rapport['surface_prevue_rampants']) }}
({{ round(((intval($rapport['surface_realisee_rampants']) - intval($rapport['surface_prevue_rampants'])) /intval($rapport['surface_realisee_rampants'])) *100) . '%)' }}
|
Condition de réalisation de la mesure :
@if (strpos($rapport['observations_surface_rampants'], 'mesure de la surface isolée') == false)
X
@endif
La mesure de la surface isolée a été réalisée depuis les locaux ou les
travaux ont été réalisés
@if (strpos($rapport['observations_surface_rampants'], 'mesure de la surface isolée') !== false)
X
@endif
La mesure de la surface isolée a été réalisée depuis l'extérieur des locaux
où les travaux ont été réalisés
Commentaires |
@if (!empty($rapport['observations_surface_rampants']))
{!! nl2br($rapport['observations_surface_rampants']) !!}
@else
Néant
@endif
|
@elseif ((is_array($nature_travaux) && in_array('planchers_bas', $nature_travaux)) || $rapport['nature_travaux'] == 'planchers_bas')
@include('pdf.templates_pdf.rapports.page_heading')
ISOLATION PLANCHERS BAS
- @if (!empty($rapport['bat_bar']) && $rapport['bat_bar'] == 1)
BAT
@else
BAR
@endif @if ($rapport['type_rapport'] == 2)
-EN-103
@else
-EN-106
@endif
{{-- version 6 --}}
@if ($rapport['version'] <= 6)
CONCLUSION PORTANT SUR LE CLASSEMENT DE L'OPERATION
@if ($rapport['version'] <= 2)
@if ($rapport['conformite_planchers'] == 'conforme')
X
@else
@endif
Satisfaisant
@if ($rapport['conformite_planchers'] == 'non_conforme')
X
@else
@endif
Non Satisfaisant
@if ($rapport['conformite_planchers'] == 'non_verifiable')
X
@else
@endif
Non Vérifiable
@endif
@if ($rapport['version'] >= 3)
@if ($rapport['conformite_planchers'] == 'conforme')
X
@else
@endif
Satisfaisant
@if ($rapport['conformite_planchers'] == 'non_conforme')
X
@else
@endif
Non Satisfaisant
@if (($rapport['conformite_planchers'] == 'non_verifiable' && strpos($rapport['observations_planchers'], 'Installation inaccessible') !== false) || strpos($rapport['observations_planchers'], 'possible par une trappe') !== false || strpos($rapport['observations_planchers'], 'accès non sécurisé') !== false)
)
X
@else
@endif
Non vérifiable
@if ($rapport['conformite_planchers'] == 'non_verifiable' && strpos($rapport['observations_planchers'], 'Propriétaire absent') !== false)
X
@else
@endif
Propriétaire absent ou accès refusé
DECLARATION DE LA SITUATION AYANT
CONDUIT
AU CLASSEMENT NON VERIFIABLE DE LA VERIFICATION
@if (strpos($rapport['observations_planchers'], 'possible par une trappe') !== false)
X
@endif
Isolation réalisée par le toit du bâtiment sans
accès possible par une trappe
@if (strpos($rapport['observations_planchers'], 'accès non sécurisé') !== false)
X
@endif
Absence de moyen d'accès ou moyen d'accès non
sécurisé au lieu de l'opération d'isolation
DECLARATION DU
BENEFICIAIRE
@if ($rapport['declaration_beneficiaire'] == '1')
X
@endif
Le bénéficiaire a déclaré ne jamais avoir eu en sa
possession de facture, devis ou cadre de
contribution et l’a attesté par écrit.
CONSTAT SUR LA REALISATION DES
TRAVAUX
@if (strpos($rapport['observations_planchers'], 'non réalisés') == false && strpos($rapport['observations_planchers'], 'inaccessible') == false && strpos($rapport['observations_planchers'], 'de visite') == false && strpos($rapport['observations_planchers'], 'possible par une trappe') == false && strpos($rapport['observations_planchers'], 'accès sécurisé') == false && $rapport['connaissance_beneficiaire'] == 0)
X
@endif
La zone de travaux est accessible et
les travaux ont été réalisés.
@if (strpos($rapport['observations_planchers'], 'isolation non') !== false && strpos($rapport['observations_planchers'], 'inaccessible') == false)
X
@endif
La zone de travaux est accessible et
manifestement les travaux n’ont pas été réalisés.
@if ($rapport['connaissance_beneficiaire'] == 1)
X
@endif
Le bénéficiaire n'a pas connaissance
de la réalisation des travaux et l'a attesté par écrit.
@endif
@endif
{{-- fin version 6 --}}
{{-- version 7 --}}
@if ($rapport['version'] == 7)
CONCLUSION PORTANT SUR LE CLASSEMENT DE L'OPERATION
@if ($rapport['conformite_planchers'] == 'conforme')
X
@else
@endif
Satisfaisant
@if ($rapport['conformite_planchers'] == 'non_conforme')
X
@else
@endif
Non Satisfaisant
@if ($rapport['conformite_planchers'] == 'non_verifiable')
X
@else
@endif
Non Vérifiable
@endif
{{-- fin version 7 --}}
{{-- version 6 --}}
@if ($rapport['version'] <= 6)
CONSTAT SUR LE RESPECT DU DELAI
MINIMAL DE
SEPT
JOURS FRANCS ENTRE LA DATE D’ACCEPTATION ET LA DATE DE REALISATION DES TRAVAUX
@php
$date_acceptation = str_replace('.', '-', $rapport['date_acceptation']);
$date_acceptation = str_replace(' ', '', $rapport['date_acceptation']);
$date_acceptation = str_replace('/', '-', $date_acceptation);
$date_acceptation_en = date('Y-m-d 00:00:01', strtotime($date_acceptation));
$date_acceptation = date('d/m/Y', strtotime($date_acceptation));
$date_realisation = str_replace('.', '-', $rapport['date_realisation']);
$date_realisation = str_replace(' ', '', $rapport['date_realisation']);
$date_realisation = str_replace('/', '-', $date_realisation);
$date_realisation_en = date('Y-m-d 00:00:01', strtotime($date_realisation));
$date_realisation = date('d/m/Y', strtotime($date_realisation));
@endphp
@if (strtotime($date_acceptation_en) < strtotime('2020-09-01 00:00:01'))
X
@endif
Sans objet (Opération engagée avant le
1er septembre 2020)
@if (strtotime($date_acceptation_en) >= strtotime('2020-09-01 00:00:01'))
X
@endif
Opération engagée après le 1er septembre
2020
Date d'acceptation du devis : @if (!empty($date_acceptation) && $date_acceptation_en != '1970-01-01 00:00:01')
{{ $date_acceptation }}
@endif
Date de réalisation des travaux : @if (!empty($date_realisation) && $date_realisation_en != '1970-01-01 00:00:01')
{{ $date_realisation }}
@endif
@if (!empty($date_realisation) && !empty($date_acceptation) && $date_acceptation_en != '1970-01-01 00:00:01' && $date_realisation_en != '1970-01-01 00:00:01' && strtotime($date_realisation_en) >= strtotime('2020-09-01 00:00:01'))
Respect du délai minimal des 7 jours :
@if (strtotime($date_realisation_en) - strtotime($date_acceptation_en) >= 604800 && (!isset($rapport['respect_delai']) || (isset($rapport['respect_delai']) && !in_array($rapport['respect_delai'], ['non_avec_piece', 'non_declaration']))))
X
@else
@endif
Satisfaisant
@if (strtotime($date_realisation_en) - strtotime($date_acceptation_en) < 604800 || (isset($rapport['respect_delai']) && in_array($rapport['respect_delai'], ['non_avec_piece', 'non_declaration'])))
X
@else
@endif
Non Satisfaisant
(Délai :
{{ ceil((strtotime($date_realisation_en) - strtotime($date_acceptation_en)) / 86400) . ' jours' }})
@endif
@if (!empty($date_realisation) && !empty($date_acceptation) && $date_acceptation_en != '1970-01-01 00:00:01' && $date_realisation_en != '1970-01-01 00:00:01' && strtotime($date_realisation_en) >= strtotime('2020-09-01 00:00:01') && strtotime($date_realisation_en) - strtotime($date_acceptation_en) < 604800)
OBSERVATIONS |
Le délai de sept jours francs entre la d’acception du devis et la réalisation des
travaux n’a pas
été
respecté par
le professionnel ayant réalisé les travaux d’isolation.
|
@endif
@endif
{{-- fin version 6 --}}
{{-- version 7 --}}
@if ($rapport['version'] == 7)
DOCUMENTS MISE A LA DISPOSITION DU BÉNÉFICIAIRE
@if ($rapport['preuve_devis'] == 1 && $rapport['preuve_facture'] == 1 && $rapport['cadre_distribution'] == 1 && $rapport['preuve_marques'] == 'conforme' && $rapport['declaration_beneficiaire'] == '0' && $rapport['organismes_coordination'] == 'conforme')
@else
@endif
Satisfaisant
@if ($rapport['preuve_devis'] == 0 || $rapport['preuve_facture'] == 0 || $rapport['cadre_distribution'] == 0 || $rapport['preuve_marques'] == 'non_conforme' || $rapport['declaration_beneficiaire'] == '1')
@else
@endif
Non Satisfaisant
@if ($rapport['declaration_beneficiaire'] == '1')
@else
@endif
Le bénéficiaire a déclaré par écrit ne jamais
avoir
reçu
de la part du professionnel : le devis,
et/ou la facture, et/ou
le cadre de contribution
|
Référence |
Présenté |
Non présenté |
Devis
|
{{ $rapport['reference_devis'] }}
|
@if ($rapport['preuve_devis'] == 1)
X
@endif
|
@if ($rapport['preuve_devis'] == 0)
X
@endif
|
Facture
|
{{ $rapport['reference_facture'] }}
|
@if ($rapport['preuve_facture'] == 1)
X
@endif
|
@if ($rapport['preuve_facture'] == 0)
X
@endif
|
Cadre de contribution
|
{{ $rapport['reference_cadre'] }}
|
@if ($rapport['cadre_distribution'] == 1)
X
@endif
|
@if ($rapport['cadre_distribution'] == 0)
X
@endif
|
A défaut, la preuve de réalisation de
l’opération mentionne la mise en place d’un
matériau d’isolation en plancher bas avec ses marque et référence et la surface de
matériau installée ainsi que la date de la visite préalable par le professionnel et elle
est complétée par un document issu du fabricant ou d’un organisme établi dans
l'Espace économique européen et accrédité selon la norme NF EN ISO/IEC 17065
par le Comité français d'accréditation (COFRAC) ou tout autre organisme
d'accréditation signataire de l'accord européen multilatéral pertinent pris dans le
cadre de la coordination européenne des organismes d'accréditation
|
@if ($rapport['organismes_coordination'] == 'conforme')
X
@endif
Oui
|
@if ($rapport['organismes_coordination'] == 'non_conforme')
X
@endif
Non
|
CONSTAT SUR LA RÉALISATION DES TRAVAUX
La zone de travaux est accessible et les
travaux ont été réalisés
|
@if ($rapport['travaux_plancher'] == 'conforme')
X
@endif
|
La zone de travaux est accessible et
manifestement les travaux n’ont pas été réalisés.
|
@if ($rapport['manifestement_plancher'] == 'conforme')
X
@endif
|
Le bénéficiaire n’a pas connaissance de la
réalisation de travaux et l’a attesté par écrit
|
@if ($rapport['connaissance_plancher'] == 'conforme')
X
@endif
|
@endif
@if ($rapport['version'] == 7)
@include('pdf.templates_pdf.rapports.page_heading')
DESCRIPTION DE LA SITUATION AYANT CONDUIT AU CLASSEMENT NON
VÉRIFIABLE DE LA
VÉRIFICATION
Non accessible : l’inspecteur n’a pu accéder
aux volumes isolés dans des conditions normales de sécurité
|
@if ($rapport['volumes_accessible'] == '1')
X
@endif
|
Non accessible : L’occupant du bâtiment objet
de l’inspection est absent
|
@if ($rapport['objet_accessible'] == '1')
X
@endif
|
Non accessible : L’accès au bâtiment objet de
l’inspection a été refusé
|
@if ($rapport['inspection_accessible'] == '1')
X
@endif
|
Non visible : l’inspecteur ne peut visualiser
sans démontage ni sondage destructif ou n’a pas de visibilité depuis le point
d’accès sécurisé.
|
@if ($rapport['inspection_visualiser'] == '1')
X
@endif
|
@endif
{{-- fin version 7 --}}
{{-- version 6 --}}
@if ($rapport['version'] <= 6)
@include('pdf.templates_pdf.rapports.page_heading')
CONSTAT SUR LES CARACTERISTIQUES DES
ISOLANTS
MIS EN OEUVRE
Type de produit |
@if ($rapport['conformite_planchers'] == 'conforme' || $rapport['conformite_planchers'] == 'non_conforme')
{{ $rapport['nature_isolation_planchers'] }}
@endif
|
Marque/référence de
l'isolation
|
@if ($rapport['conformite_planchers'] == 'conforme' || $rapport['conformite_planchers'] == 'non_conforme')
{{ strtoupper($rapport['marque_isolation_planchers']) }}
@endif
|
Epaisseur de l'isolation
(mm)
|
@if ($rapport['conformite_planchers'] == 'conforme' || $rapport['conformite_planchers'] == 'non_conforme')
{{ $rapport['epaisseur_isolation_planchers'] }}
@endif
|
Résistance thermique
(m2.K/W)
|
@if ($rapport['conformite_planchers'] == 'conforme' || $rapport['conformite_planchers'] == 'non_conforme')
{{ $rapport['resistance_thermique_planchers'] }}
@endif
|
@if ($rapport['version'] >= 3)
@if ($rapport['version'] < 6)
Mise en oeuvre de l'isolant garantissant une tenue dans le temps
@endif
@if ($rapport['version'] >= 6)
Mise en oeuvre de l'isolant garantissant une tenue dans le temps
@endif
|
@if ($rapport['conformite_planchers'] == 'conforme' || $rapport['conformite_planchers'] == 'non_conforme')
{{-- {{ $rapport['tenue_temps_planchers'] ?? $rapport['tenue_temps'] }} --}}
{{ $rapport['tenue_temps_planchers'] ?? 'Sans objet' }}
@endif
|
@endif
@if ($rapport['version'] >= 3)
@if ($rapport['version'] < 6)
Continuité de
l'isolement sans
morcellement inexplicable, coffrage des points particuliers
@endif
@if ($rapport['version'] >= 6)
Continuité de
l'isolement sans
morcellement inexplicable, coffrage des points particuliers
@endif
|
@if ($rapport['conformite_planchers'] == 'conforme' || $rapport['conformite_planchers'] == 'non_conforme')
{{ $rapport['continuite'] }}
@endif
|
@endif
Observations |
@if ($rapport['conformite_planchers'] == 'conforme' || $rapport['conformite_planchers'] == 'non_conforme' || $rapport['conformite_planchers'] == 'non_verifiable')
@if (!empty($rapport['observations_planchers']))
{!! nl2br($rapport['observations_planchers']) !!}
@else
@if ($rapport['conformite_planchers'] == 'sans_objet' || $rapport['conformite_planchers'] == '')
@else
Néant
@endif
@endif
@endif
|
@endif
{{-- fin version 6 --}}
{{-- version 7 --}}
@if ($rapport['version'] == 7)
@include('pdf.templates_pdf.rapports.page_heading')
CONSTAT SUR LE RESPECT DU DÉLAI MINIMAL DE SEPT JOURS
FRANCS ENTRE LA DATE
D’ACCEPTATION ET LA DATE DE RÉALISATION DES TRAVAUX
@php
$date_acceptation = str_replace('.', '-', $rapport['date_acceptation']);
$date_acceptation = str_replace(' ', '', $rapport['date_acceptation']);
$date_acceptation = str_replace('/', '-', $date_acceptation);
$date_acceptation_en = date('Y-m-d 00:00:01', strtotime($date_acceptation));
$date_acceptation = date('d/m/Y', strtotime($date_acceptation));
$date_realisation = str_replace('.', '-', $rapport['date_realisation']);
$date_realisation = str_replace(' ', '', $rapport['date_realisation']);
$date_realisation = str_replace('/', '-', $date_realisation);
$date_realisation_en = date('Y-m-d 00:00:01', strtotime($date_realisation));
$date_realisation = date('d/m/Y', strtotime($date_realisation));
@endphp
@if (strtotime($date_acceptation_en) < strtotime('2020-09-01 00:00:01'))
X
@endif
Sans objet (Opération engagée avant le
1er septembre 2020)
@if (strtotime($date_acceptation_en) >= strtotime('2020-09-01 00:00:01'))
X
@endif
Opération engagée après le 1er septembre
2020
Date d'acceptation du devis : @if (!empty($date_acceptation) && $date_acceptation_en != '1970-01-01 00:00:01')
{{ $date_acceptation }}
@endif
Date de réalisation des travaux : @if (!empty($date_realisation) && $date_realisation_en != '1970-01-01 00:00:01')
{{ $date_realisation }}
@endif
@if (!empty($date_realisation) && !empty($date_acceptation) && $date_acceptation_en != '1970-01-01 00:00:01' && $date_realisation_en != '1970-01-01 00:00:01' && strtotime($date_realisation_en) >= strtotime('2020-09-01 00:00:01'))
Respect du délai minimal des 7 jours :
@if (strtotime($date_realisation_en) - strtotime($date_acceptation_en) >= 604800 && (!isset($rapport['respect_delai']) || (isset($rapport['respect_delai']) && !in_array($rapport['respect_delai'], ['non_avec_piece', 'non_declaration']))))
X
@else
@endif
Satisfaisant
@if (strtotime($date_realisation_en) - strtotime($date_acceptation_en) < 604800 || (isset($rapport['respect_delai']) && in_array($rapport['respect_delai'], ['non_avec_piece', 'non_declaration'])))
X
@else
@endif
Non Satisfaisant
(Délai :
{{ ceil((strtotime($date_realisation_en) - strtotime($date_acceptation_en)) / 86400) . ' jours' }})
@endif
@if (!empty($date_realisation) && !empty($date_acceptation) && $date_acceptation_en != '1970-01-01 00:00:01' && $date_realisation_en != '1970-01-01 00:00:01' && strtotime($date_realisation_en) >= strtotime('2020-09-01 00:00:01') && strtotime($date_realisation_en) - strtotime($date_acceptation_en) < 604800)
@endif
CONSTAT SUR LES CARACTÉRISTIQUES DES ISOLANTS MIS EN OEUVRE
@php
$result = 'oui';
if ($rapport['thermique_isolant'] == 'non_conforme' || empty($rapport['thermique_isolant'])) {
$result = 'non';
}
@endphp
@if ($result == 'oui')
@else
@endif
Satisfaisant
@if ($result == 'non')
@else
@endif
Non Satisfaisant
Marque/référence de
l'isolation
|
@if ($rapport['conformite_planchers'] == 'conforme' || $rapport['conformite_planchers'] == 'non_conforme')
{{ strtoupper($rapport['marque_isolation_planchers']) }}
@endif
|
Épaisseur de l’isolant mesurée (mm)
:
|
@if ($rapport['conformite_planchers'] == 'conforme' || $rapport['conformite_planchers'] == 'non_conforme')
{{ $rapport['epaisseur_isolation_planchers'] }}
@endif
|
Résistance thermique de l’isolant supérieure
à 3 m².K/W
|
@if ($rapport['thermique_isolant'] == 'conforme')
X
@endif
Oui
|
@if ($rapport['thermique_isolant'] == 'non_conforme')
X
@endif
Non
|
CONSTAT SUR LA QUALITE DES TRAVAUX ET/OU REGLES DE L'ART
@php
$result = 'oui';
if ($rapport['conformes_facture'] == 'non_conforme' || empty($rapport['conformes_facture'])) {
$result = 'non';
}
if ($rapport['traces_absence'] == 'non_conforme' || empty($rapport['traces_absence'])) {
$result = 'non';
}
if ($rapport['poutres_projection'] == 'non_conforme' || empty($rapport['poutres_projection'])) {
$result = 'non';
}
if ($rapport['fluides_plancher'] == 'non_conforme' || empty($rapport['fluides_plancher'])) {
$result = 'non';
}
if ($rapport['points_particuliers'] == 'non_conforme' || empty($rapport['points_particuliers'])) {
$result = 'non';
}
if ($rapport['plancher_maximum'] == 'non_conforme' || empty($rapport['plancher_maximum'])) {
$result = 'non';
}
if ($rapport['chutes_pluviales'] == 'non_conforme' || empty($rapport['chutes_pluviales'])) {
$result = 'non';
}
if ($rapport['produits_combustion'] == 'non_conforme' || empty($rapport['produits_combustion'])) {
$result = 'non';
}
if ($rapport['exigences_feu'] == 'non_conforme' || empty($rapport['exigences_feu'])) {
$result = 'non';
}
if ($rapport['garages_classement'] == 'non_conforme' || empty($rapport['garages_classement'])) {
$result = 'non';
}
if ($rapport['desaffleur_irregalirite'] == 'non_conforme' || empty($rapport['desaffleur_irregalirite'])) {
$result = 'non';
}
if ($rapport['contact_infiltrations'] == 'non_conforme' || empty($rapport['contact_infiltrations'])) {
$result = 'non';
}
if ($rapport['support_panneaux'] == 'non_conforme' || empty($rapport['support_panneaux'])) {
$result = 'non';
}
if ($rapport['bord_panneaux'] == 'non_conforme' || empty($rapport['bord_panneaux'])) {
$result = 'non';
}
if ($rapport['angles_panneaux'] == 'non_conforme' || empty($rapport['angles_panneaux'])) {
$result = 'non';
}
if ($rapport['morcellement_explicable'] == 'non_conforme' || empty($rapport['morcellement_explicable'])) {
$result = 'non';
}
if ($rapport['vapeur_respecter'] == 'non_conforme' || empty($rapport['vapeur_respecter'])) {
$result = 'non';
}
if ($rapport['membrane_plancher'] == 'non_conforme' || empty($rapport['membrane_plancher'])) {
$result = 'non';
}
@endphp
@if ($result == 'oui')
@else
@endif
Satisfaisant
@if ($result == 'non')
@else
@endif
Non Satisfaisant
ISOLATION PAR PANNEAUX RAPPORTES OU PAR ISOLANT PROJETÉ
|
Oui
|
Non
|
Sans Objet
|
|
GENERALITES |
|
Les caractéristiques des matériaux
installés sont conformes à la
preuve de réalisation (facture) : isolant, finition, performances...
|
@if ($rapport['conformes_facture'] == 'conforme')
X
@endif
|
@if ($rapport['conformes_facture'] == 'non_conforme')
X
@endif
|
|
|
Absence de traces d’humidité sur
l’isolant
|
@if ($rapport['traces_absence'] == 'conforme')
X
@endif
|
@if ($rapport['traces_absence'] == 'non_conforme')
X
@endif
|
|
|
Traitement des détails
|
|
Au niveau des retombées de poutres
béton ou métal : projection ou
isolant fixé mécaniquement sur les 3 côtés
|
@if ($rapport['poutres_projection'] == 'conforme')
X
@endif
|
@if ($rapport['poutres_projection'] == 'non_conforme')
X
@endif
|
@if ($rapport['poutres_projection'] == 'sans_objet')
X
@endif
|
|
Les passages de réseaux de fluides
existants (hors réseau électrique)
présents en sous-face du plancher, ont été déportés.
|
@if ($rapport['fluides_plancher'] == 'conforme')
X
@endif
|
@if ($rapport['fluides_plancher'] == 'non_conforme')
X
@endif
|
@if ($rapport['fluides_plancher'] == 'sans_objet')
X
@endif
|
|
@include('pdf.templates_pdf.rapports.page_heading')
|
Oui
|
Non
|
Sans Objet
|
|
Les points particuliers (boîtiers
électriques, gaines, tuyaux, poutres)
ont été traités par coffrage et protection par un isolant
|
@if ($rapport['points_particuliers'] == 'conforme')
X
@endif
|
@if ($rapport['points_particuliers'] == 'non_conforme')
X
@endif
|
@if ($rapport['points_particuliers'] == 'sans_objet')
X
@endif
|
|
Les réseaux électriques présents en
sous-face du plancher n’ont pas
été déportés mais un écart maximum de 5 cm pour les points
lumineux protégés (Hublot, globe ou coque) a été respecté
|
@if ($rapport['plancher_maximum'] == 'conforme')
X
@endif
|
@if ($rapport['plancher_maximum'] == 'non_conforme')
X
@endif
|
@if ($rapport['plancher_maximum'] == 'sans_objet')
X
@endif
|
|
Étanchéité à l'air |
|
Étanchéité à l'air assurée autour de chaque
pénétration (réseau
chauffage, électricité, chutes eaux pluviales / eaux usées, puisage
d’eau par des robinets)
|
@if ($rapport['chutes_pluviales'] == 'conforme')
X
@endif
|
@if ($rapport['chutes_pluviales'] == 'non_conforme')
X
@endif
|
@if ($rapport['chutes_pluviales'] == 'sans_objet')
X
@endif
|
|
Sécurité Incendie |
|
Les distances de sécurité vis-à-vis des
conduits d’évacuation des
produits de combustion sont respectées
|
@if ($rapport['produits_combustion'] == 'conforme')
X
@endif
|
@if ($rapport['produits_combustion'] == 'non_conforme')
X
@endif
|
@if ($rapport['produits_combustion'] == 'sans_objet')
X
@endif
|
|
Le choix de l'isolant respecte les
exigences de protection contre
le feu
|
@if ($rapport['exigences_feu'] == 'conforme')
X
@endif
|
@if ($rapport['exigences_feu'] == 'non_conforme')
X
@endif
|
|
|
En cas de mise en oeuvre de matériaux à
base de polystyrène
dans les caves et garages des maisons d’habitation, ces
matériaux justifient :
- D’un marquage CE
- D’un classement au feu correspondant au moins à
l’Euroclasse E
- D’un essai démontrant que le produit testé en épaisseur
40 mm (matériau EPS) ou 60 mm (matériau XPS)
conventionnelle est équivalent à l’Euroclasse D
- D’un suivi de production du fabricant de matière
première sur le volet ignifugation
|
@if ($rapport['garages_classement'] == 'conforme')
X
@endif
|
@if ($rapport['garages_classement'] == 'non_conforme')
X
@endif
|
@if ($rapport['garages_classement'] == 'sans_objet')
X
@endif
|
|
@include('pdf.templates_pdf.rapports.page_heading')
ISOLATION PAR PANNEAUX RAPPORTES UNIQUEMENT
|
Oui
|
Non
|
Sans Objet
|
|
Support de fixation |
|
Irrégularité, désaffleur < à 0,5 cm |
@if ($rapport['desaffleur_irregalirite'] == 'conforme')
X
@endif
|
@if ($rapport['desaffleur_irregalirite'] == 'non_conforme')
X
@endif
|
|
|
En sous-face d’ouvrage en contact avec l’extérieur, présence d’un
dispositif de protection contre les infiltrations d’eau (bavette, goutte
d’eau)
|
@if ($rapport['contact_infiltrations'] == 'conforme')
X
@endif
|
@if ($rapport['contact_infiltrations'] == 'non_conforme')
X
@endif
|
@if ($rapport['contact_infiltrations'] == 'sans_objet')
X
@endif
|
|
Fixation de l'isolation
|
|
Type et nombre de fixation adaptés au
support et à l'isolant (poids
des panneaux et résistance mécanique des fixations)
|
@if ($rapport['support_panneaux'] == 'conforme')
X
@endif
|
@if ($rapport['support_panneaux'] == 'non_conforme')
X
@endif
|
|
|
Mise en oeuvre de
l’isolation
|
|
Panneaux posés en contact direct avec le
support, bord à bord,
jointifs et à joints décalés
|
@if ($rapport['bord_panneaux'] == 'conforme')
X
@endif
|
@if ($rapport['bord_panneaux'] == 'non_conforme')
X
@endif
|
|
|
Au niveau des angles, découpe précise des
panneaux réalisée
|
@if ($rapport['angles_panneaux'] == 'conforme')
X
@endif
|
@if ($rapport['angles_panneaux'] == 'non_conforme')
X
@endif
|
|
|
Absence de morcellement explicable de
l’isolant
|
@if ($rapport['morcellement_explicable'] == 'conforme')
X
@endif
|
@if ($rapport['morcellement_explicable'] == 'non_conforme')
X
@endif
|
|
|
Si plancher bas en bois, l'isolant est sélectionné pour respecter la
migration de la vapeur d'eau
|
@if ($rapport['vapeur_respecter'] == 'conforme')
X
@endif
|
@if ($rapport['vapeur_respecter'] == 'non_conforme')
X
@endif
|
@if ($rapport['vapeur_respecter'] == 'sans_objet')
X
@endif
|
|
Si plancher bas en bois, une membrane pare-vapeur est
correctement mise en place sur la totalité du plancher du côté
chaud
|
@if ($rapport['membrane_plancher'] == 'conforme')
X
@endif
|
@if ($rapport['membrane_plancher'] == 'non_conforme')
X
@endif
|
@if ($rapport['membrane_plancher'] == 'sans_objet')
X
@endif
|
|
@endif
{{-- fin version 7 --}}
{{-- version 6 --}}
@if ($rapport['version'] <= 6)
@include('pdf.templates_pdf.rapports.page_heading')
CONSTAT SUR LA QUALITE DES TRAVAUX
REALISES
@if ($rapport['amenagements_necessaires_planchers'] == 'Satisfaisant' && $rapport['conformite_planchers'] != 'non_verifiable')
X
@else
@endif
Satisfaisant
@if (in_array($rapport['amenagements_necessaires_planchers'], ['Non satisfaisant', 'Non Satisfaisant']) && $rapport['conformite_planchers'] != 'non_verifiable')
X
@else
@endif
Non Satisfaisant
@if ($rapport['conformite_planchers'] == 'non_verifiable' || $rapport['amenagements_necessaires_planchers'] == 'non_verifiable')
X
@else
@endif
Non vérifiable
Pare-vapeur |
{{ $format[$rapport['pare_vapeur_planchers']] }}
|
@if ($rapport['charte_cdp'] == 1)
Répartition homogene de
l'isolant
|
Satisfaisant
|
Piges ou repérage de
hauteur
|
Sans Objet, Isolation de planchers bas
|
Capot de protection
autour des
éclairages encastrés
|
Sans Objet, Isolation de planchers bas
|
Réhausse trappe |
Sans Objet, Isolation de planchers bas
|
Ecart au feu conduit de
fumée
|
Sans Objet, Isolation de planchers bas
|
@endif
@if ($rapport['version'] >= 3)
Environnement |
Traces d'humidité |
{{ $format[$rapport['humidite_planchers']] }}
|
@endif
Observations |
@if (!empty($rapport['obs_travaux_planchers']))
{!! nl2br($rapport['obs_travaux_planchers']) !!}
@else
Néant
@endif
|
COMMENTAIRE GENERAL
OBSERVATIONS |
@if (!empty($rapport['remarques_planchers']))
{!! nl2br($rapport['remarques_planchers']) !!}
@else
Néant
@endif
|
@endif
{{-- fin version 6 --}}
{{-- version 6 --}}
@if ($rapport['version'] <= 6)
@include('pdf.templates_pdf.rapports.page_heading')
CONSTAT SUR LA SURFACE ISOLEE
@if ($rapport['version'] < 3)
Surface m2 prévue |
@endif
@if ($rapport['version'] >= 3)
Surface m2 déclarée sur
la facture
|
@endif
{{ $rapport['surface_prevue_planchers'] }}
|
@if ($rapport['version'] < 3)
Surface m2 réalisée |
@endif
@if ($rapport['version'] >= 3)
Surface m2 mesurée |
@endif
{{ $rapport['surface_realisee_planchers'] }} |
Ecart entre surface réalisée
et
surface
mesurée
|
{{ $rapport['surface_realisee_planchers'] - $rapport['surface_prevue_planchers'] }}
({{ round((($rapport['surface_realisee_planchers'] - $rapport['surface_prevue_planchers']) /$rapport['surface_realisee_planchers']) *100) . '%' }}
)
|
Condition de réalisation de la mesure :
@if (strpos($rapport['observations_surface_planchers'], 'mesure de la surface isolée') == false)
X
@endif
La mesure de la surface isolée a été réalisée depuis les locaux ou les
travaux ont été réalisés
@if (strpos($rapport['observations_surface_planchers'], 'mesure de la surface isolée') !== false)
X
@endif
La mesure de la surface isolée a été réalisée depuis l'extérieur des
locaux où les travaux ont été réalisés
Commentaires |
@if (!empty($rapport['observations_surface_planchers']))
{!! nl2br($rapport['observations_surface_planchers']) !!}
@else
Néant
@endif
|
@endif
{{-- fin version 6 --}}
{{-- version 7 --}}
@if ($rapport['version'] == 7)
@include('pdf.templates_pdf.rapports.page_heading')
CONSTAT SUR LA SURFACE ISOLEE DE
L'ISOLANT POSE
Surface de l’isolant posé en m²
déclarée sur la facture
|
{{ $rapport['surface_prevue_planchers'] }}
|
Surface 1 de l’isolant posé en m²
mesuré de plancher bas |
{{ $rapport['surface_realisee_planchers'] }} |
Surface 2 de l’isolant posé en m²
de retombée des poutres et des murs périphériques donnant sur
l’extérieur et de refend |
{{ $rapport['surface_poutres'] }}
|
Total Surface 1 + Surface 2 = valeur mesurée de l’isolant posé
|
{{ $rapport['surface_realisee_planchers'] + $rapport['surface_poutres'] }}
|
Ecart entre surface réalisée
et
surface
mesurée
|
{{ $rapport['surface_realisee_planchers'] - $rapport['surface_prevue_planchers'] }}
({{ round((($rapport['surface_realisee_planchers'] - $rapport['surface_prevue_planchers']) /$rapport['surface_realisee_planchers']) *100) . '%' }}
)
|
Condition de réalisation de la mesure :
@if (strpos($rapport['observations_surface_planchers'], 'mesure de la surface isolée') == false)
X
@endif
La mesure de la surface isolée a été réalisée depuis les locaux ou les
travaux ont été réalisés
@if (strpos($rapport['observations_surface_planchers'], 'mesure de la surface isolée') !== false)
X
@endif
La mesure de la surface isolée a été réalisée depuis l'extérieur des
locaux où les travaux ont été réalisés
@endif
{{-- fin version 7 --}}
@endif