dolibarr/htdocs/fourn/fiche.php

499 lines
16 KiB
PHP
Raw Normal View History

<?php
2005-04-08 17:37:29 +02:00
/* Copyright (C) 2001-2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
2008-01-08 09:39:25 +01:00
* Copyright (C) 2003 Eric Seigne <erics@rycks.com>
* Copyright (C) 2004-2011 Laurent Destailleur <eldy@users.sourceforge.net>
2012-12-30 15:13:49 +01:00
* Copyright (C) 2005-2010 Regis Houssin <regis.houssin@capnetworks.com>
* Copyright (C) 2010-2013 Juanjo Menent <jmenent@2byte.es>
2002-05-06 21:10:48 +02:00
*
* 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
2002-05-06 21:10:48 +02:00
* (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
2011-08-01 01:45:11 +02:00
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2002-05-06 21:10:48 +02:00
*/
2005-04-28 22:33:30 +02:00
/**
2009-02-18 15:29:56 +01:00
* \file htdocs/fourn/fiche.php
* \ingroup fournisseur, facture
2010-10-30 12:52:53 +02:00
* \brief Page for supplier third party card (view, edit)
2009-02-18 13:26:55 +01:00
*/
require '../main.inc.php';
require_once DOL_DOCUMENT_ROOT.'/fourn/class/fournisseur.class.php';
require_once DOL_DOCUMENT_ROOT.'/fourn/class/fournisseur.facture.class.php';
require_once DOL_DOCUMENT_ROOT.'/contact/class/contact.class.php';
require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
2012-09-15 10:01:35 +02:00
if (! empty($conf->adherent->enabled)) require_once DOL_DOCUMENT_ROOT.'/adherents/class/adherent.class.php';
2002-05-06 21:10:48 +02:00
$langs->load('suppliers');
$langs->load('products');
$langs->load('bills');
$langs->load('orders');
$langs->load('companies');
2006-07-30 20:06:28 +02:00
$langs->load('commercial');
2004-08-06 02:46:07 +02:00
$action = GETPOST('action');
2008-02-25 17:30:43 +01:00
// Security check
2012-02-27 22:26:22 +01:00
$id = (GETPOST('socid','int') ? GETPOST('socid','int') : GETPOST('id','int'));
if ($user->societe_id) $id=$user->societe_id;
$result = restrictedArea($user, 'societe&fournisseur', $id, '&societe');
$object = new Fournisseur($db);
/*
* Action
*/
if ($action == 'setsupplieraccountancycode')
{
$result=$object->fetch($id);
$object->code_compta_fournisseur=$_POST["supplieraccountancycode"];
$result=$object->update($object->id,$user,1,0,1);
if ($result < 0)
{
$mesg=join(',',$object->errors);
}
$action="";
}
// conditions de reglement
if ($action == 'setconditions' && $user->rights->societe->creer)
{
$object->fetch($id);
$result=$object->setPaymentTerms(GETPOST('cond_reglement_supplier_id','int'));
if ($result < 0) dol_print_error($db,$object->error);
}
// mode de reglement
if ($action == 'setmode' && $user->rights->societe->creer)
{
$object->fetch($id);
$result=$object->setPaymentMethods(GETPOST('mode_reglement_supplier_id','int'));
if ($result < 0) dol_print_error($db,$object->error);
}
2005-06-11 13:34:38 +02:00
2002-05-06 21:10:48 +02:00
/*
* View
2009-02-18 13:26:55 +01:00
*/
2009-02-18 15:29:56 +01:00
2007-12-05 14:37:39 +01:00
$contactstatic = new Contact($db);
$form = new Form($db);
2002-05-06 21:10:48 +02:00
if ($object->fetch($id))
2004-02-12 19:14:58 +01:00
{
2009-03-07 01:56:00 +01:00
llxHeader('',$langs->trans('SupplierCard'));
2009-02-18 13:26:55 +01:00
/*
* Affichage onglets
*/
$head = societe_prepare_head($object);
2009-02-18 13:26:55 +01:00
dol_fiche_head($head, 'supplier', $langs->trans("ThirdParty"),0,'company');
2009-02-18 13:26:55 +01:00
2013-04-21 17:56:29 +02:00
print '<div class="fichecenter"><div class="fichehalfleft">';
2009-02-18 13:26:55 +01:00
print '<table width="100%" class="border">';
print '<tr><td width="30%">'.$langs->trans("ThirdPartyName").'</td><td width="70%" colspan="3">';
$object->next_prev_filter="te.fournisseur = 1";
print $form->showrefnav($object,'socid','',($user->societe_id?0:1),'rowid','nom','','');
2010-07-14 22:47:35 +02:00
print '</td></tr>';
2009-02-18 13:26:55 +01:00
if (! empty($conf->global->SOCIETE_USEPREFIX)) // Old not used prefix field
{
print '<tr><td>'.$langs->trans('Prefix').'</td><td colspan="3">'.$object->prefix_comm.'</td></tr>';
}
2009-02-18 13:26:55 +01:00
if ($object->fournisseur)
2009-02-18 13:26:55 +01:00
{
2013-05-24 18:20:28 +02:00
print '<tr>';
print '<td class="nowrap">'.$langs->trans("SupplierCode"). '</td><td colspan="3">';
print $object->code_fournisseur;
if ($object->check_codefournisseur() <> 0) print ' <font class="error">('.$langs->trans("WrongSupplierCode").')</font>';
print '</td>';
print '</tr>';
2013-05-24 18:20:28 +02:00
$langs->load('compta');
print '<tr>';
print '<td>';
print $form->editfieldkey("SupplierAccountancyCode",'supplieraccountancycode',$object->code_compta_fournisseur,$object,$user->rights->societe->creer);
print '</td><td colspan="3">';
print $form->editfieldval("SupplierAccountancyCode",'supplieraccountancycode',$object->code_compta_fournisseur,$object,$user->rights->societe->creer);
print '</td>';
print '</tr>';
2009-02-18 13:26:55 +01:00
}
// Address
2011-05-12 21:01:14 +02:00
print '<tr><td valign="top">'.$langs->trans("Address").'</td><td colspan="3">';
dol_print_address($object->address,'gmap','thirdparty',$object->id);
2011-05-12 21:01:14 +02:00
print '</td></tr>';
2009-02-18 13:26:55 +01:00
// Zip / Town
print '<tr><td class="nowrap">'.$langs->trans("Zip").' / '.$langs->trans("Town").'</td><td colspan="3">'.$object->zip.(($object->zip && $object->town)?' / ':'').$object->town.'</td>';
print '</tr>';
2009-02-18 13:26:55 +01:00
// Country
print '<tr><td>'.$langs->trans("Country").'</td><td colspan="3">';
$img=picto_from_langcode($object->country_code);
if ($object->isInEEC()) print $form->textwithpicto(($img?$img.' ':'').$object->country,$langs->trans("CountryIsInEEC"),1,0);
else print ($img?$img.' ':'').$object->country;
2009-02-18 13:26:55 +01:00
print '</td></tr>';
// EMail
print '<td>'.$langs->trans('EMail').'</td><td colspan="3">'.dol_print_email($object->email,0,$object->id,'AC_EMAIL').'</td></tr>';
// Web
print '<tr><td>'.$langs->trans("Web").'</td><td colspan="3">'.dol_print_url($object->url).'</td></tr>';
2009-02-18 15:29:56 +01:00
// Phone
print '<tr><td>'.$langs->trans("Phone").'</td><td style="min-width: 25%;">'.dol_print_phone($object->phone,$object->country_code,0,$object->id,'AC_TEL').'</td>';
2009-02-18 15:29:56 +01:00
// Fax
print '<td>'.$langs->trans("Fax").'</td><td style="min-width: 25%;">'.dol_print_phone($object->fax,$object->country_code,0,$object->id,'AC_FAX').'</td></tr>';
2009-02-18 13:26:55 +01:00
// Assujetti a TVA ou pas
print '<tr>';
print '<td class="nowrap">'.$langs->trans('VATIsUsed').'</td><td colspan="3">';
print yn($object->tva_assuj);
2009-02-18 13:26:55 +01:00
print '</td>';
print '</tr>';
2010-02-08 04:38:05 +01:00
// Local Taxes
//TODO: Place into a function to control showing by country or study better option
if($mysoc->country_code=='ES')
{
if($mysoc->localtax1_assuj=="1" && $mysoc->localtax2_assuj=="1")
{
print '<tr><td class="nowrap">'.$langs->trans('LocalTax1IsUsedES').'</td><td colspan="3">';
print yn($object->localtax1_assuj);
print '</td></tr>';
print '<tr><td class="nowrap">'.$langs->trans('LocalTax2IsUsedES').'</td><td colspan="3">';
print yn($object->localtax2_assuj);
print '</td></tr>';
}
elseif($mysoc->localtax1_assuj=="1")
{
print '<tr><td>'.$langs->trans("LocalTax1IsUsedES").'</td><td colspan="3">';
print yn($object->localtax1_assuj);
print '</td></tr>';
}
elseif($mysoc->localtax2_assuj=="1")
{
print '<tr><td>'.$langs->trans("LocalTax2IsUsedES").'</td><td colspan="3">';
print yn($object->localtax2_assuj);
print '</td></tr>';
}
if ($mysoc->localtax2_assuj!="1")
{
print '<tr><td>'.$langs->transcountry("LocalTax2IsUsed",$mysoc->country_code).'</td><td colspan="3">';
print yn($object->localtax2_assuj);
print '</td><tr>';
}
}
2010-05-08 19:17:17 +02:00
2011-05-12 21:01:14 +02:00
// TVA Intra
print '<tr><td class="nowrap">'.$langs->trans('VATIntra').'</td><td colspan="3">';
print $object->tva_intra;
2011-05-12 21:01:14 +02:00
print '</td></tr>';
// Conditions de reglement par defaut
$langs->load('bills');
$form = new Form($db);
print '<tr><td>';
print '<table width="100%" class="nobordernopadding"><tr><td>';
print $langs->trans('PaymentConditions');
print '<td>';
if (($action != 'editconditions') && $user->rights->societe->creer) print '<td align="right"><a href="'.$_SERVER["PHP_SELF"].'?action=editconditions&amp;socid='.$object->id.'">'.img_edit($langs->trans('SetConditions'),1).'</a></td>';
print '</tr></table>';
print '</td><td colspan="3">';
if ($action == 'editconditions')
{
$form->form_conditions_reglement($_SERVER['PHP_SELF'].'?socid='.$object->id,$object->cond_reglement_supplier_id,'cond_reglement_supplier_id',-1,1);
}
else
{
$form->form_conditions_reglement($_SERVER['PHP_SELF'].'?socid='.$object->id,$object->cond_reglement_supplier_id,'none');
}
print "</td>";
print '</tr>';
// Mode de reglement par defaut
print '<tr><td class="nowrap">';
print '<table width="100%" class="nobordernopadding"><tr><td class="nowrap">';
print $langs->trans('PaymentMode');
print '<td>';
if (($action != 'editmode') && $user->rights->societe->creer) print '<td align="right"><a href="'.$_SERVER["PHP_SELF"].'?action=editmode&amp;socid='.$object->id.'">'.img_edit($langs->trans('SetMode'),1).'</a></td>';
print '</tr></table>';
print '</td><td colspan="3">';
if ($action == 'editmode')
{
$form->form_modes_reglement($_SERVER['PHP_SELF'].'?socid='.$object->id,$object->mode_reglement_supplier_id,'mode_reglement_supplier_id');
}
else
{
$form->form_modes_reglement($_SERVER['PHP_SELF'].'?socid='.$object->id,$object->mode_reglement_supplier_id,'none');
}
print "</td>";
print '</tr>';
2011-05-12 21:01:14 +02:00
// Module Adherent
2012-09-15 10:01:35 +02:00
if (! empty($conf->adherent->enabled))
{
$langs->load("members");
$langs->load("users");
print '<tr><td width="25%" valign="top">'.$langs->trans("LinkedToDolibarrMember").'</td>';
print '<td colspan="3">';
$adh=new Adherent($db);
$result=$adh->fetch('','',$object->id);
if ($result > 0)
{
$adh->ref=$adh->getFullName($langs);
print $adh->getNomUrl(1);
}
else
{
2013-11-05 15:29:58 +01:00
print $langs->trans("ThirdpartyNotLinkedToMember");
}
print '</td>';
print "</tr>\n";
}
2009-02-18 13:26:55 +01:00
print '</table>';
2013-06-05 16:24:32 +02:00
print '</div><div class="fichehalfright"><div class="ficheaddleft">';
2013-04-21 17:56:29 +02:00
2009-02-18 13:26:55 +01:00
$var=true;
$MAXLIST=5;
// Lien recap
print '<table class="noborder" width="100%">';
print '<tr class="liste_titre">';
print '<td colspan="4"><table width="100%" class="nobordernopadding"><tr><td>'.$langs->trans("Summary").'</td>';
print '<td align="right"><a href="'.DOL_URL_ROOT.'/fourn/recap-fourn.php?socid='.$object->id.'">'.$langs->trans("ShowSupplierPreview").'</a></td></tr></table></td>';
2009-02-18 13:26:55 +01:00
print '</tr>';
print '</table>';
2009-02-21 14:45:25 +01:00
/*
* List of products
*/
2012-09-15 11:21:22 +02:00
if (! empty($conf->product->enabled) || ! empty($conf->service->enabled))
2009-02-21 14:45:25 +01:00
{
$langs->load("products");
print '<table class="noborder" width="100%">';
print '<tr class="liste_titre">';
print '<td>'.$langs->trans("ProductsAndServices").'</td><td align="right">';
2011-12-30 14:45:07 +01:00
print '<a href="'.DOL_URL_ROOT.'/fourn/product/liste.php?fourn_id='.$object->id.'">'.$langs->trans("All").' ('.$object->nbOfProductRefs().')';
2009-02-21 14:45:25 +01:00
print '</a></td></tr></table>';
}
2009-02-18 13:26:55 +01:00
print '<br>';
/*
* Last orders
2009-02-18 13:26:55 +01:00
*/
$orderstatic = new CommandeFournisseur($db);
if ($user->rights->fournisseur->commande->lire)
{
// TODO move to DAO class
2010-05-08 19:17:17 +02:00
$sql = "SELECT p.rowid,p.ref, p.date_commande as dc, p.fk_statut";
$sql.= " FROM ".MAIN_DB_PREFIX."commande_fournisseur as p ";
$sql.= " WHERE p.fk_soc =".$object->id;
$sql.= " ORDER BY p.date_commande DESC";
$sql.= " ".$db->plimit($MAXLIST);
$resql=$db->query($sql);
if ($resql)
{
$i = 0 ;
$num = $db->num_rows($resql);
if ($num > 0)
{
2011-11-03 01:59:13 +01:00
print '<table class="noborder" width="100%">';
print '<tr class="liste_titre">';
print '<td colspan="3">';
print '<table class="nobordernopadding" width="100%"><tr><td>'.$langs->trans("LastOrders",($num<$MAXLIST?"":$MAXLIST)).'</td>';
print '<td align="right"><a href="commande/liste.php?socid='.$object->id.'">'.$langs->trans("AllOrders").' ('.$num.')</td>';
print '<td width="20px" align="right"><a href="'.DOL_URL_ROOT.'/commande/stats/index.php?mode=supplier&socid='.$object->id.'">'.img_picto($langs->trans("Statistics"),'stats').'</a></td>';
print '</tr></table>';
print '</td></tr>';
}
while ($i < $num && $i <= $MAXLIST)
{
$obj = $db->fetch_object($resql);
$var=!$var;
2013-06-20 09:18:12 +02:00
print "<tr ".$bc[$var].">";
print '<td><a href="commande/fiche.php?id='.$obj->rowid.'">'.img_object($langs->trans("ShowOrder"),"order")." ".$obj->ref.'</a></td>';
print '<td align="center" width="80">';
if ($obj->dc)
{
2010-05-08 19:17:17 +02:00
print dol_print_date($db->jdate($obj->dc),'day');
}
else
{
print "-";
}
print '</td>';
print '<td align="right" class="nowrap">'.$orderstatic->LibStatut($obj->fk_statut,5).'</td>';
print '</tr>';
$i++;
}
$db->free($resql);
2011-11-03 01:59:13 +01:00
if ($num >0) print "</table>";
}
else
{
dol_print_error($db);
}
}
2004-11-30 20:24:11 +01:00
/*
* Last invoices
*/
$MAXLIST=5;
$langs->load('bills');
$facturestatic = new FactureFournisseur($db);
if ($user->rights->fournisseur->facture->lire)
{
// TODO move to DAO class
2013-04-01 16:04:15 +02:00
$sql = 'SELECT f.rowid,f.libelle,f.ref_supplier,f.fk_statut,f.datef as df,f.total_ttc as amount,f.paye,';
2010-05-21 00:23:58 +02:00
$sql.= ' SUM(pf.amount) as am';
$sql.= ' FROM '.MAIN_DB_PREFIX.'facture_fourn as f';
$sql.= ' LEFT JOIN '.MAIN_DB_PREFIX.'paiementfourn_facturefourn as pf ON f.rowid=pf.fk_facturefourn';
$sql.= ' WHERE f.fk_soc = '.$object->id;
2013-04-01 16:04:15 +02:00
$sql.= ' GROUP BY f.rowid,f.libelle,f.ref_supplier,f.fk_statut,f.datef,f.total_ttc,f.paye';
2010-05-21 00:23:58 +02:00
$sql.= ' ORDER BY f.datef DESC';
$resql=$db->query($sql);
if ($resql)
{
$i = 0 ;
$num = $db->num_rows($resql);
if ($num > 0)
{
2011-11-03 01:59:13 +01:00
print '<table class="noborder" width="100%">';
print '<tr class="liste_titre">';
print '<td colspan="4">';
Merge remote-tracking branch 'origin/3.4' into develop Conflicts: ChangeLog htdocs/core/class/commonobject.class.php htdocs/core/class/html.formfile.class.php htdocs/core/modules/expedition/doc/pdf_expedition_rouget.modules.php htdocs/core/modules/livraison/pdf/pdf_typhon.modules.php htdocs/core/modules/modFacture.class.php htdocs/core/modules/modFournisseur.class.php htdocs/core/modules/supplier_invoice/mod_facture_fournisseur_tulip.php htdocs/expedition/fiche.php htdocs/fourn/fiche.php htdocs/langs/el_GR/admin.lang htdocs/langs/el_GR/agenda.lang htdocs/langs/el_GR/banks.lang htdocs/langs/el_GR/bills.lang htdocs/langs/el_GR/bookmarks.lang htdocs/langs/el_GR/boxes.lang htdocs/langs/el_GR/cashdesk.lang htdocs/langs/el_GR/categories.lang htdocs/langs/el_GR/commercial.lang htdocs/langs/el_GR/companies.lang htdocs/langs/el_GR/compta.lang htdocs/langs/el_GR/contracts.lang htdocs/langs/el_GR/cron.lang htdocs/langs/el_GR/deliveries.lang htdocs/langs/el_GR/dict.lang htdocs/langs/el_GR/donations.lang htdocs/langs/el_GR/ecm.lang htdocs/langs/el_GR/errors.lang htdocs/langs/el_GR/exports.lang htdocs/langs/el_GR/externalsite.lang htdocs/langs/el_GR/ftp.lang htdocs/langs/el_GR/help.lang htdocs/langs/el_GR/holiday.lang htdocs/langs/el_GR/install.lang htdocs/langs/el_GR/interventions.lang htdocs/langs/el_GR/languages.lang htdocs/langs/el_GR/ldap.lang htdocs/langs/el_GR/mailmanspip.lang htdocs/langs/el_GR/mails.lang htdocs/langs/el_GR/main.lang htdocs/langs/el_GR/margins.lang htdocs/langs/el_GR/members.lang htdocs/langs/el_GR/opensurvey.lang htdocs/langs/el_GR/orders.lang htdocs/langs/el_GR/oscommerce.lang htdocs/langs/el_GR/other.lang htdocs/langs/el_GR/paybox.lang htdocs/langs/el_GR/paypal.lang htdocs/langs/el_GR/products.lang htdocs/langs/el_GR/projects.lang htdocs/langs/el_GR/propal.lang htdocs/langs/el_GR/sendings.lang htdocs/langs/el_GR/shop.lang htdocs/langs/el_GR/sms.lang htdocs/langs/el_GR/stocks.lang htdocs/langs/el_GR/suppliers.lang htdocs/langs/el_GR/trips.lang htdocs/langs/el_GR/users.lang htdocs/langs/el_GR/withdrawals.lang htdocs/langs/el_GR/workflow.lang htdocs/margin/productMargins.php
2013-08-24 22:41:32 +02:00
print '<table class="nobordernopadding" width="100%"><tr><td>'.$langs->trans('LastSuppliersBills',($num<=$MAXLIST?"":$MAXLIST)).'</td><td align="right"><a href="'.DOL_URL_ROOT.'/fourn/facture/list.php?socid='.$object->id.'">'.$langs->trans('AllBills').' ('.$num.')</td>';
print '<td width="20px" align="right"><a href="'.DOL_URL_ROOT.'/compta/facture/stats/index.php?mode=supplier&socid='.$object->id.'">'.img_picto($langs->trans("Statistics"),'stats').'</a></td>';
print '</tr></table>';
print '</td></tr>';
}
while ($i < min($num,$MAXLIST))
{
$obj = $db->fetch_object($resql);
$var=!$var;
print '<tr '.$bc[$var].'>';
print '<td>';
print '<a href="facture/fiche.php?facid='.$obj->rowid.'">';
2013-04-01 16:04:15 +02:00
print img_object($langs->trans('ShowBill'),'bill').' '.$obj->ref_supplier.'</a> '.dol_trunc($obj->libelle,14).'</td>';
print '<td align="center" class="nowrap">'.dol_print_date($db->jdate($obj->df),'day').'</td>';
print '<td align="right" class="nowrap">'.price($obj->amount).'</td>';
print '<td align="right" class="nowrap">';
2010-05-21 00:23:58 +02:00
print $facturestatic->LibStatut($obj->paye,$obj->fk_statut,5,$obj->am);
print '</td>';
print '</tr>';
$i++;
}
$db->free($resql);
2011-11-03 01:59:13 +01:00
if ($num > 0) print '</table>';
}
else
{
dol_print_error($db);
}
}
2003-01-28 18:54:37 +01:00
2013-04-21 17:56:29 +02:00
print '</div></div></div>';
print '<div style="clear:both"></div>';
2013-04-21 17:56:29 +02:00
dol_fiche_end();
/*
* Barre d'actions
*/
print '<div class="tabsAction">';
if ($user->rights->fournisseur->commande->creer)
{
$langs->load("orders");
print '<a class="butAction" href="'.DOL_URL_ROOT.'/fourn/commande/fiche.php?action=create&socid='.$object->id.'">'.$langs->trans("AddOrder").'</a>';
}
if ($user->rights->fournisseur->facture->creer)
{
$langs->load("bills");
print '<a class="butAction" href="'.DOL_URL_ROOT.'/fourn/facture/fiche.php?action=create&socid='.$object->id.'">'.$langs->trans("AddBill").'</a>';
}
// Add action
2012-09-15 11:21:22 +02:00
if (! empty($conf->agenda->enabled) && ! empty($conf->global->MAIN_REPEATTASKONEACHTAB))
{
if ($user->rights->agenda->myactions->create)
{
print '<a class="butAction" href="'.DOL_URL_ROOT.'/comm/action/fiche.php?action=create&socid='.$object->id.'">'.$langs->trans("AddAction").'</a>';
}
else
{
print '<a class="butAction" title="'.dol_escape_js($langs->trans("NotAllowed")).'" href="#">'.$langs->trans("AddAction").'</a>';
}
}
2009-02-18 13:26:55 +01:00
print '</div>';
print '<br>';
if (! empty($conf->global->MAIN_REPEATCONTACTONEACHTAB))
{
2011-06-13 15:07:10 +02:00
print '<br>';
// List of contacts
show_contacts($conf,$langs,$db,$object,$_SERVER["PHP_SELF"].'?socid='.$object->id);
}
2012-10-18 10:36:53 +02:00
// Addresses list
if (! empty($conf->global->SOCIETE_ADDRESSES_MANAGEMENT) && ! empty($conf->global->MAIN_REPEATADDRESSONEACHTAB))
{
2012-07-02 19:30:37 +02:00
$result=show_addresses($conf,$langs,$db,$object,$_SERVER["PHP_SELF"].'?socid='.$object->id);
}
if (! empty($conf->global->MAIN_REPEATTASKONEACHTAB))
{
print load_fiche_titre($langs->trans("ActionsOnCompany"),'','');
// List of todo actions
show_actions_todo($conf,$langs,$db,$object);
2010-02-27 21:30:55 +01:00
// List of done actions
show_actions_done($conf,$langs,$db,$object);
}
2003-05-13 16:27:40 +02:00
}
else
{
dol_print_error($db);
2002-05-06 21:10:48 +02:00
}
llxFooter();
2011-12-28 15:21:29 +01:00
$db->close();
2002-05-06 21:10:48 +02:00
?>