2019-12-15 22:09:23 +01:00
|
|
|
|
require 'prawn/measurement_extensions'
|
|
|
|
|
|
2021-04-02 15:01:45 +02:00
|
|
|
|
def default_margin
|
|
|
|
|
10
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def maybe_start_new_page(pdf, size)
|
|
|
|
|
if pdf.cursor < size + default_margin
|
|
|
|
|
pdf.start_new_page
|
2019-12-15 22:09:23 +01:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2023-04-25 18:36:49 +02:00
|
|
|
|
def clean_string(str)
|
|
|
|
|
str.tr(' ', ' ') # replace non breaking space, which are invalid in pdf
|
|
|
|
|
end
|
|
|
|
|
|
2021-04-02 15:01:45 +02:00
|
|
|
|
def text_box(pdf, text, x, width)
|
|
|
|
|
box = ::Prawn::Text::Box.new(text.to_s,
|
|
|
|
|
document: pdf,
|
|
|
|
|
width: width,
|
|
|
|
|
overflow: :expand,
|
|
|
|
|
at: [x, pdf.cursor])
|
|
|
|
|
|
2020-07-01 03:09:38 +02:00
|
|
|
|
box.render
|
|
|
|
|
box.height
|
|
|
|
|
end
|
|
|
|
|
|
2021-04-02 15:01:45 +02:00
|
|
|
|
def format_in_2_lines(pdf, label, text)
|
|
|
|
|
min_height = [
|
|
|
|
|
label.present? ? pdf.height_of_formatted([{ text: label, style: :bold, size: 12 }]) : nil,
|
|
|
|
|
text.present? ? pdf.height_of_formatted([{ text: text }]) : nil
|
|
|
|
|
].compact.sum
|
|
|
|
|
maybe_start_new_page(pdf, min_height)
|
2019-12-15 22:09:23 +01:00
|
|
|
|
|
2021-04-02 15:01:45 +02:00
|
|
|
|
pdf.pad_bottom(2) do
|
2022-08-31 11:23:25 +02:00
|
|
|
|
pdf.font 'marianne', style: :bold, size: 12 do
|
2021-04-02 15:01:45 +02:00
|
|
|
|
pdf.text label
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
pdf.pad_bottom(default_margin) do
|
|
|
|
|
pdf.text text
|
2019-12-15 22:09:23 +01:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2021-04-02 15:01:45 +02:00
|
|
|
|
def format_in_2_columns(pdf, label, text)
|
|
|
|
|
min_height = [
|
|
|
|
|
label.present? ? pdf.height_of_formatted([{ text: label }]) : nil,
|
|
|
|
|
text.present? ? pdf.height_of_formatted([{ text: text }]) : nil
|
|
|
|
|
].compact.max
|
|
|
|
|
maybe_start_new_page(pdf, min_height)
|
|
|
|
|
|
|
|
|
|
pdf.pad_bottom(default_margin) do
|
|
|
|
|
height = [
|
|
|
|
|
text_box(pdf, label, 0, 150),
|
|
|
|
|
text_box(pdf, ':', 150, 10),
|
|
|
|
|
text_box(pdf, text, 160, pdf.bounds.width - 160)
|
|
|
|
|
].max
|
|
|
|
|
pdf.move_down height
|
|
|
|
|
end
|
2019-12-15 22:09:23 +01:00
|
|
|
|
end
|
|
|
|
|
|
2021-04-02 15:01:45 +02:00
|
|
|
|
def add_title(pdf, title)
|
|
|
|
|
maybe_start_new_page(pdf, 100)
|
2019-12-15 22:30:25 +01:00
|
|
|
|
|
2021-04-02 15:01:45 +02:00
|
|
|
|
pdf.pad(default_margin) do
|
|
|
|
|
pdf.font 'marianne', style: :bold, size: 20 do
|
|
|
|
|
pdf.text title
|
|
|
|
|
end
|
2019-12-15 22:30:25 +01:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2021-04-02 15:01:45 +02:00
|
|
|
|
def add_section_title(pdf, title)
|
|
|
|
|
maybe_start_new_page(pdf, 100)
|
|
|
|
|
|
|
|
|
|
pdf.pad_bottom(default_margin) do
|
|
|
|
|
pdf.font 'marianne', style: :bold, size: 14 do
|
|
|
|
|
pdf.text title
|
|
|
|
|
end
|
2019-12-15 22:30:25 +01:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2021-04-02 15:01:45 +02:00
|
|
|
|
def add_identite_individual(pdf, individual)
|
|
|
|
|
pdf.pad_bottom(default_margin) do
|
|
|
|
|
format_in_2_columns(pdf, "Civilité", individual.gender)
|
|
|
|
|
format_in_2_columns(pdf, "Nom", individual.nom)
|
|
|
|
|
format_in_2_columns(pdf, "Prénom", individual.prenom)
|
|
|
|
|
|
|
|
|
|
if individual.birthdate.present?
|
|
|
|
|
format_in_2_columns(pdf, "Date de naissance", try_format_date(individual.birthdate))
|
|
|
|
|
end
|
2020-05-06 17:09:48 +02:00
|
|
|
|
end
|
2021-04-02 15:01:45 +02:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def add_identite_etablissement(pdf, etablissement)
|
|
|
|
|
pdf.pad_bottom(default_margin) do
|
|
|
|
|
format_in_2_columns(pdf, "SIRET", etablissement.siret)
|
2022-09-05 09:54:22 +02:00
|
|
|
|
format_in_2_columns(pdf, "SIRET du siège social", etablissement.entreprise.siret_siege_social) if etablissement.entreprise.siret_siege_social.present?
|
2021-04-02 15:01:45 +02:00
|
|
|
|
format_in_2_columns(pdf, "Dénomination", raison_sociale_or_name(etablissement))
|
|
|
|
|
format_in_2_columns(pdf, "Forme juridique ", etablissement.entreprise_forme_juridique)
|
|
|
|
|
|
|
|
|
|
if etablissement.entreprise_capital_social.present?
|
|
|
|
|
format_in_2_columns(pdf, "Capital social ", pretty_currency(etablissement.entreprise_capital_social))
|
|
|
|
|
end
|
|
|
|
|
|
2022-09-05 09:54:22 +02:00
|
|
|
|
format_in_2_columns(pdf, "Libellé NAF ", etablissement.libelle_naf)
|
|
|
|
|
format_in_2_columns(pdf, "Code NAF ", etablissement.naf)
|
|
|
|
|
format_in_2_columns(pdf, "Date de création ", try_format_date(etablissement.entreprise.date_creation))
|
2021-04-02 15:01:45 +02:00
|
|
|
|
|
2022-07-18 12:30:09 +02:00
|
|
|
|
if etablissement.entreprise_etat_administratif.present?
|
|
|
|
|
format_in_2_columns(pdf, "État administratif", humanized_entreprise_etat_administratif(etablissement))
|
|
|
|
|
end
|
|
|
|
|
|
2021-04-02 15:01:45 +02:00
|
|
|
|
if @include_infos_administration
|
|
|
|
|
if etablissement.entreprise_effectif_mensuel.present?
|
|
|
|
|
format_in_2_columns(pdf, "Effectif mensuel #{try_format_mois_effectif(etablissement)} (URSSAF) ", number_with_delimiter(etablissement.entreprise_effectif_mensuel.to_s))
|
|
|
|
|
end
|
|
|
|
|
if etablissement.entreprise_effectif_annuel_annee.present?
|
|
|
|
|
format_in_2_columns(pdf, "Effectif moyen annuel #{etablissement.entreprise_effectif_annuel_annee} (URSSAF) ", number_with_delimiter(etablissement.entreprise_effectif_annuel.to_s))
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
format_in_2_columns(pdf, "Effectif (ISPF) ", effectif(etablissement))
|
2022-09-05 09:54:22 +02:00
|
|
|
|
format_in_2_columns(pdf, "Code effectif ", etablissement.entreprise.code_effectif_entreprise)
|
2021-04-02 15:01:45 +02:00
|
|
|
|
if etablissement.entreprise.numero_tva_intracommunautaire.present?
|
2022-09-05 09:54:22 +02:00
|
|
|
|
format_in_2_columns(pdf, "Numéro de TVA intracommunautaire ", etablissement.entreprise.numero_tva_intracommunautaire)
|
2021-04-02 15:01:45 +02:00
|
|
|
|
end
|
2022-09-05 09:54:22 +02:00
|
|
|
|
format_in_2_columns(pdf, "Adresse ", etablissement.adresse)
|
2021-04-02 15:01:45 +02:00
|
|
|
|
|
|
|
|
|
if etablissement.association?
|
2022-09-05 09:54:22 +02:00
|
|
|
|
format_in_2_columns(pdf, "Numéro RNA ", etablissement.association_rna)
|
|
|
|
|
format_in_2_columns(pdf, "Titre ", etablissement.association_titre)
|
|
|
|
|
format_in_2_columns(pdf, "Objet ", etablissement.association_objet)
|
|
|
|
|
format_in_2_columns(pdf, "Date de création ", try_format_date(etablissement.association_date_creation))
|
|
|
|
|
format_in_2_columns(pdf, "Date de publication ", try_format_date(etablissement.association_date_publication))
|
|
|
|
|
format_in_2_columns(pdf, "Date de déclaration ", try_format_date(etablissement.association_date_declaration))
|
2021-04-02 15:01:45 +02:00
|
|
|
|
end
|
2019-12-15 22:30:25 +01:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2021-04-02 15:01:45 +02:00
|
|
|
|
def add_single_champ(pdf, champ)
|
2022-07-21 13:05:30 +02:00
|
|
|
|
tdc = champ.type_de_champ
|
2023-01-23 11:26:30 +01:00
|
|
|
|
return if champ.conditional? && !champ.visible?
|
2022-04-07 15:26:24 +02:00
|
|
|
|
|
2019-12-15 22:09:23 +01:00
|
|
|
|
case champ.type
|
2021-04-02 15:01:45 +02:00
|
|
|
|
when 'Champs::PieceJustificativeChamp', 'Champs::TitreIdentiteChamp'
|
2019-12-15 22:09:23 +01:00
|
|
|
|
return
|
|
|
|
|
when 'Champs::HeaderSectionChamp'
|
2023-02-20 18:48:20 +01:00
|
|
|
|
libelle = if @dossier.auto_numbering_section_headers_for?(champ)
|
|
|
|
|
"#{@dossier.index_for_section_header(champ)}. #{champ.libelle}"
|
|
|
|
|
else
|
|
|
|
|
champ.libelle
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
add_section_title(pdf, libelle)
|
2019-12-16 11:43:44 +01:00
|
|
|
|
when 'Champs::ExplicationChamp'
|
2022-11-24 18:18:24 +01:00
|
|
|
|
format_in_2_lines(pdf, tdc.libelle, strip_tags(tdc.description))
|
2019-12-15 22:09:23 +01:00
|
|
|
|
when 'Champs::CarteChamp'
|
2023-03-15 17:55:12 +01:00
|
|
|
|
pdf.pad_bottom(4) do
|
|
|
|
|
pdf.font 'marianne', style: :bold, size: 12 do
|
|
|
|
|
pdf.text tdc.libelle
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
pdf.indent(default_margin) do
|
|
|
|
|
champ.geo_areas.each do |area|
|
2023-04-25 18:36:49 +02:00
|
|
|
|
pdf.text "- #{clean_string(area.label)}"
|
2023-03-15 17:55:12 +01:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
2019-12-15 22:09:23 +01:00
|
|
|
|
when 'Champs::SiretChamp'
|
2021-04-02 15:01:45 +02:00
|
|
|
|
pdf.font 'marianne', style: :bold do
|
2022-04-07 15:26:24 +02:00
|
|
|
|
pdf.text tdc.libelle
|
2019-12-15 22:09:23 +01:00
|
|
|
|
end
|
2021-04-02 15:01:45 +02:00
|
|
|
|
if champ.etablissement.present?
|
|
|
|
|
add_identite_etablissement(pdf, champ.etablissement)
|
|
|
|
|
end
|
2020-02-06 16:54:38 +01:00
|
|
|
|
when 'Champs::NumberChamp'
|
2023-04-04 14:54:29 +02:00
|
|
|
|
value = champ.blank? ? 'Non communiqué' : number_with_delimiter(champ.to_s)
|
2022-04-07 15:26:24 +02:00
|
|
|
|
format_in_2_lines(pdf, tdc.libelle, value)
|
2022-12-15 13:57:27 +01:00
|
|
|
|
when 'Champs::CommuneChamp'
|
2023-04-04 14:54:29 +02:00
|
|
|
|
value = champ.blank? ? 'Non communiqué' : champ.to_s
|
2022-12-15 13:57:27 +01:00
|
|
|
|
format_in_2_lines(pdf, tdc.libelle, value)
|
2023-04-04 14:54:29 +02:00
|
|
|
|
pdf.text "Département : #{champ.departement_code_and_name}" if champ.departement?
|
2019-12-15 22:09:23 +01:00
|
|
|
|
else
|
2023-04-04 14:54:29 +02:00
|
|
|
|
value = champ.blank? ? 'Non communiqué' : champ.to_s
|
2022-04-07 15:26:24 +02:00
|
|
|
|
format_in_2_lines(pdf, tdc.libelle, value)
|
2019-12-15 22:09:23 +01:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def add_champs(pdf, champs)
|
|
|
|
|
champs.each do |champ|
|
|
|
|
|
if champ.type == 'Champs::RepetitionChamp'
|
|
|
|
|
champ.rows.each do |row|
|
|
|
|
|
row.each do |inner_champ|
|
2021-04-02 15:01:45 +02:00
|
|
|
|
add_single_champ(pdf, inner_champ)
|
2019-12-15 22:09:23 +01:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
else
|
2021-04-02 15:01:45 +02:00
|
|
|
|
add_single_champ(pdf, champ)
|
2019-12-15 22:09:23 +01:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def add_message(pdf, message)
|
|
|
|
|
sender = message.redacted_email
|
|
|
|
|
if message.sent_by_system?
|
|
|
|
|
sender = 'Email automatique'
|
|
|
|
|
elsif message.sent_by?(@dossier.user)
|
2021-05-01 12:20:24 +02:00
|
|
|
|
sender = @dossier.user_email_for(:display)
|
2019-12-15 22:09:23 +01:00
|
|
|
|
end
|
|
|
|
|
|
2021-04-02 15:01:45 +02:00
|
|
|
|
format_in_2_lines(pdf, "#{sender}, #{try_format_date(message.created_at)}",
|
|
|
|
|
ActionView::Base.full_sanitizer.sanitize(message.body))
|
2019-12-15 22:09:23 +01:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def add_avis(pdf, avis)
|
2021-04-02 15:01:45 +02:00
|
|
|
|
format_in_2_lines(pdf, "Avis de #{avis.email_to_display}#{avis.confidentiel? ? ' (confidentiel)' : ''}",
|
|
|
|
|
avis.answer || 'En attente de réponse')
|
2023-03-16 11:07:26 +01:00
|
|
|
|
|
2023-03-22 11:56:52 +01:00
|
|
|
|
if [true, false].include? avis.question_answer
|
2023-03-16 11:07:26 +01:00
|
|
|
|
format_in_2_columns(pdf, "Réponse oui/non ", t("question_answer.#{avis.question_answer}", scope: 'helpers.label'))
|
|
|
|
|
end
|
2021-04-02 15:01:45 +02:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def add_etat_dossier(pdf, dossier)
|
|
|
|
|
pdf.pad_bottom(default_margin) do
|
2023-04-25 18:36:49 +02:00
|
|
|
|
pdf.text "Ce dossier est <b>#{clean_string(dossier_display_state(dossier, lower: true))}</b>.", inline_format: true
|
2019-12-15 22:09:23 +01:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2019-12-16 14:50:48 +01:00
|
|
|
|
def add_etats_dossier(pdf, dossier)
|
2021-12-06 15:49:17 +01:00
|
|
|
|
if dossier.depose_at.present?
|
|
|
|
|
format_in_2_columns(pdf, "Déposé le", try_format_date(dossier.depose_at))
|
2019-12-16 14:50:48 +01:00
|
|
|
|
end
|
|
|
|
|
if dossier.en_instruction_at.present?
|
|
|
|
|
format_in_2_columns(pdf, "En instruction le", try_format_date(dossier.en_instruction_at))
|
|
|
|
|
end
|
2020-07-02 11:02:50 +02:00
|
|
|
|
if dossier.processed_at.present?
|
2019-12-16 14:50:48 +01:00
|
|
|
|
format_in_2_columns(pdf, "Décision le", try_format_date(dossier.processed_at))
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2019-12-15 22:09:23 +01:00
|
|
|
|
prawn_document(page_size: "A4") do |pdf|
|
2022-08-31 11:23:25 +02:00
|
|
|
|
pdf.font_families.update('marianne' => {
|
|
|
|
|
normal: Rails.root.join('lib/prawn/fonts/marianne/marianne-regular.ttf'),
|
|
|
|
|
bold: Rails.root.join('lib/prawn/fonts/marianne/marianne-bold.ttf')
|
2019-12-15 22:09:23 +01:00
|
|
|
|
})
|
2020-06-24 08:58:13 +02:00
|
|
|
|
pdf.font 'marianne'
|
2019-12-15 22:09:23 +01:00
|
|
|
|
|
2021-04-02 15:01:45 +02:00
|
|
|
|
pdf.pad_bottom(40) do
|
2022-03-28 15:10:37 +02:00
|
|
|
|
pdf.image DOSSIER_PDF_EXPORT_LOGO_SRC, width: 300, position: :center
|
2021-04-02 15:01:45 +02:00
|
|
|
|
end
|
2019-12-15 22:09:23 +01:00
|
|
|
|
|
2019-12-16 14:50:48 +01:00
|
|
|
|
format_in_2_columns(pdf, 'Dossier Nº', @dossier.id.to_s)
|
2022-07-21 13:05:30 +02:00
|
|
|
|
format_in_2_columns(pdf, 'Démarche', @dossier.procedure.libelle)
|
|
|
|
|
format_in_2_columns(pdf, 'Organisme', @dossier.procedure.organisation_name)
|
2019-12-15 22:09:23 +01:00
|
|
|
|
|
2021-04-02 15:01:45 +02:00
|
|
|
|
add_etat_dossier(pdf, @dossier)
|
|
|
|
|
|
2019-12-15 22:09:23 +01:00
|
|
|
|
if @dossier.motivation.present?
|
2021-03-23 15:04:45 +01:00
|
|
|
|
format_in_2_columns(pdf, "Motif de la décision", @dossier.motivation)
|
2019-12-15 22:09:23 +01:00
|
|
|
|
end
|
2019-12-16 14:50:48 +01:00
|
|
|
|
add_title(pdf, 'Historique')
|
|
|
|
|
add_etats_dossier(pdf, @dossier)
|
2019-12-15 22:09:23 +01:00
|
|
|
|
|
|
|
|
|
add_title(pdf, "Identité du demandeur")
|
|
|
|
|
|
2020-11-02 14:58:35 +01:00
|
|
|
|
if @dossier.france_connect_information.present?
|
2022-09-14 16:20:05 +02:00
|
|
|
|
format_in_2_columns(pdf, 'Informations FranceConnect', france_connect_informations(@dossier.france_connect_information))
|
2020-11-02 11:37:21 +01:00
|
|
|
|
end
|
2021-04-02 15:01:45 +02:00
|
|
|
|
|
2021-05-01 12:20:24 +02:00
|
|
|
|
format_in_2_columns(pdf, "Email", @dossier.user_email_for(:display))
|
2021-04-02 15:01:45 +02:00
|
|
|
|
|
|
|
|
|
if @dossier.individual.present?
|
|
|
|
|
add_identite_individual(pdf, @dossier.individual)
|
|
|
|
|
elsif @dossier.etablissement.present?
|
|
|
|
|
add_identite_etablissement(pdf, @dossier.etablissement)
|
|
|
|
|
end
|
2019-12-15 22:09:23 +01:00
|
|
|
|
|
|
|
|
|
add_title(pdf, 'Formulaire')
|
2022-11-10 22:21:14 +01:00
|
|
|
|
add_champs(pdf, @dossier.champs_public)
|
2019-12-15 22:09:23 +01:00
|
|
|
|
|
2021-04-02 15:01:45 +02:00
|
|
|
|
if @include_infos_administration && @dossier.champs_private.present?
|
2019-12-15 22:09:23 +01:00
|
|
|
|
add_title(pdf, "Annotations privées")
|
|
|
|
|
add_champs(pdf, @dossier.champs_private)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
if @include_infos_administration && @dossier.avis.present?
|
|
|
|
|
add_title(pdf, "Avis")
|
|
|
|
|
@dossier.avis.each do |avis|
|
|
|
|
|
add_avis(pdf, avis)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2023-03-28 16:51:35 +02:00
|
|
|
|
if @include_avis_for_expert && @dossier.avis.present?
|
2023-03-28 16:56:02 +02:00
|
|
|
|
add_title(pdf, "Avis")
|
|
|
|
|
@dossier.avis_for_expert(@include_avis_for_expert).each do |avis|
|
|
|
|
|
add_avis(pdf, avis)
|
|
|
|
|
end
|
2023-03-28 16:51:35 +02:00
|
|
|
|
end
|
|
|
|
|
|
2021-04-02 15:01:45 +02:00
|
|
|
|
if @dossier.commentaires.present?
|
|
|
|
|
add_title(pdf, 'Messagerie')
|
|
|
|
|
@dossier.commentaires.each do |commentaire|
|
|
|
|
|
add_message(pdf, commentaire)
|
|
|
|
|
end
|
2019-12-15 22:09:23 +01:00
|
|
|
|
end
|
2021-04-02 15:01:45 +02:00
|
|
|
|
|
|
|
|
|
pdf.number_pages '<page> / <total>', at: [pdf.bounds.right - 80, pdf.bounds.bottom], align: :right, size: 10
|
2019-12-15 22:09:23 +01:00
|
|
|
|
end
|