* Copyright (C) 2005 Brice Davoleau * Copyright (C) 2005-2010 Regis Houssin * Copyright (C) 2006-2010 Laurent Destailleur * Copyright (C) 2007 Patrick Raguin * 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, see . */ /** * \file htdocs/categories/categorie.php * \ingroup category * \brief Page to show category tab * \version $Id: categorie.php,v 1.65 2011/08/03 00:46:32 eldy Exp $ */ require("../main.inc.php"); require_once(DOL_DOCUMENT_ROOT."/categories/class/categorie.class.php"); $langs->load("categories"); $langs->load("products"); $mesg=isset($_GET["mesg"])?'
'.$_GET["mesg"].'
':''; $dbtablename = ''; // For categories on third parties if (! empty($_REQUEST["socid"])) { $_REQUEST["id"]=$_REQUEST["socid"]; } if (! isset($_REQUEST["type"])) $_REQUEST["type"]=0; if ($_REQUEST["type"] == 1) $_GET["socid"]=$_REQUEST["id"]; if ($_REQUEST["type"] == 2) $_GET["socid"]=$_REQUEST["id"]; if ($_REQUEST["id"] || $_REQUEST["ref"]) { if ($_REQUEST["type"] == 0) { $type = 'product'; $objecttype = 'produit|service&categorie'; $objectid = isset($_REQUEST["id"])?$_REQUEST["id"]:(isset($_REQUEST["ref"])?$_REQUEST["ref"]:''); $dbtablename = 'product'; $fieldid = isset($_REQUEST["ref"])?'ref':'rowid'; } if ($_REQUEST["type"] == 1) { $type = 'fournisseur'; $socid = isset($_REQUEST["socid"])?$_REQUEST["socid"]:''; $objecttype = 'societe&categorie'; $objectid = isset($_REQUEST["id"])?$_REQUEST["id"]:(isset($_REQUEST["socid"])?$_REQUEST["socid"]:''); $fieldid = 'rowid'; } if ($_REQUEST["type"] == 2) { $type = 'societe'; $socid = isset($_REQUEST["socid"])?$_REQUEST["socid"]:''; $objecttype = 'societe&categorie'; $objectid = isset($_REQUEST["id"])?$_REQUEST["id"]:(isset($_REQUEST["socid"])?$_REQUEST["socid"]:''); $fieldid = 'rowid'; } if ($_REQUEST["type"] == 3) { $type = 'member'; $objecttype = 'adherent&categorie'; $objectid = isset($_REQUEST["id"])?$_REQUEST["id"]:(isset($_REQUEST["ref"])?$_REQUEST["ref"]:''); $dbtablename = 'adherent'; $fieldid = isset($_REQUEST["ref"])?'ref':'rowid'; } } // Security check if ($user->societe_id) $socid=$user->societe_id; $result = restrictedArea($user,$objecttype,$objectid,$dbtablename,'','',$fieldid); /* * Actions */ //Suppression d'un objet d'une categorie if ($_REQUEST["removecat"]) { if ($_REQUEST["type"]==0 && ($user->rights->produit->creer || $user->rights->service->creer)) { require_once(DOL_DOCUMENT_ROOT."/product/class/product.class.php"); $object = new Product($db); if ($_REQUEST["ref"]) $result = $object->fetch('',$_REQUEST["ref"]); if ($_REQUEST["id"]) $result = $object->fetch($_REQUEST["id"]); $type = 'product'; } if ($_REQUEST["type"]==1 && $user->rights->societe->creer) { $object = new Societe($db); $result = $object->fetch($objectid); } if ($_REQUEST["type"]==2 && $user->rights->societe->creer) { $object = new Societe($db); $result = $object->fetch($objectid); } if ($_REQUEST["type"] == 3 && $user->rights->adherent->creer) { require_once(DOL_DOCUMENT_ROOT."/adherents/class/adherent.class.php"); $object = new Adherent($db); $result = $object->fetch($objectid); } $cat = new Categorie($db); $result=$cat->fetch($_REQUEST["removecat"]); $result=$cat->del_type($object,$type); } // Add object into a category if (isset($_REQUEST["catMere"]) && $_REQUEST["catMere"]>=0) { $_GET["id"]=$_REQUEST["id"]; $_GET["type"]=$_REQUEST["type"]; if ($_REQUEST["type"]==0 && ($user->rights->produit->creer || $user->rights->service->creer)) { require_once(DOL_DOCUMENT_ROOT."/product/class/product.class.php"); $object = new Product($db); if ($_REQUEST["ref"]) $result = $object->fetch('',$_REQUEST["ref"]); if ($_REQUEST["id"]) $result = $object->fetch($_REQUEST["id"]); $type = 'product'; } if ($_REQUEST["type"]==1 && $user->rights->societe->creer) { $object = new Societe($db); $result = $object->fetch($objectid); $type = 'fournisseur'; } if ($_REQUEST["type"]==2 && $user->rights->societe->creer) { $object = new Societe($db); $result = $object->fetch($objectid); $type = 'societe'; } if ($_REQUEST["type"]==3 && $user->rights->adherent->creer) { require_once(DOL_DOCUMENT_ROOT."/adherents/class/adherent.class.php"); $object = new Adherent($db); $result = $object->fetch($objectid); $type = 'member'; } $cat = new Categorie($db); $result=$cat->fetch($_REQUEST["catMere"]); $result=$cat->add_type($object,$type); if ($result >= 0) { $mesg='
'.$langs->trans("WasAddedSuccessfully",$cat->label).'
'; } else { if ($cat->error == 'DB_ERROR_RECORD_ALREADY_EXISTS') $mesg='
'.$langs->trans("ObjectAlreadyLinkedToCategory").'
'; else $mesg='
'.$langs->trans("Error").' '.$cat->error.'
'; } } /* * View */ $html = new Form($db); /* * Fiche categorie de client et/ou fournisseur */ if ($_GET["socid"]) { require_once(DOL_DOCUMENT_ROOT."/lib/company.lib.php"); require_once(DOL_DOCUMENT_ROOT."/societe/class/societe.class.php"); $langs->load("companies"); if ($conf->notification->enabled) $langs->load("mails"); /* * Creation de l'objet client/fournisseur correspondant au socid */ $soc = new Societe($db); $result = $soc->fetch($_GET["socid"]); llxHeader("","",$langs->trans("Category")); /* * Affichage onglets */ $head = societe_prepare_head($soc); dol_fiche_head($head, 'category', $langs->trans("ThirdParty"),0,'company'); print ''; print ''; if (! empty($conf->global->SOCIETE_USEPREFIX)) // Old not used prefix field { print ''; } if ($soc->client) { print ''; } if ($soc->fournisseur) { print ''; } if ($conf->global->MAIN_MODULE_BARCODE) { print ''; } // Address print ""; // Zip / Town print '"; print '"; // Country if ($soc->pays) { print ''; } // Phone print ''; print ''; // EMail print ''; // Web print ''; // Assujeti a TVA ou pas print ''; print ''; print ''; print '
'.$langs->trans("Name").''; print $html->showrefnav($soc,'socid','',($user->societe_id?0:1),'rowid','nom'); print '
'.$langs->trans('Prefix').''.$soc->prefix_comm.'
'; print $langs->trans('CustomerCode').''; print $soc->code_client; if ($soc->check_codeclient() <> 0) print ' ('.$langs->trans("WrongCustomerCode").')'; print '
'; print $langs->trans('SupplierCode').''; print $soc->code_fournisseur; if ($soc->check_codefournisseur() <> 0) print ' ('.$langs->trans("WrongSupplierCode").')'; print '
'.$langs->trans('Gencod').''.$soc->gencod.'
".$langs->trans('Address')."".nl2br($soc->address)."
'.$langs->trans('Zip').''.$soc->cp."'.$langs->trans('Town').''.$soc->ville."
'.$langs->trans('Country').''; $img=picto_from_langcode($soc->pays_code); print ($img?$img.' ':''); print $soc->pays; print '
'.$langs->trans('Phone').''.dol_print_phone($soc->tel,$soc->pays_code,0,$soc->id,'AC_TEL').''.$langs->trans('Fax').''.dol_print_phone($soc->fax,$soc->pays_code,0,$soc->id,'AC_FAX').'
'.$langs->trans('EMail').''; print dol_print_email($soc->email,0,$soc->id,'AC_EMAIL'); print ''.$langs->trans('Web').''; print dol_print_url($soc->url); print '
'.$langs->trans('VATIsUsed').''; print yn($soc->tva_assuj); print '
'; print ''; if ($mesg) print($mesg); if ($soc->client) formCategory($db,$soc,2); if ($soc->client && $soc->fournisseur) print '

'; if ($soc->fournisseur) formCategory($db,$soc,1); } else if ($_GET["id"] || $_GET["ref"]) { if ($_GET["type"] == 0) { $langs->load("products"); /* * Fiche categorie de produit */ require_once(DOL_DOCUMENT_ROOT."/lib/product.lib.php"); require_once(DOL_DOCUMENT_ROOT."/product/class/product.class.php"); // Produit $product = new Product($db); if ($_GET["ref"]) $result = $product->fetch('',$_GET["ref"]); if ($_GET["id"]) $result = $product->fetch($_GET["id"]); llxHeader("","",$langs->trans("CardProduct".$product->type)); $head=product_prepare_head($product, $user); $titre=$langs->trans("CardProduct".$product->type); $picto=($product->type==1?'service':'product'); dol_fiche_head($head, 'category', $titre,0,$picto); print ''; // Ref print ""; print ''; print ''; // Label print ''; print ''; // Status (to sell) print ''; // Status (to buy) print ''; print '
'.$langs->trans("Ref").''; print $html->showrefnav($product,'ref','',1,'ref'); print '
'.$langs->trans("Label").''.$product->libelle.'
'.$langs->trans("Status").' ('.$langs->trans("Sell").')'.''; print $product->getLibStatut(2,0); print '
'.$langs->trans("Status").' ('.$langs->trans("Buy").')'.''; print $product->getLibStatut(2,1); print '
'; print ''; if ($mesg) print($mesg); formCategory($db,$product,0); } if ($_GET["type"] == 3) { $langs->load("members"); /* * Fiche categorie d'adherent */ require_once(DOL_DOCUMENT_ROOT."/lib/member.lib.php"); require_once(DOL_DOCUMENT_ROOT."/adherents/class/adherent.class.php"); require_once(DOL_DOCUMENT_ROOT."/adherents/class/adherent_type.class.php"); // Produit $member = new Adherent($db); if ($_GET["ref"]) $result = $member->fetch('',$_GET["ref"]); if ($_GET["id"]) $result = $member->fetch($_GET["id"]); $membert = new AdherentType($db); $membert->fetch($member->typeid); llxHeader("","",$langs->trans("Member")); $head=member_prepare_head($member, $user); $titre=$langs->trans("Member"); $picto='user'; dol_fiche_head($head, 'category', $titre,0,$picto); $rowspan=5; if (empty($conf->global->ADHERENT_LOGIN_NOT_REQUIRED)) $rowspan+=1; if ($conf->societe->enabled) $rowspan++; print ''; // Ref print ''; print ''; // Login if (empty($conf->global->ADHERENT_LOGIN_NOT_REQUIRED)) { print ''; } // Morphy print ''; /*print '';*/ print ''; // Type print '\n"; // Company print ''; // Civility print ''; print ''; // Nom print ''; print ''; // Prenom print ''; print ''; // Status print ''; print '
'.$langs->trans("Ref").''; print $html->showrefnav($member,'rowid'); print '
'.$langs->trans("Login").''.$member->login.' 
'.$langs->trans("Nature").''.$member->getmorphylib().''; print $html->showphoto('memberphoto',$member); print '
'.$langs->trans("Type").''.$membert->getNomUrl(1)."
'.$langs->trans("Company").''.$member->societe.'
'.$langs->trans("UserTitle").''.$member->getCivilityLabel().' 
'.$langs->trans("Lastname").''.$member->nom.' 
'.$langs->trans("Firstname").''.$member->prenom.' 
'.$langs->trans("Status").''.$member->getLibStatut(4).'
'; print ''; if ($mesg) print($mesg); formCategory($db,$member,3); } } /** * Fonction Barre d'actions */ function formCategory($db,$object,$typeid) { global $user,$langs,$html,$bc; if ($typeid == 0) $title = $langs->trans("ProductsCategoriesShort"); if ($typeid == 1) $title = $langs->trans("SuppliersCategoriesShort"); if ($typeid == 2) $title = $langs->trans("CustomersProspectsCategoriesShort"); if ($typeid == 3) $title = $langs->trans("MembersCategoriesShort"); // Formulaire ajout dans une categorie print '
'; print_fiche_titre($title,'',''); print '
'; print ''; print ''; print ''; print ''; print ''; print ''; if ($user->rights->categorie->creer) { print ''; } print ''; print '
'; print $langs->trans("ClassifyInCategory"); print $html->select_all_categories($typeid); print ''; print ''; print "id.'&type='.$typeid)."'>"; print img_picto($langs->trans("Create"),'filenew'); print ""; print '
'; print '
'; print '
'; $c = new Categorie($db); $cats = $c->containing($object->id,$typeid); if (sizeof($cats) > 0) { if ($typeid == 0) $title=$langs->trans("ProductIsInCategories"); if ($typeid == 1) $title=$langs->trans("CompanyIsInSuppliersCategories"); if ($typeid == 2) $title=$langs->trans("CompanyIsInCustomersCategories"); if ($typeid == 3) $title=$langs->trans("MemberIsInCategories"); print "\n"; print ''; print ''; $var = true; foreach ($cats as $cat) { $ways = $cat->print_all_ways(); foreach ($ways as $way) { $var = ! $var; print ""; // Categorie print ""; // Lien supprimer print '"; print "\n"; } } print "
'.$title.':
"; //$c->id=; //print $c->getNomUrl(1); print img_object('','category').' '.$way."'; $permission=0; if ($typeid == 0) $permission=($user->rights->produit->creer || $user->rights->service->creer); if ($typeid == 1) $permission=$user->rights->societe->creer; if ($typeid == 2) $permission=$user->rights->societe->creer; if ($typeid == 3) $permission=$user->rights->adherent->creer; if ($permission) { print ""; print img_delete($langs->trans("DeleteFromCat")).' '; print $langs->trans("DeleteFromCat").""; } else { print ' '; } print "
\n"; } else if($cats < 0) { print $langs->trans("ErrorUnknown"); } else { if ($typeid == 0) $title=$langs->trans("ProductHasNoCategory"); if ($typeid == 1) $title=$langs->trans("CompanyHasNoCategory"); if ($typeid == 2) $title=$langs->trans("CompanyHasNoCategory"); if ($typeid == 3) $title=$langs->trans("MemberHasNoCategory"); print $title; print "
"; } } $db->close(); llxFooter('$Date: 2011/08/03 00:46:32 $ - $Revision: 1.65 $'); ?>