* Copyright (C) 2004-2008 Laurent Destailleur * Copyright (C) 2005-2011 Regis Houssin * Copyright (C) 2004 Sebastien Di Cintio * Copyright (C) 2004 Benoit Mortier * Copyright (C) 2010 Juanjo Menent * Copyright (C) 2011 Philippe Grand * * 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, see . */ /** * \file htdocs/admin/fournisseur.php * \ingroup fournisseur * \brief Page d'administration-configuration du module Fournisseur * \version $Id: fournisseur.php,v 1.63 2011/07/31 22:23:21 eldy Exp $ */ 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(); $type=GETPOST('type'); $value=GETPOST('value'); $action=GETPOST('action'); $specimenthirdparty=new Societe($db); $specimenthirdparty->initAsSpecimen(); /* * Actions */ if ($action == 'updateMask') { $maskconstorder=$_POST['maskconstorder']; $maskorder=$_POST['maskorder']; if ($maskconstorder) dolibarr_set_const($db,$maskconstorder,$maskorder,'chaine',0,'',$conf->entity); } if ($action == 'specimen') // For orders { $modele=$_GET["module"]; $commande = new CommandeFournisseur($db); $commande->initAsSpecimen(); $commande->thirdparty=$specimenthirdparty; // Charge le modele $dir = "/includes/modules/supplier_order/pdf/"; $file = "pdf_".$modele.".modules.php"; $file = dol_buildpath($dir.$file); if (file_exists($file)) { $classname = "pdf_".$modele; require_once($file); $obj = new $classname($db,$commande); 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 ($action == 'specimenfacture') // For invoices { $modele=$_GET["module"]; $facture = new FactureFournisseur($db); $facture->initAsSpecimen(); $facture->thirdparty=$specimenthirdparty; // Charge le modele $dir = "/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,$facture); 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 ($action == 'set') { $sql = "INSERT INTO ".MAIN_DB_PREFIX."document_model (nom, type, entity, libelle, description)"; $sql.= " VALUES ('".$db->escape($value)."','".$type."',".$conf->entity.", "; $sql.= ($_GET["label"]?"'".$db->escape($_GET["label"])."'":'null').", "; $sql.= (! empty($_GET["scandir"])?"'".$db->escape($_GET["scandir"])."'":"null"); $sql.= ")"; $res=$db->query($sql); if ($res) { } // else dol_print_error($db); } if ($action == 'del') { $sql = "DELETE FROM ".MAIN_DB_PREFIX."document_model"; $sql.= " WHERE nom = '".$value."'"; $sql.= " AND type = '".$type."'"; $sql.= " AND entity = ".$conf->entity; $db->query($sql); if ($res) { } // else dol_print_error($db); } if ($action == 'setdoc') { $db->begin(); if ($_GET["type"] == 'order_supplier' && dolibarr_set_const($db, "COMMANDE_SUPPLIER_ADDON_PDF",$value,'chaine',0,'',$conf->entity)) { $conf->global->COMMANDE_SUPPLIER_ADDON_PDF = $value; } if ($_GET["type"] == 'invoice_supplier' && dolibarr_set_const($db, "INVOICE_SUPPLIER_ADDON_PDF",$value,'chaine',0,'',$conf->entity)) { $conf->global->INVOICE_SUPPLIER_ADDON_PDF = $value; } // On active le modele $sql_del = "DELETE FROM ".MAIN_DB_PREFIX."document_model"; $sql_del.= " WHERE nom = '".$db->escape($value)."'"; $sql_del.= " AND type = '".$type."'"; $sql_del.= " AND entity = ".$conf->entity; $result1=$db->query($sql_del); $sql = "INSERT INTO ".MAIN_DB_PREFIX."document_model (nom, type, entity, libelle, description)"; $sql.= " VALUES ('".$db->escape($value)."', '".$type."', ".$conf->entity.", "; $sql.= ($_GET["label"]?"'".$db->escape($_GET["label"])."'":'null').", "; $sql.= (! empty($_GET["scandir"])?"'".$db->escape($_GET["scandir"])."'":"null"); $sql.= ")"; $result2=$db->query($sql); if ($result1 && $result2) { $db->commit(); } else { $db->rollback(); } } if ($action == 'setmod') { // TODO Verifier si module numerotation choisi peut etre active // par appel methode canBeActivated dolibarr_set_const($db, "COMMANDE_SUPPLIER_ADDON",$value,'chaine',0,'',$conf->entity); } if ($action == 'addcat') { $fourn = new Fournisseur($db); $fourn->CreateCategory($user,$_POST["cat"]); } if ($action == 'set_SUPPLIER_INVOICE_FREE_TEXT') { dolibarr_set_const($db, "SUPPLIER_INVOICE_FREE_TEXT",$_POST["SUPPLIER_INVOICE_FREE_TEXT"],'chaine',0,'',$conf->entity); } /* * View */ $html=new Form($db); llxHeader(); $linkback=''.$langs->trans("BackToModuleList").''; print_fiche_titre($langs->trans("SuppliersSetup"),$linkback,'setup'); print "
"; // Supplier order numbering module print_titre($langs->trans("OrdersNumberingModules")); print ''; print ''; print ''; print ''; print ''; print ''; print ''; print "\n"; clearstatcache(); foreach ($conf->file->dol_document_root as $dirroot) { $dir = $dirroot . "/includes/modules/supplier_order/"; if (is_dir($dir)) { $handle = opendir($dir); if (is_resource($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($dir.$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 ''; // Show example of numbering module 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 ''; $tmp=$module->getExample(); if (preg_match('/^Error/',$tmp)) print $langs->trans($tmp); else print $tmp; print ''; 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 */ print_titre($langs->trans("OrdersModelModule")); // Defini tableau def de modele $def = array(); $sql = "SELECT nom"; $sql.= " FROM ".MAIN_DB_PREFIX."document_model"; $sql.= " WHERE type = 'order_supplier'"; $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(); foreach ($conf->file->dol_document_root as $dirroot) { $dir = $dirroot . "/includes/modules/supplier_order/pdf/"; if (is_dir($dir)) { $var=true; $handle=opendir($dir); if (is_resource($handle)) { 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"; print "\n"; print "\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."\n"; require_once($dir.$file); $module = new $classname($db,$specimenthirdparty); print $module->description; print "'."\n"; if ($conf->global->COMMANDE_SUPPLIER_ADDON_PDF != "$name") { print 'scandir.'&label='.urlencode($module->name).'&type=order_supplier">'; print img_picto($langs->trans("Enabled"),'on'); print ''; } else { print img_picto($langs->trans("Enabled"),'on'); } print "'."\n"; print 'scandir.'&label='.urlencode($module->name).'&type=order_supplier">'.img_picto($langs->trans("Disabled"),'off').''; print "'; if ($conf->global->COMMANDE_SUPPLIER_ADDON_PDF == "$name") { print img_picto($langs->trans("Default"),'on'); } else { print 'scandir.'&label='.urlencode($module->name).'&type=order_supplier"" alt="'.$langs->trans("Default").'">'.img_picto($langs->trans("Disabled"),'off').''; } print ''; print $html->textwithpicto('',$htmltooltip,1,0); print ''; print ''.img_object($langs->trans("Preview"),'order').''; print '

'; /* * Modeles documents for supplier invoices */ print_titre($langs->trans("BillsPDFModules")); // Defini tableau def de modele $def = array(); $sql = "SELECT nom"; $sql.= " FROM ".MAIN_DB_PREFIX."document_model"; $sql.= " WHERE type = 'invoice_supplier'"; $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(); foreach ($conf->file->dol_document_root as $dirroot) { $dir = $dirroot . "/includes/modules/supplier_invoice/pdf/"; if (is_dir($dir)) { $var=true; $handle=opendir($dir); if (is_resource($handle)) { 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"; print "\n"; print "\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.""; require_once($dir.$file); $module = new $classname($db,$specimenthirdparty); print $module->description; print "\n"; if ($conf->global->INVOICE_SUPPLIER_ADDON_PDF != "$name") { print 'scandir.'&label='.urlencode($module->name).'&type=invoice_supplier">'; print img_picto($langs->trans("Enabled"),'on'); print ''; } else { print img_picto($langs->trans("Enabled"),'on'); } print "\n"; print 'scandir.'&label='.urlencode($module->name).'&type=invoice_supplier">'.img_picto($langs->trans("Disabled"),'off').''; print ""; if ($conf->global->INVOICE_SUPPLIER_ADDON_PDF == "$name") { print img_picto($langs->trans("Default"),'on'); } else { print 'scandir.'&label='.urlencode($module->name).'&type=invoice_supplier" alt="'.$langs->trans("Default").'">'.img_picto($langs->trans("Disabled"),'off').''; } print ''; print $html->textwithpicto('',$htmltooltip,1,0); print ''; print ''.img_object($langs->trans("Preview"),'bill').''; print '

'; print_titre($langs->trans("OtherOptions")); print ''; print ''; print ''; print ''; print ''; print "\n"; print ''; print ''; print ''; print '\n"; print ''; llxFooter('$Date: 2011/07/31 22:23:21 $ - $Revision: 1.63 $'); ?>
'.$langs->trans("Parameter").''.$langs->trans("Value").' 
'; print $langs->trans("FreeLegalTextOnInvoices").' ('.$langs->trans("AddCRIfTooLong").')
'; print ''; print '
'; print ''; print "