production/Societes/envoyx/Tarifs/Controleur/Avenantchangementeffet.php
2026-03-04 01:48:40 +00:00

31 lines
828 B
PHP
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
$ht0=8;
$ht=6;
$tp = 9;
require_once 'Enteteavenant.php';
$corpsavenant = $this->editionpieceavenant_societe->get_edition_avenant_changement_effet();
$pdf->Ln(10);
$pdf->SetFont('Arial','BIU', $tp);
$pdf->Cell(0,$ht0,convertirc(_("CHANGEMENT DE PRISE D'EFFET")),0,1,'C',false);
$pdf->Ln(10);
$pdf->SetFont('Arial','', $tp);
$text = convertirc("A la demande du souscripteur et dun commun accord entre les parties, il est convenu que la date de prise deffet initialement prévu au " . dateLang($corpsavenant['dateEffetInitial']) . " est reportée au " . dateLang($corpsavenant['dateEffet']) . "
Il nest rien changé ni dérogé aux autres clauses et conditions du contrat.");
$pdf->MultiCell(0, $ht, $text);
$pdf->Ln(10);
require_once 'Piedavenant.php';
?>