* Copyright (C) 2004-2011 Laurent Destailleur * Copyright (C) 2005 Eric Seigne * Copyright (C) 2005-2012 Regis Houssin * Copyright (C) 2008 Raphael Bertrand (Resultic) * Copyright (C) 2012-2013 Juanjo Menent * 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 . */ /** * \file htdocs/admin/facture.php * \ingroup facture * \brief Page to setup invoice module */ require '../main.inc.php'; require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php'; require_once DOL_DOCUMENT_ROOT.'/core/lib/pdf.lib.php'; require_once DOL_DOCUMENT_ROOT.'/core/lib/invoice.lib.php'; require_once DOL_DOCUMENT_ROOT.'/compta/facture/class/facture.class.php'; // Load translation files required by the page $langs->loadLangs(array('admin', 'errors', 'other', 'bills')); if (! $user->admin) accessforbidden(); $action = GETPOST('action','alpha'); $value = GETPOST('value','alpha'); $label = GETPOST('label','alpha'); $scandir = GETPOST('scan_dir','alpha'); $type='invoice'; /* * 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'); $form=new Form($db); $linkback=''.$langs->trans("BackToModuleList").''; print load_fiche_titre($langs->trans("BillsSetup"),$linkback,'title_setup'); $head = invoice_admin_prepare_head(); dol_fiche_head($head, 'situation', $langs->trans("InvoiceSituation"), -1, 'invoice'); /* * Numbering module */ print load_fiche_titre($langs->trans("InvoiceSituation"),'',''); $var=0; print '
'; print ''; _updateBtn(); print ''; _print_on_off('INVOICE_USE_SITUATION',$langs->trans('UseSituationInvoices')); _print_on_off('INVOICE_USE_SITUATION_CREDIT_NOTE',$langs->trans('UseSituationInvoicesCreditNote')); _print_on_off('INVOICE_USE_SITUATION_RETAINED_WARRANTY',$langs->trans('Retainedwarranty')); $metas = array( 'type' => 'number', 'step' => '0.01', 'min' => 0, 'max' => 100 ); _print_input_form_part('INVOICE_SITUATION_DEFAULT_RETAINED_WARRANTY_PERCENT',$langs->trans('RetainedwarrantyDefaultPercent'),'',$metas); // Conditions paiements $inputCount = empty($inputCount)?1:($inputCount+1); print ''; print ''; print ''; print ''; print '
'.$langs->trans('PaymentConditionsShortRetainedWarranty').' '; print ''; $form->select_conditions_paiements($conf->global->INVOICE_SITUATION_DEFAULT_RETAINED_WARRANTY_COND_ID, 'value'.$inputCount, -1, 1); print '
'; _updateBtn(); print '
'; dol_fiche_end(); // End of page llxFooter(); $db->close(); function _updateBtn(){ global $langs; print '
'; print ''; print '
'; } function _print_on_off($confkey, $title = false, $desc ='') { global $var, $bc, $langs; $var=!$var; print ''; print ''.($title?$title:$langs->trans($confkey)); if(!empty($desc)) { print '
'.$langs->trans($desc).''; } print ''; print ' '; print ''; print ajax_constantonoff($confkey); print ''; } function _print_input_form_part($confkey, $title = false, $desc ='', $metas = array(), $type='input', $help = false) { global $var, $bc, $langs, $conf, $db, $inputCount; $var=!$var; $inputCount = empty($inputCount)?1:($inputCount+1); $form=new Form($db); $defaultMetas = array( 'name' => 'value'.$inputCount ); if($type!='textarea'){ $defaultMetas['type'] = 'text'; $defaultMetas['value'] = $conf->global->{$confkey}; } $metas = array_merge ($defaultMetas, $metas); $metascompil = ''; foreach ($metas as $key => $values) { $metascompil .= ' '.$key.'="'.$values.'" '; } print ''; print ''; if(!empty($help)){ print $form->textwithtooltip( ($title?$title:$langs->trans($confkey)) , $langs->trans($help),2,1,img_help(1,'')); } else { print $title?$title:$langs->trans($confkey); } if(!empty($desc)) { print '
'.$langs->trans($desc).''; } print ''; print ' '; print ''; print ''; print ''; if($type=='textarea'){ print ''; } else { print ''; } print ''; }