123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531 |
- <?php
- /* Copyright (C) 2001-2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
- * Copyright (C) 2004-2012 Laurent Destailleur <eldy@users.sourceforge.net>
- * Copyright (C) 2005-2011 Regis Houssin <regis.houssin@capnetworks.com>
- * Copyright (C) 2012-2103 Juanjo Menent <jmenent@2byte.es>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- /**
- * \file htdocs/admin/pdf.php
- * \brief Page to setup PDF options
- */
- require '../main.inc.php';
- require_once DOL_DOCUMENT_ROOT.'/core/class/html.formother.class.php';
- require_once DOL_DOCUMENT_ROOT.'/core/class/html.formadmin.class.php';
- require_once DOL_DOCUMENT_ROOT.'/core/lib/usergroups.lib.php';
- require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
- require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
- require_once DOL_DOCUMENT_ROOT.'/core/lib/pdf.lib.php';
- $langs->load("admin");
- $langs->load("languages");
- $langs->load("other");
- $langs->load("companies");
- $langs->load("products");
- $langs->load("members");
- if (! $user->admin) accessforbidden();
- $action = GETPOST('action','alpha');
- /*
- * Actions
- */
- if ($action == 'update')
- {
- dolibarr_set_const($db, "MAIN_PDF_FORMAT", $_POST["MAIN_PDF_FORMAT"],'chaine',0,'',$conf->entity);
- dolibarr_set_const($db, "MAIN_PROFID1_IN_ADDRESS", $_POST["MAIN_PROFID1_IN_ADDRESS"],'chaine',0,'',$conf->entity);
- dolibarr_set_const($db, "MAIN_PROFID2_IN_ADDRESS", $_POST["MAIN_PROFID2_IN_ADDRESS"],'chaine',0,'',$conf->entity);
- dolibarr_set_const($db, "MAIN_PROFID3_IN_ADDRESS", $_POST["MAIN_PROFID3_IN_ADDRESS"],'chaine',0,'',$conf->entity);
- dolibarr_set_const($db, "MAIN_PROFID4_IN_ADDRESS", $_POST["MAIN_PROFID4_IN_ADDRESS"],'chaine',0,'',$conf->entity);
- dolibarr_set_const($db, "MAIN_GENERATE_DOCUMENTS_WITHOUT_VAT", $_POST["MAIN_GENERATE_DOCUMENTS_WITHOUT_VAT"],'chaine',0,'',$conf->entity);
- dolibarr_set_const($db, "MAIN_TVAINTRA_NOT_IN_ADDRESS", $_POST["MAIN_TVAINTRA_NOT_IN_ADDRESS"],'chaine',0,'',$conf->entity);
- dolibarr_set_const($db, "MAIN_GENERATE_DOCUMENTS_HIDE_DETAILS", $_POST["MAIN_GENERATE_DOCUMENTS_HIDE_DETAILS"],'chaine',0,'',$conf->entity);
- dolibarr_set_const($db, "MAIN_GENERATE_DOCUMENTS_HIDE_DESC", $_POST["MAIN_GENERATE_DOCUMENTS_HIDE_DESC"],'chaine',0,'',$conf->entity);
- dolibarr_set_const($db, "MAIN_GENERATE_DOCUMENTS_HIDE_REF", $_POST["MAIN_GENERATE_DOCUMENTS_HIDE_REF"],'chaine',0,'',$conf->entity);
- header("Location: ".$_SERVER["PHP_SELF"]."?mainmenu=home&leftmenu=setup");
- exit;
- }
- if ($action == 'activate_pdfsecurity')
- {
- dolibarr_set_const($db, "PDF_SECURITY_ENCRYPTION", "1",'chaine',0,'',$conf->entity);
- header("Location: ".$_SERVER["PHP_SELF"]."?mainmenu=home&leftmenu=setup");
- exit;
- }
- else if ($action == 'disable_pdfsecurity')
- {
- dolibarr_del_const($db, "PDF_SECURITY_ENCRYPTION",$conf->entity);
- header("Location: ".$_SERVER["PHP_SELF"]."?mainmenu=home&leftmenu=setup");
- exit;
- }
- /*
- * View
- */
- $wikihelp='EN:First_setup|FR:Premiers_paramétrages|ES:Primeras_configuraciones';
- llxHeader('',$langs->trans("Setup"),$wikihelp);
- $form=new Form($db);
- $formother=new FormOther($db);
- $formadmin=new FormAdmin($db);
- print_fiche_titre($langs->trans("PDF"),'','setup');
- print $langs->trans("PDFDesc")."<br>\n";
- print "<br>\n";
- $noCountryCode = (empty($mysoc->country_code) ? true : false);
- if ($action == 'edit') // Edit
- {
- print '<form method="post" action="'.$_SERVER["PHP_SELF"].'">';
- print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
- print '<input type="hidden" name="action" value="update">';
- clearstatcache();
- // Misc options
- print_fiche_titre($langs->trans("DictionaryPaperFormat"),'','').'<br>';
- $var=true;
- print '<table summary="more" class="noborder" width="100%">';
- print '<tr class="liste_titre"><td>'.$langs->trans("Parameter").'</td><td width="200px">'.$langs->trans("Value").'</td></tr>';
- $selected=$conf->global->MAIN_PDF_FORMAT;
- if (empty($selected)) $selected=dol_getDefaultFormat();
- // Show pdf format
- $var=!$var;
- print '<tr '.$bc[$var].'><td>'.$langs->trans("DictionaryPaperFormat").'</td><td>';
- print $formadmin->select_paper_format($selected,'MAIN_PDF_FORMAT');
- print '</td></tr>';
- print '</table>';
- print '<br>';
- // Addresses
- print_fiche_titre($langs->trans("PDFAddressForging"),'','').'<br>';
- $var=true;
- print '<table summary="more" class="noborder" width="100%">';
- print '<tr class="liste_titre"><td>'.$langs->trans("Parameter").'</td><td width="200px">'.$langs->trans("Value").'</td></tr>';
- // Show prof id 1 in address into pdf
- $var=!$var;
- if (! $noCountryCode)
- {
- $pid1=$langs->transcountry("ProfId1",$mysoc->country_code);
- if ($pid1 == '-') $pid1=false;
- }
- else
- {
- $pid1 = img_warning().' <font class="error">'.$langs->trans("ErrorFieldRequired",$langs->transnoentitiesnoconv("CompanyCountry")).'</font>';
- }
- if ($pid1)
- {
- print '<tr '.$bc[$var].'><td>'.$langs->trans("ShowProfIdInAddress").' - '.$pid1.'</td><td>';
- print $form->selectyesno('MAIN_PROFID1_IN_ADDRESS',isset($conf->global->MAIN_PROFID1_IN_ADDRESS)?$conf->global->MAIN_PROFID1_IN_ADDRESS:0,1,$noCountryCode);
- print '</td></tr>';
- }
- // Show prof id 2 in address into pdf
- $var=!$var;
- if (! $noCountryCode)
- {
- $pid2=$langs->transcountry("ProfId2",$mysoc->country_code);
- if ($pid2 == '-') $pid2=false;
- }
- else
- {
- $pid2 = img_warning().' <font class="error">'.$langs->trans("ErrorFieldRequired",$langs->transnoentitiesnoconv("CompanyCountry")).'</font>';
- }
- if ($pid2)
- {
- print '<tr '.$bc[$var].'><td>'.$langs->trans("ShowProfIdInAddress").' - '.$pid2.'</td><td>';
- print $form->selectyesno('MAIN_PROFID2_IN_ADDRESS',isset($conf->global->MAIN_PROFID2_IN_ADDRESS)?$conf->global->MAIN_PROFID2_IN_ADDRESS:0,1,$noCountryCode);
- print '</td></tr>';
- }
- // Show prof id 3 in address into pdf
- $var=!$var;
- if (! $noCountryCode)
- {
- $pid3=$langs->transcountry("ProfId3",$mysoc->country_code);
- if ($pid3 == '-') $pid3=false;
- }
- else
- {
- $pid3 = img_warning().' <font class="error">'.$langs->trans("ErrorFieldRequired",$langs->transnoentitiesnoconv("CompanyCountry")).'</font>';
- }
- if ($pid3)
- {
- print '<tr '.$bc[$var].'><td>'.$langs->trans("ShowProfIdInAddress").' - '.$pid3.'</td><td>';
- print $form->selectyesno('MAIN_PROFID3_IN_ADDRESS',isset($conf->global->MAIN_PROFID3_IN_ADDRESS)?$conf->global->MAIN_PROFID3_IN_ADDRESS:0,1,$noCountryCode);
- print '</td></tr>';
- }
- // Show prof id 4 in address into pdf
- $var=!$var;
- if (! $noCountryCode)
- {
- $pid4=$langs->transcountry("ProfId4",$mysoc->country_code);
- if ($pid4 == '-') $pid4=false;
- }
- else
- {
- $pid4 = img_warning().' <font class="error">'.$langs->trans("ErrorFieldRequired",$langs->transnoentitiesnoconv("CompanyCountry")).'</font>';
- }
- if ($pid4)
- {
- print '<tr '.$bc[$var].'><td>'.$langs->trans("ShowProfIdInAddress").' - '.$pid4.'</td><td>';
- print $form->selectyesno('MAIN_PROFID4_IN_ADDRESS',isset($conf->global->MAIN_PROFID4_IN_ADDRESS)?$conf->global->MAIN_PROFID4_IN_ADDRESS:0,1,$noCountryCode);
- print '</td></tr>';
- }
- print '</table>';
- print '<br>';
- // Other
- print_fiche_titre($langs->trans("Other"),'','').'<br>';
- $var=true;
- print '<table summary="more" class="noborder" width="100%">';
- print '<tr class="liste_titre"><td>'.$langs->trans("Parameter").'</td><td width="200px">'.$langs->trans("Value").'</td></tr>';
- // Hide any PDF informations
- $var=!$var;
- print '<tr '.$bc[$var].'><td>'.$langs->trans("HideAnyVATInformationOnPDF").'</td><td>';
- print $form->selectyesno('MAIN_GENERATE_DOCUMENTS_WITHOUT_VAT',(! empty($conf->global->MAIN_GENERATE_DOCUMENTS_WITHOUT_VAT))?$conf->global->MAIN_GENERATE_DOCUMENTS_WITHOUT_VAT:0,1);
- print '</td></tr>';
- // Hide Tva Intra on adress
- $var=!$var;
- print '<tr '.$bc[$var].'><td>'.$langs->trans("ShowVATIntaInAddress").'</td><td>';
- print $form->selectyesno('MAIN_TVAINTRA_NOT_IN_ADDRESS',(! empty($conf->global->MAIN_TVAINTRA_NOT_IN_ADDRESS))?$conf->global->MAIN_TVAINTRA_NOT_IN_ADDRESS:0,1);
- print '</td></tr>';
- //Desc
- $var=!$var;
- print '<tr '.$bc[$var].'><td>'.$langs->trans("HideDescOnPDF").'</td><td>';
- print $form->selectyesno('MAIN_GENERATE_DOCUMENTS_HIDE_DESC',(! empty($conf->global->MAIN_GENERATE_DOCUMENTS_HIDE_DESC))?$conf->global->MAIN_GENERATE_DOCUMENTS_HIDE_DESC:0,1);
- print '</td></tr>';
- //Ref
- $var=!$var;
- print '<tr '.$bc[$var].'><td>'.$langs->trans("HideRefOnPDF").'</td><td>';
- print $form->selectyesno('MAIN_GENERATE_DOCUMENTS_HIDE_REF',(! empty($conf->global->MAIN_GENERATE_DOCUMENTS_HIDE_REF))?$conf->global->MAIN_GENERATE_DOCUMENTS_HIDE_REF:0,1);
- print '</td></tr>';
- //Details
- $var=!$var;
- print '<tr '.$bc[$var].'><td>'.$langs->trans("HideDetailsOnPDF").'</td><td>';
- print $form->selectyesno('MAIN_GENERATE_DOCUMENTS_HIDE_DETAILS',(! empty($conf->global->MAIN_GENERATE_DOCUMENTS_HIDE_DETAILS))?$conf->global->MAIN_GENERATE_DOCUMENTS_HIDE_DETAILS:0,1);
- print '</td></tr>';
- print '</table>';
- print '<br><div class="center">';
- print '<input class="button" type="submit" value="'.$langs->trans("Save").'">';
- print '</div>';
- print '</form>';
- print '<br>';
- }
- else // Show
- {
- $var=true;
- // Misc options
- print_fiche_titre($langs->trans("DictionaryPaperFormat"),'','').'<br>';
- $var=true;
- print '<table summary="more" class="noborder" width="100%">';
- print '<tr class="liste_titre"><td>'.$langs->trans("Parameter").'</td><td width="200px">'.$langs->trans("Value").'</td></tr>';
- // Show pdf format
- $var=!$var;
- print '<tr '.$bc[$var].'><td>'.$langs->trans("DictionaryPaperFormat").'</td><td>';
- $pdfformatlabel='';
- if (empty($conf->global->MAIN_PDF_FORMAT))
- {
- include_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
- $pdfformatlabel=dol_getDefaultFormat();
- }
- else $pdfformatlabel=$conf->global->MAIN_PDF_FORMAT;
- if (! empty($pdfformatlabel))
- {
- $sql="SELECT code, label, width, height, unit FROM ".MAIN_DB_PREFIX."c_paper_format";
- $sql.=" WHERE code LIKE '%".$db->escape($pdfformatlabel)."%'";
- $resql=$db->query($sql);
- if ($resql)
- {
- $obj=$db->fetch_object($resql);
- $paperKey = $langs->trans('PaperFormat'.$obj->code);
- $unitKey = $langs->trans('SizeUnit'.$obj->unit);
- $pdfformatlabel = ($paperKey == 'PaperFormat'.$obj->code ? $obj->label : $paperKey).' - '.round($obj->width).'x'.round($obj->height).' '.($unitKey == 'SizeUnit'.$obj->unit ? $obj->unit : $unitKey);
- }
- }
- print $pdfformatlabel;
- print '</td></tr>';
- print '</table>';
- print '<br>';
- print_fiche_titre($langs->trans("PDFAddressForging"),'','').'<br>';
- print '<table class="noborder" width="100%">';
- print '<tr class="liste_titre"><td>'.$langs->trans("Parameter").'</td><td width="200px">'.$langs->trans("Value").'</td></tr>';
- // Show prof id 1 in address into pdf
- $var=!$var;
- if (! $noCountryCode)
- {
- $pid1=$langs->transcountry("ProfId1",$mysoc->country_code);
- if ($pid1 == '-') $pid1=false;
- }
- else
- {
- $pid1 = img_warning().' <font class="error">'.$langs->trans("ErrorFieldRequired",$langs->transnoentitiesnoconv("CompanyCountry")).'</font>';
- }
- if ($pid1)
- {
- print '<tr '.$bc[$var].'><td>'.$langs->trans("ShowProfIdInAddress").' - '.$pid1.'</td><td>';
- print yn($conf->global->MAIN_PROFID1_IN_ADDRESS,1);
- print '</td></tr>';
- }
- // Show prof id 2 in address into pdf
- $var=!$var;
- if (! $noCountryCode)
- {
- $pid2=$langs->transcountry("ProfId2",$mysoc->country_code);
- if ($pid2 == '-') $pid2=false;
- }
- else
- {
- $pid2 = img_warning().' <font class="error">'.$langs->trans("ErrorFieldRequired",$langs->transnoentitiesnoconv("CompanyCountry")).'</font>';
- }
- if ($pid2)
- {
- print '<tr '.$bc[$var].'><td>'.$langs->trans("ShowProfIdInAddress").' - '.$pid2.'</td><td>';
- print yn($conf->global->MAIN_PROFID2_IN_ADDRESS,1);
- print '</td></tr>';
- }
- // Show prof id 3 in address into pdf
- $var=!$var;
- if (! $noCountryCode)
- {
- $pid3=$langs->transcountry("ProfId3",$mysoc->country_code);
- if ($pid3 == '-') $pid3=false;
- }
- else
- {
- $pid3 = img_warning().' <font class="error">'.$langs->trans("ErrorFieldRequired",$langs->transnoentitiesnoconv("CompanyCountry")).'</font>';
- }
- if ($pid3)
- {
- print '<tr '.$bc[$var].'><td>'.$langs->trans("ShowProfIdInAddress").' - '.$pid3.'</td><td>';
- print yn($conf->global->MAIN_PROFID3_IN_ADDRESS,1);
- print '</td></tr>';
- }
- // Show prof id 4 in address into pdf
- $var=!$var;
- if (! $noCountryCode)
- {
- $pid4=$langs->transcountry("ProfId4",$mysoc->country_code);
- if ($pid4 == '-') $pid4=false;
- }
- else
- {
- $pid4 = img_warning().' <font class="error">'.$langs->trans("ErrorFieldRequired",$langs->transnoentitiesnoconv("CompanyCountry")).'</font>';
- }
- if ($pid4)
- {
- print '<tr '.$bc[$var].'><td>'.$langs->trans("ShowProfIdInAddress").' - '.$pid4.'</td><td>';
- print yn($conf->global->MAIN_PROFID4_IN_ADDRESS,1);
- print '</td></tr>';
- }
- print '</table>'."\n";
- print '<br>';
- // Other
- print_fiche_titre($langs->trans("Other"),'','').'<br>';
- $var=true;
- print '<table summary="more" class="noborder" width="100%">';
- print '<tr class="liste_titre"><td>'.$langs->trans("Parameter").'</td><td width="200px" colspan="2">'.$langs->trans("Value").'</td></tr>';
- // Hide any PDF informations
- $var=!$var;
- print '<tr '.$bc[$var].'><td>'.$langs->trans("HideAnyVATInformationOnPDF").'</td><td colspan="2">';
- print yn($conf->global->MAIN_GENERATE_DOCUMENTS_WITHOUT_VAT,1);
- print '</td></tr>';
- // Encrypt and protect PDF
- $var=!$var;
- print "<tr ".$bc[$var].">";
- print '<td>';
- $text = $langs->trans("ProtectAndEncryptPdfFiles");
- $desc = $form->textwithpicto($text,$langs->transnoentities("ProtectAndEncryptPdfFilesDesc"),1);
- print $desc;
- print '</td>';
- print '<td width="60">';
- if($conf->global->PDF_SECURITY_ENCRYPTION == 1)
- {
- print img_picto($langs->trans("Active"),'tick');
- }
- print '</td>';
- print '<td align="center" width="140">';
- if ($conf->global->PDF_SECURITY_ENCRYPTION == 0)
- {
- print '<a href="'.$_SERVER["PHP_SELF"].'?action=activate_pdfsecurity">'.$langs->trans("Activate").'</a>';
- }
- if($conf->global->PDF_SECURITY_ENCRYPTION == 1)
- {
- print '<a href="'.$_SERVER["PHP_SELF"].'?action=disable_pdfsecurity">'.$langs->trans("Disable").'</a>';
- }
- print "</td>";
- print "</td>";
- print '</tr>';
- // Hide Tva Intra on adress
- $var=!$var;
- print '<tr '.$bc[$var].'><td>'.$langs->trans("ShowVATIntaInAddress").'</td><td colspan="2">';
- print yn($conf->global->MAIN_TVAINTRA_NOT_IN_ADDRESS,1);
- print '</td></tr>';
- //Desc
- $var=!$var;
- print '<tr '.$bc[$var].'><td>'.$langs->trans("HideDescOnPDF").'</td><td colspan="2">';
- print yn($conf->global->MAIN_GENERATE_DOCUMENTS_HIDE_DESC,1);
- print '</td></tr>';
- //Ref
- $var=!$var;
- print '<tr '.$bc[$var].'><td>'.$langs->trans("HideRefOnPDF").'</td><td colspan="2">';
- print yn($conf->global->MAIN_GENERATE_DOCUMENTS_HIDE_REF,1);
- print '</td></tr>';
- //Details
- $var=!$var;
- print '<tr '.$bc[$var].'><td>'.$langs->trans("HideDetailsOnPDF").'</td><td colspan="2">';
- print yn($conf->global->MAIN_GENERATE_DOCUMENTS_HIDE_DETAILS,1);
- print '</td></tr>';
- print '</table>';
- /*
- * Library
- */
- print '<br>';
- print_titre($langs->trans("Library"));
- print '<table class="noborder" width="100%">'."\n";
- print '<tr class="liste_titre">'."\n";
- print '<td>'.$langs->trans("Name").'</td>'."\n";
- print '<td>'.$langs->trans("Value").'</td>'."\n";
- print "</tr>\n";
- $var=false;
- if (! empty($dolibarr_pdf_force_fpdf))
- {
- $var=!$var;
- print '<tr '.$bc[$var].'>'."\n";
- print '<td>dolibarr_pdf_force_fpdf</td>'."\n";
- print '<td>';
- print $dolibarr_pdf_force_fpdf;
- print '</td>';
- print '</tr>';
- }
- $var=!$var;
- print '<tr '.$bc[$var].'>'."\n";
- print '<td>'.$langs->trans("LibraryToBuildPDF").'</td>'."\n";
- print '<td>';
- $i=0;
- $pdf=pdf_getInstance('A4');
- if (class_exists('FPDF') && ! class_exists('TCPDF'))
- {
- if ($i) print ' + ';
- print 'FPDF';
- print ' ('.@constant('FPDF_PATH').')';
- $i++;
- }
- if (class_exists('TCPDF'))
- {
- if ($i) print ' + ';
- print 'TCPDF';
- print ' ('.@constant('TCPDF_PATH').')';
- $i++;
- }
- if (class_exists('FPDI'))
- {
- if ($i) print ' + ';
- print 'FPDI';
- print ' ('.@constant('FPDI_PATH').')';
- $i++;
- }
- if (class_exists('TCPDI'))
- {
- if ($i) print ' + ';
- print 'TCPDI';
- print ' ('.@constant('TCPDI_PATH').')';
- $i++;
- }
- print '<!-- $conf->global->MAIN_USE_FPDF = '.$conf->global->MAIN_USE_FPDF.' -->';
- print '</td>'."\n";
- print '</tr>'."\n";
- print "</table>\n";
- if (! empty($dolibarr_pdf_force_fpdf))
- {
- print info_admin($langs->trans("WarningUsingFPDF")).'<br>';
- }
- print '<div class="tabsAction">';
- print '<a class="butAction" href="'.$_SERVER["PHP_SELF"].'?action=edit">'.$langs->trans("Modify").'</a>';
- print '</div>';
- print '<br>';
- }
- llxFooter();
- $db->close();
|