This commit is contained in:
Anthony Berton 2021-08-09 17:16:48 +02:00
parent 6b1fc48bd0
commit 41457d2adb
3 changed files with 38 additions and 13 deletions

View File

@ -103,6 +103,25 @@ if ($conf->use_javascript_ajax) {
} }
print '</td></tr>'; print '</td></tr>';
print '<tr class="oddeven"><td>'.$langs->trans("PDF_NO_SENDER_FRAME");
print '</td><td>';
if ($conf->use_javascript_ajax) {
print ajax_constantonoff('PDF_NO_SENDER_FRAME');
} else {
$arrval = array('0' => $langs->trans("No"), '1' => $langs->trans("Yes"));
print $form->selectarray("PDF_NO_SENDER_FRAME", $arrval, $conf->global->PDF_NO_SENDER_FRAME);
}
print '</td></tr>';
print '<tr class="oddeven"><td>'.$langs->trans("PDF_NO_RECIPENT_FRAME");
print '</td><td>';
if ($conf->use_javascript_ajax) {
print ajax_constantonoff('PDF_NO_RECIPENT_FRAME');
} else {
$arrval = array('0' => $langs->trans("No"), '1' => $langs->trans("Yes"));
print $form->selectarray("PDF_NO_RECIPENT_FRAME", $arrval, $conf->global->PDF_NO_RECIPENT_FRAME);
}
print '</td></tr>';
/* /*
print '<tr class="oddeven"><td>'.$langs->trans("MAIN_PDF_PROPAL_USE_ELECTRONIC_SIGNING").'</td><td>'; print '<tr class="oddeven"><td>'.$langs->trans("MAIN_PDF_PROPAL_USE_ELECTRONIC_SIGNING").'</td><td>';
if ($conf->use_javascript_ajax) { if ($conf->use_javascript_ajax) {

View File

@ -1575,14 +1575,16 @@ class pdf_azur extends ModelePDFPropales
$hautcadre = 40; $hautcadre = 40;
// Show sender frame // Show sender frame
$pdf->SetTextColor(0, 0, 0); if (empty($conf->global->PDF_NO_SENDER_FRAME)){
$pdf->SetFont('', '', $default_font_size - 2); $pdf->SetTextColor(0, 0, 0);
$pdf->SetXY($posx, $posy - 5); $pdf->SetFont('', '', $default_font_size - 2);
$pdf->MultiCell(80, 5, $outputlangs->transnoentities("BillFrom"), 0, $ltrdirection); $pdf->SetXY($posx, $posy - 5);
$pdf->SetXY($posx, $posy); $pdf->MultiCell(80, 5, $outputlangs->transnoentities("BillFrom"), 0, $ltrdirection);
$pdf->SetFillColor(230, 230, 230); $pdf->SetXY($posx, $posy);
$pdf->MultiCell(82, $hautcadre, "", 0, 'R', 1); $pdf->SetFillColor(230, 230, 230);
$pdf->SetTextColor(0, 0, 60); $pdf->MultiCell(82, $hautcadre, "", 0, 'R', 1);
$pdf->SetTextColor(0, 0, 60);
}
// Show sender name // Show sender name
$pdf->SetXY($posx + 2, $posy + 3); $pdf->SetXY($posx + 2, $posy + 3);
@ -1628,11 +1630,13 @@ class pdf_azur extends ModelePDFPropales
} }
// Show recipient frame // Show recipient frame
$pdf->SetTextColor(0, 0, 0); if (empty($conf->global->PDF_NO_RECIPENT_FRAME)){
$pdf->SetFont('', '', $default_font_size - 2); $pdf->SetTextColor(0, 0, 0);
$pdf->SetXY($posx + 2, $posy - 5); $pdf->SetFont('', '', $default_font_size - 2);
$pdf->MultiCell($widthrecbox, 5, $outputlangs->transnoentities("BillTo"), 0, $ltrdirection); $pdf->SetXY($posx + 2, $posy - 5);
$pdf->Rect($posx, $posy, $widthrecbox, $hautcadre); $pdf->MultiCell($widthrecbox, 5, $outputlangs->transnoentities("BillTo"), 0, $ltrdirection);
$pdf->Rect($posx, $posy, $widthrecbox, $hautcadre);
}
// Show recipient name // Show recipient name
$pdf->SetXY($posx + 2, $posy + 3); $pdf->SetXY($posx + 2, $posy + 3);

View File

@ -1992,6 +1992,8 @@ MAIN_PDF_MARGIN_TOP=Top margin on PDF
MAIN_PDF_MARGIN_BOTTOM=Bottom margin on PDF MAIN_PDF_MARGIN_BOTTOM=Bottom margin on PDF
MAIN_DOCUMENTS_LOGO_HEIGHT=Height for logo on PDF MAIN_DOCUMENTS_LOGO_HEIGHT=Height for logo on PDF
MAIN_GENERATE_PROPOSALS_WITH_PICTURE=Add picture on proposal line MAIN_GENERATE_PROPOSALS_WITH_PICTURE=Add picture on proposal line
PDF_NO_SENDER_FRAME=No sender frame
PDF_NO_RECIPENT_FRAME=No recipent frame
MAIN_PDF_PROPAL_USE_ELECTRONIC_SIGNING=Add electronic sign in PDF MAIN_PDF_PROPAL_USE_ELECTRONIC_SIGNING=Add electronic sign in PDF
NothingToSetup=There is no specific setup required for this module. NothingToSetup=There is no specific setup required for this module.
SetToYesIfGroupIsComputationOfOtherGroups=Set this to yes if this group is a computation of other groups SetToYesIfGroupIsComputationOfOtherGroups=Set this to yes if this group is a computation of other groups