123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176 |
- <?php
- /* Copyright (C) 2003-2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
- * Copyright (C) 2004-2011 Laurent Destailleur <eldy@users.sourceforge.net>
- * Copyright (C) 2005 Eric Seigne <eric.seigne@ryxeo.com>
- * Copyright (C) 2005-2012 Regis Houssin <regis.houssin@capnetworks.com>
- * Copyright (C) 2008 Raphael Bertrand (Resultic) <raphael.bertrand@resultic.fr>
- * Copyright (C) 2012-2013 Juanjo Menent <jmenent@2byte.es>
- * Copyright (C) 2014 Teddy Andreotti <125155@supinfo.com>
- *
- * 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 <https://www.gnu.org/licenses/>.
- */
- /**
- * \file htdocs/admin/facture.php
- * \ingroup facture
- * \brief Page to setup invoice module
- */
- require '../main.inc.php';
- // Libraries
- require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
- require_once DOL_DOCUMENT_ROOT.'/core/lib/invoice.lib.php';
- require_once DOL_DOCUMENT_ROOT.'/compta/facture/class/facture.class.php';
- require_once DOL_DOCUMENT_ROOT.'/core/class/html.formsetup.class.php';
- // Load translation files required by the page
- $langs->loadLangs(array('admin', 'errors', 'other', 'bills'));
- // Initialize technical object to manage hooks of page. Note that conf->hooks_modules contains array of hook context
- $hookmanager->initHooks(array('situationinvoicesetup', 'globalsetup'));
- // Access control
- if (!$user->admin) {
- accessforbidden();
- }
- $action = GETPOST('action', 'aZ09');
- $backtopage = GETPOST('backtopage', 'alpha');
- $value = GETPOST('value', 'alpha');
- $label = GETPOST('label', 'alpha');
- $modulepart = GETPOST('modulepart', 'aZ09'); // Used by actions_setmoduleoptions.inc.php
- $scandir = GETPOST('scan_dir', 'alpha');
- $type = 'invoice';
- $form = new Form($db);
- $formSetup = new FormSetup($db);
- // Setup conf MYMODULE_MYPARAM4 : exemple of quick define write style
- $formSetup->newItem('INVOICE_USE_SITUATION')
- ->setAsYesNo()
- ->nameText = $langs->trans('UseSituationInvoices');
- $item = $formSetup->newItem('INVOICE_USE_SITUATION_CREDIT_NOTE')
- ->setAsYesNo()
- ->nameText = $langs->trans('UseSituationInvoicesCreditNote');
- //$item = $formSetup->newItem('INVOICE_USE_RETAINED_WARRANTY')
- // ->setAsYesNo()
- // ->nameText = $langs->trans('Retainedwarranty');
- $item = $formSetup->newItem('INVOICE_USE_RETAINED_WARRANTY');
- $item->nameText = $langs->trans('AllowedInvoiceForRetainedWarranty');
- $arrayAvailableType = array(
- Facture::TYPE_SITUATION => $langs->trans("InvoiceSituation"),
- Facture::TYPE_STANDARD.'+'.Facture::TYPE_SITUATION => $langs->trans("InvoiceSituation").' + '.$langs->trans("InvoiceStandard"),
- );
- if ($action == 'edit') {
- $item->fieldInputOverride = $form->selectarray('INVOICE_USE_RETAINED_WARRANTY', $arrayAvailableType, $conf->global->INVOICE_USE_RETAINED_WARRANTY, 1);
- } else {
- $item->fieldOutputOverride= isset($arrayAvailableType[$conf->global->INVOICE_USE_RETAINED_WARRANTY])?$arrayAvailableType[$conf->global->INVOICE_USE_RETAINED_WARRANTY]:'';
- }
- //$item = $formSetup->newItem('INVOICE_RETAINED_WARRANTY_LIMITED_TO_SITUATION')->setAsYesNo();
- //$item->nameText = $langs->trans('RetainedwarrantyOnlyForSituation');
- $formSetup->newItem('INVOICE_RETAINED_WARRANTY_LIMITED_TO_FINAL_SITUATION')
- ->setAsYesNo()
- ->nameText = $langs->trans('RetainedwarrantyOnlyForSituationFinal');
- $item = $formSetup->newItem('INVOICE_SITUATION_DEFAULT_RETAINED_WARRANTY_PERCENT');
- $item->nameText = $langs->trans('RetainedwarrantyDefaultPercent');
- $item->fieldAttr = array(
- 'type' => 'number',
- 'step' => '0.01',
- 'min' => 0,
- 'max' => 100
- );
- // Conditions paiements
- $item = $formSetup->newItem('INVOICE_SITUATION_DEFAULT_RETAINED_WARRANTY_COND_ID');
- $item->nameText = $langs->trans('PaymentConditionsShortRetainedWarranty');
- $form->load_cache_conditions_paiements();
- if (!empty($conf->global->INVOICE_SITUATION_DEFAULT_RETAINED_WARRANTY_COND_ID) && isset($form->cache_conditions_paiements[$conf->global->INVOICE_SITUATION_DEFAULT_RETAINED_WARRANTY_COND_ID]['label'])) {
- $item->fieldOutputOverride = $form->cache_conditions_paiements[$conf->global->INVOICE_SITUATION_DEFAULT_RETAINED_WARRANTY_COND_ID]['label'];
- }
- $item->fieldInputOverride = $form->getSelectConditionsPaiements($conf->global->INVOICE_SITUATION_DEFAULT_RETAINED_WARRANTY_COND_ID, 'INVOICE_SITUATION_DEFAULT_RETAINED_WARRANTY_COND_ID', -1, 1);
- /*
- * Actions
- */
- include DOL_DOCUMENT_ROOT.'/core/actions_setmoduleoptions.inc.php';
- /*
- * View
- */
- $dirmodels = array_merge(array('/'), (array) $conf->modules_parts['models']);
- llxHeader(
- "",
- $langs->trans("BillsSetup"),
- 'EN:Invoice_Configuration|FR:Configuration_module_facture|ES:ConfiguracionFactura'
- );
- $linkback = '<a href="'.DOL_URL_ROOT.'/admin/modules.php?restore_lastsearch_values=1">'.$langs->trans("BackToModuleList").'</a>';
- print load_fiche_titre($langs->trans("BillsSetup"), $linkback, 'title_setup');
- $head = invoice_admin_prepare_head();
- print dol_get_fiche_head($head, 'situation', $langs->trans("InvoiceSituation"), -1, 'invoice');
- print '<span class="opacitymedium">'.$langs->trans("InvoiceFirstSituationDesc").'</span><br><br>';
- /*
- * Numbering module
- */
- if ($action == 'edit') {
- print $formSetup->generateOutput(true);
- } else {
- print $formSetup->generateOutput();
- }
- if (count($formSetup->items) > 0) {
- if ($action != 'edit') {
- print '<div class="tabsAction">';
- print '<a class="butAction" href="'.$_SERVER["PHP_SELF"].'?action=edit&token='.newToken().'">'.$langs->trans("Modify").'</a>';
- print '</div>';
- }
- } else {
- print '<br>'.$langs->trans("NothingToSetup");
- }
- print dol_get_fiche_end();
- // End of page
- llxFooter();
- $db->close();
|