* Copyright (C) 2004-2008 Laurent Destailleur * Copyright (C) 2005-2009 Regis Houssin * Copyright (C) 2004 Sebastien Di Cintio * Copyright (C) 2004 Benoit Mortier * Copyright (C) 2010 Juanjo Menent * * 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 2 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, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /** * \file htdocs/admin/fournisseur.php * \ingroup fournisseur * \brief Page d'administration-configuration du module Fournisseur * \version $Id$ */ require("../main.inc.php"); require_once(DOL_DOCUMENT_ROOT."/lib/admin.lib.php"); require_once(DOL_DOCUMENT_ROOT.'/fourn/class/fournisseur.class.php'); require_once(DOL_DOCUMENT_ROOT.'/fourn/class/fournisseur.commande.class.php'); require_once(DOL_DOCUMENT_ROOT.'/fourn/class/fournisseur.facture.class.php'); $langs->load("admin"); $langs->load("bills"); $langs->load("other"); $langs->load("orders"); if (!$user->admin) accessforbidden(); /* * Actions */ if ($_POST["action"] == 'updateMask') { $maskconstorder=$_POST['maskconstorder']; $maskorder=$_POST['maskorder']; if ($maskconstorder) dolibarr_set_const($db,$maskconstorder,$maskorder,'chaine',0,'',$conf->entity); } if ($_GET["action"] == 'specimen') { $modele=$_GET["module"]; $commande = new CommandeFournisseur($db); $commande->initAsSpecimen(); // Charge le modele $dir = DOL_DOCUMENT_ROOT . "/includes/modules/supplier_order/pdf/"; $file = "pdf_".$modele.".modules.php"; if (file_exists($dir.$file)) { $classname = "pdf_".$modele; require_once($dir.$file); $obj = new $classname($db); if ($obj->write_file($commande,$langs) > 0) { header("Location: ".DOL_URL_ROOT."/document.php?modulepart=commande_fournisseur&file=SPECIMEN.pdf"); return; } else { $mesg='
'.$obj->error.'
'; dol_syslog($obj->error, LOG_ERR); } } else { $mesg='
'.$langs->trans("ErrorModuleNotFound").'
'; dol_syslog($langs->trans("ErrorModuleNotFound"), LOG_ERR); } } if ($_GET["action"] == 'specimenfacture') { $modele=$_GET["module"]; $facture = new FactureFournisseur($db); $facture->initAsSpecimen(); // Charge le modele $dir = DOL_DOCUMENT_ROOT . "/includes/modules/supplier_invoice/pdf/"; $file = "pdf_".$modele.".modules.php"; if (file_exists($dir.$file)) { $classname = "pdf_".$modele; require_once($dir.$file); $obj = new $classname($db); if ($obj->write_file($facture,$langs) > 0) { header("Location: ".DOL_URL_ROOT."/document.php?modulepart=facture_fournisseur&file=SPECIMEN.pdf"); return; } else { $mesg='
'.$obj->error.'
'; dol_syslog($obj->error, LOG_ERR); } } else { $mesg='
'.$langs->trans("ErrorModuleNotFound").'
'; dol_syslog($langs->trans("ErrorModuleNotFound"), LOG_ERR); } } if ($_GET["action"] == 'set') { $sql = "INSERT INTO ".MAIN_DB_PREFIX."document_model (nom, type, entity) VALUES ('".$_GET["value"]."','".$_GET["type"]."',".$conf->entity.")"; if ($db->query($sql)) { } } if ($_GET["action"] == 'del') { $sql = "DELETE FROM ".MAIN_DB_PREFIX."document_model"; $sql.= " WHERE nom = '".$_GET["value"]."'"; $sql.= " AND type = '".$_GET["type"]."'"; $sql.= " AND entity = ".$conf->entity; if ($db->query($sql)) { } } if ($_GET["action"] == 'setdoc') { $db->begin(); if ($_GET["type"] == 'supplier_order' && dolibarr_set_const($db, "COMMANDE_SUPPLIER_ADDON_PDF",$_GET["value"],'chaine',0,'',$conf->entity)) { $conf->global->COMMANDE_SUPPLIER_ADDON_PDF = $_GET["value"]; } if ($_GET["type"] == 'supplier_invoice' && dolibarr_set_const($db, "INVOICE_SUPPLIER_ADDON_PDF",$_GET["value"],'chaine',0,'',$conf->entity)) { $conf->global->INVOICE_SUPPLIER_ADDON_PDF = $_GET["value"]; } // On active le modele $type='supplier_order'; $sql_del = "DELETE FROM ".MAIN_DB_PREFIX."document_model"; $sql_del.= " WHERE nom = '".$_GET["value"]."'"; $sql_del.= " AND type = '".$_GET["type"]."'"; $sql_del.= " AND entity = ".$conf->entity; $result1=$db->query($sql_del); $sql = "INSERT INTO ".MAIN_DB_PREFIX."document_model (nom,type,entity) VALUES ('".$_GET["value"]."','".$_GET["type"]."',".$conf->entity.")"; $result2=$db->query($sql); if ($result1 && $result2) { $db->commit(); } else { $db->rollback(); } } if ($_GET["action"] == 'setmod') { // TODO Verifier si module numerotation choisi peut etre active // par appel methode canBeActivated dolibarr_set_const($db, "COMMANDE_SUPPLIER_ADDON",$_GET["value"],'chaine',0,'',$conf->entity); } if ($_POST["action"] == 'addcat') { $fourn = new Fournisseur($db); $fourn->CreateCategory($user,$_POST["cat"]); } /* * View */ $html=new Form($db); llxHeader(); $linkback=''.$langs->trans("BackToModuleList").''; print_fiche_titre($langs->trans("SuppliersSetup"),$linkback,'setup'); print "
"; // Supplier order numbering module $dir = DOL_DOCUMENT_ROOT."/includes/modules/supplier_order/"; print_titre($langs->trans("OrdersNumberingModules")); print ''; print ''; print ''; print ''; print ''; print ''; print ''; print "\n"; clearstatcache(); $handle = opendir($dir); if ($handle) { $var=true; while (($file = readdir($handle))!==false) { if (substr($file, 0, 25) == 'mod_commande_fournisseur_' && substr($file, dol_strlen($file)-3, 3) == 'php') { $file = substr($file, 0, dol_strlen($file)-4); require_once(DOL_DOCUMENT_ROOT ."/includes/modules/supplier_order/".$file.".php"); $module = new $file; if ($module->isEnabled()) { // Show modules according to features level if ($module->version == 'development' && $conf->global->MAIN_FEATURES_LEVEL < 2) continue; if ($module->version == 'experimental' && $conf->global->MAIN_FEATURES_LEVEL < 1) continue; $var=!$var; print ''; // Examples print '\n"; print ''; $commande=new CommandeFournisseur($db); $commande->initAsSpecimen(); // Info $htmltooltip=''; $htmltooltip.=''.$langs->trans("Version").': '.$module->getVersion().'
'; $facture->type=0; $nextval=$module->getNextValue($mysoc,$commande); if ("$nextval" != $langs->trans("NotAvailable")) // Keep " on nextval { $htmltooltip.=''.$langs->trans("NextValue").': '; if ($nextval) { $htmltooltip.=$nextval.'
'; } else { $htmltooltip.=$langs->trans($module->error).'
'; } } print ''; print ''; } } } closedir($handle); } print '
'.$langs->trans("Name").''.$langs->trans("Description").''.$langs->trans("Example").''.$langs->trans("Status").''.$langs->trans("Info").'
'.$module->nom."\n"; print $module->info(); print ''.$module->getExample()."'; if ($conf->global->COMMANDE_SUPPLIER_ADDON == "$file") { print img_picto($langs->trans("Activated"),'on'); } else { print ''.img_picto($langs->trans("Disabled"),'off').''; } print ''; print $html->textwithpicto('',$htmltooltip,1,0); print '

'; /* * Modeles documents for supplier orders */ $dir = DOL_DOCUMENT_ROOT.'/includes/modules/supplier_order/pdf/'; print_titre($langs->trans("OrdersModelModule")); // Defini tableau def de modele $type='supplier_order'; $def = array(); $sql = "SELECT nom"; $sql.= " FROM ".MAIN_DB_PREFIX."document_model"; $sql.= " WHERE type = '".$type."'"; $sql.= " AND entity = ".$conf->entity; $resql=$db->query($sql); if ($resql) { $i = 0; $num_rows=$db->num_rows($resql); while ($i < $num_rows) { $array = $db->fetch_array($resql); array_push($def, $array[0]); $i++; } } else { dol_print_error($db); } print ''."\n"; print ''."\n"; print ''."\n"; print ''."\n"; print ''."\n"; print ''."\n"; print ''; print ''."\n"; clearstatcache(); $handle=opendir($dir); $var=true; while (($file = readdir($handle))!==false) { if (preg_match('/\.modules\.php$/i',$file) && substr($file,0,4) == 'pdf_') { $name = substr($file, 4, dol_strlen($file) -16); $classname = substr($file, 0, dol_strlen($file) -12); $var=!$var; print "\n \n \n"; // Active if (in_array($name, $def)) { print '"; } else { print '"; } // Defaut print ''; // Info $htmltooltip = ''.$langs->trans("Name").': '.$module->name; $htmltooltip.='
'.$langs->trans("Type").': '.($module->type?$module->type:$langs->trans("Unknown")); $htmltooltip.='
'.$langs->trans("Width").'/'.$langs->trans("Height").': '.$module->page_largeur.'/'.$module->page_hauteur; $htmltooltip.='

'.$langs->trans("FeaturesSupported").':'; $htmltooltip.='
'.$langs->trans("Logo").': '.yn($module->option_logo,1,1); $htmltooltip.='
'.$langs->trans("PaymentMode").': '.yn($module->option_modereg,1,1); $htmltooltip.='
'.$langs->trans("PaymentConditions").': '.yn($module->option_condreg,1,1); print ''; print ''; print "\n"; } } closedir($handle); print '
'.$langs->trans("Name").''.$langs->trans("Description").''.$langs->trans("Status").''.$langs->trans("Default").''.$langs->trans("Info").'
$name"; print "\n"; require_once($dir.$file); $module = new $classname($db); print $module->description; print "'."\n"; if ($conf->global->COMMANDE_SUPPLIER_ADDON_PDF != "$name") { print ''; print img_picto($langs->trans("Enabled"),'on'); print ''; } else { print img_picto($langs->trans("Enabled"),'on'); } print "'."\n"; print ''.img_picto($langs->trans("Disabled"),'off').''; print "'; if ($conf->global->COMMANDE_SUPPLIER_ADDON_PDF == "$name") { print img_picto($langs->trans("Default"),'on'); } else { print ''.img_picto($langs->trans("Disabled"),'on').''; } print ''; print $html->textwithpicto('',$htmltooltip,1,0); print ''; print ''.img_object($langs->trans("Preview"),'order').''; print '

'; /* * Modeles documents for supplier invoices */ $dir = DOL_DOCUMENT_ROOT.'/includes/modules/supplier_invoice/pdf/'; print_titre($langs->trans("BillsPDFModules")); // Defini tableau def de modele $type='supplier_invoice'; $def = array(); $sql = "SELECT nom"; $sql.= " FROM ".MAIN_DB_PREFIX."document_model"; $sql.= " WHERE type = '".$type."'"; $sql.= " AND entity = ".$conf->entity; $resql=$db->query($sql); if ($resql) { $i = 0; $num_rows=$db->num_rows($resql); while ($i < $num_rows) { $array = $db->fetch_array($resql); array_push($def, $array[0]); $i++; } } else { dol_print_error($db); } print ''."\n"; print ''."\n"; print ''."\n"; print ''."\n"; print ''."\n"; print ''."\n"; print ''; print ''."\n"; clearstatcache(); $handle=opendir($dir); print 'xxx='.$conf->global->INVOICE_SUPPLIER_ADDON_PDF; $var=true; while (($file = readdir($handle))!==false) { if (preg_match('/\.modules\.php$/i',$file) && substr($file,0,4) == 'pdf_') { $name = substr($file, 4, dol_strlen($file) -16); $classname = substr($file, 0, dol_strlen($file) -12); $var=!$var; print "\n \n \n"; // Active if (in_array($name, $def)) { print ""; } else { print ""; } // Defaut print "'; // Info $htmltooltip = ''.$langs->trans("Name").': '.$module->name; $htmltooltip.='
'.$langs->trans("Type").': '.($module->type?$module->type:$langs->trans("Unknown")); $htmltooltip.='
'.$langs->trans("Width").'/'.$langs->trans("Height").': '.$module->page_largeur.'/'.$module->page_hauteur; $htmltooltip.='

'.$langs->trans("FeaturesSupported").':'; $htmltooltip.='
'.$langs->trans("Logo").': '.yn($module->option_logo,1,1); $htmltooltip.='
'.$langs->trans("PaymentMode").': '.yn($module->option_modereg,1,1); $htmltooltip.='
'.$langs->trans("PaymentConditions").': '.yn($module->option_condreg,1,1); print ''; print ''; print "\n"; } } closedir($handle); print '
'.$langs->trans("Name").''.$langs->trans("Description").''.$langs->trans("Status").''.$langs->trans("Default").''.$langs->trans("Info").'
$name"; print "\n"; require_once($dir.$file); $module = new $classname($db); print $module->description; print "\n"; if ($conf->global->INVOICE_SUPPLIER_ADDON_PDF != "$name") { print ''; print img_picto($langs->trans("Enabled"),'on'); print ''; } else { print img_picto($langs->trans("Enabled"),'on'); } print "\n"; print ''.img_picto($langs->trans("Disabled"),'off').''; print ""; if ($conf->global->INVOICE_SUPPLIER_ADDON_PDF == "$name") { print img_picto($langs->trans("Default"),'on'); } else { print ''.img_picto($langs->trans("Disabled"),'on').''; } print ''; print $html->textwithpicto('',$htmltooltip,1,0); print ''; print ''.img_object($langs->trans("Preview"),'bill').''; print '

'; llxFooter('$Date$ - $Revision$'); ?>