123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155 |
- <?php
- /* Copyright (C) 2001-2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
- * Copyright (C) 2004-2015 Laurent Destailleur <eldy@users.sourceforge.net>
- * Copyright (C) 2004 Eric Seigne <eric.seigne@ryxeo.com>
- * Copyright (C) 2006 Andre Cianfarani <acianfa@free.fr>
- * Copyright (C) 2005-2012 Regis Houssin <regis.houssin@capnetworks.com>
- * Copyright (C) 2008 Raphael Bertrand (Resultic) <raphael.bertrand@resultic.fr>
- * Copyright (C) 2010-2014 Juanjo Menent <jmenent@2byte.es>
- * Copyright (C) 2013 Alexandre Spangaro <aspangaro.dolibarr@gmail.com>
- * Copyright (C) 2015 Frederic France <frederic.france@free.fr>
- * Copyright (C) 2015 Marcos García <marcosgdf@gmail.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 <http://www.gnu.org/licenses/>.
- */
- /**
- * \file htdocs/comm/card.php
- * \ingroup commercial compta
- * \brief Page to show customer card of a third party
- */
- require '../main.inc.php';
- require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
- require_once DOL_DOCUMENT_ROOT.'/core/lib/date.lib.php';
- require_once DOL_DOCUMENT_ROOT.'/societe/class/client.class.php';
- require_once DOL_DOCUMENT_ROOT.'/contact/class/contact.class.php';
- require_once DOL_DOCUMENT_ROOT.'/core/class/html.formcompany.class.php';
- require_once DOL_DOCUMENT_ROOT . '/categories/class/categorie.class.php';
- if (! empty($conf->facture->enabled)) require_once DOL_DOCUMENT_ROOT.'/compta/facture/class/facture.class.php';
- if (! empty($conf->propal->enabled)) require_once DOL_DOCUMENT_ROOT.'/comm/propal/class/propal.class.php';
- if (! empty($conf->commande->enabled)) require_once DOL_DOCUMENT_ROOT.'/commande/class/commande.class.php';
- if (! empty($conf->expedition->enabled)) require_once DOL_DOCUMENT_ROOT.'/expedition/class/expedition.class.php';
- if (! empty($conf->contrat->enabled)) require_once DOL_DOCUMENT_ROOT.'/contrat/class/contrat.class.php';
- if (! empty($conf->adherent->enabled)) require_once DOL_DOCUMENT_ROOT.'/adherents/class/adherent.class.php';
- if (! empty($conf->ficheinter->enabled)) require_once DOL_DOCUMENT_ROOT.'/fichinter/class/fichinter.class.php';
- $langs->load("companies");
- $langs->load('banks');
- if (! empty($conf->contrat->enabled)) $langs->load("contracts");
- if (! empty($conf->commande->enabled)) $langs->load("orders");
- if (! empty($conf->expedition->enabled)) $langs->load("sendings");
- if (! empty($conf->facture->enabled)) $langs->load("bills");
- if (! empty($conf->projet->enabled)) $langs->load("projects");
- if (! empty($conf->ficheinter->enabled)) $langs->load("interventions");
- if (! empty($conf->notification->enabled)) $langs->load("mails");
- // Security check
- $id = (GETPOST('socid','int') ? GETPOST('socid','int') : GETPOST('id','int'));
- if ($user->societe_id > 0) $id=$user->societe_id;
- $result = restrictedArea($user,'societe',$id,'&societe');
- $action = GETPOST('action','aZ09');
- $mode = GETPOST("mode");
- $sortfield = GETPOST("sortfield",'alpha');
- $sortorder = GETPOST("sortorder",'alpha');
- $page = GETPOST("page",'int');
- if (empty($page) || $page == -1) { $page = 0; } // If $page is not defined, or '' or -1
- $offset = $conf->liste_limit * $page;
- $pageprev = $page - 1;
- $pagenext = $page + 1;
- if (! $sortorder) $sortorder="ASC";
- if (! $sortfield) $sortfield="nom";
- $cancelbutton = GETPOST('cancel');
- $object = new Client($db);
- $extrafields = new ExtraFields($db);
- // fetch optionals attributes and labels
- $extralabels=$extrafields->fetch_name_optionals_label($object->table_element);
- // Initialize technical object to manage hooks of thirdparties. Note that conf->hooks_modules contains array array
- $hookmanager->initHooks(array('commcard','globalcard'));
- /*
- * Actions
- */
- $parameters = array('id' => $id, 'socid' => $id);
- $reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action); // Note that $action and $object may have been modified by some
- if ($reshook < 0) setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
- if (empty($reshook))
- {
- if ($cancelbutton)
- {
- $action="";
- }
- // set accountancy code
- if ($action == 'setcustomeraccountancycode')
- {
- $result=$object->fetch($id);
- $object->code_compta=$_POST["customeraccountancycode"];
- $result=$object->update($object->id,$user,1,1,0);
- if ($result < 0) setEventMessages($object->error, $object->errors, 'errors');
- }
- // conditions de reglement
- if ($action == 'setconditions' && $user->rights->societe->creer)
- {
- $object->fetch($id);
- $result=$object->setPaymentTerms(GETPOST('cond_reglement_id','int'));
- if ($result < 0) setEventMessages($object->error, $object->errors, 'errors');
- }
- // mode de reglement
- if ($action == 'setmode' && $user->rights->societe->creer)
- {
- $object->fetch($id);
- $result=$object->setPaymentMethods(GETPOST('mode_reglement_id','int'));
- if ($result < 0) setEventMessages($object->error, $object->errors, 'errors');
- }
- // Bank account
- if ($action == 'setbankaccount' && $user->rights->societe->creer)
- {
- $object->fetch($id);
- $result=$object->setBankAccount(GETPOST('fk_account','int'));
- if ($result < 0) setEventMessages($object->error, $object->errors, 'errors');
- }
-
- // customer preferred shipping method
- if ($action == 'setshippingmethod' && $user->rights->societe->creer)
- {
- $object->fetch($id);
- $result = $object->setShippingMethod(GETPOST('shipping_method_id','int'));
- if ($result < 0) setEventMessages($object->error, $object->errors, 'errors');
- }
- // assujetissement a la TVA
- if ($action == 'setassujtva' && $user->rights->societe->creer)
- {
- $object->fetch($id);
- $object->tva_assuj=$_POST['assujtva_value'];
- $result=$object->update($object->id);
- if ($result < 0) setEventMessages($object->error, $object->errors, 'errors');
- }
- // set prospect level
- if ($action == 'setprospectlevel' && $user->rights->societe->creer)
- {
- $object->fetch($id);
- $object->fk_prospectlevel=GETPOST('prospect_level_id','alpha');
- $result=$object->update($object->id, $user);
- if ($result < 0) setEventMessages($object->error, $object->errors, 'errors');
- }
- // set communication status
- if ($action == 'setstcomm')
- {
- $object->fetch($id);
- $object->stcomm_id=dol_getIdFromCode($db, GETPOST('stcomm','alpha'), 'c_stcomm');
- $result=$object->update($object->id, $user);
- if ($result < 0) setEventMessages($object->error, $object->errors, 'errors');
- }
- // update outstandng limit
- if ($action == 'setoutstanding_limit')
- {
- $object->fetch($id);
- $object->outstanding_limit=GETPOST('outstanding_limit');
- $result=$object->update($object->id, $user);
- if ($result < 0) setEventMessages($object->error, $object->errors, 'errors');
- }
- }
- /*
- * View
- */
- $contactstatic = new Contact($db);
- $userstatic=new User($db);
- $form = new Form($db);
- $formcompany=new FormCompany($db);
- if ($id > 0 && empty($object->id))
- {
- // Load data of third party
- $res=$object->fetch($id);
- if ($object->id <= 0) dol_print_error($db,$object->error);
- }
- $title=$langs->trans("CustomerCard");
- if (! empty($conf->global->MAIN_HTML_TITLE) && preg_match('/thirdpartynameonly/',$conf->global->MAIN_HTML_TITLE) && $object->name) $title=$object->name;
- $help_url='EN:Module_Third_Parties|FR:Module_Tiers|ES:Empresas';
- llxHeader('',$title,$help_url);
- if ($id > 0)
- {
- $head = societe_prepare_head($object);
- dol_fiche_head($head, 'customer', $langs->trans("ThirdParty"), -1, 'company');
- $linkback = '<a href="'.DOL_URL_ROOT.'/societe/list.php">'.$langs->trans("BackToList").'</a>';
-
- dol_banner_tab($object, 'socid', $linkback, ($user->societe_id?0:1), 'rowid', 'nom');
-
- print '<div class="fichecenter"><div class="fichehalfleft">';
- print '<div class="underbanner clearboth"></div>';
- print '<table class="border" width="100%">';
- // Prospect/Customer
- print '<tr><td class="titlefield">'.$langs->trans('ProspectCustomer').'</td><td>';
- print $object->getLibCustProspStatut();
- print '</td></tr>';
- // Prefix
- if (! empty($conf->global->SOCIETE_USEPREFIX)) // Old not used prefix field
- {
- print '<tr><td>'.$langs->trans("Prefix").'</td><td>';
- print ($object->prefix_comm?$object->prefix_comm:' ');
- print '</td></tr>';
- }
- if ($object->client)
- {
- $langs->load("compta");
- print '<tr><td>';
- print $langs->trans('CustomerCode').'</td><td>';
- print $object->code_client;
- if ($object->check_codeclient() <> 0) print ' <font class="error">('.$langs->trans("WrongCustomerCode").')</font>';
- print '</td></tr>';
- print '<tr>';
- print '<td>';
- print $form->editfieldkey("CustomerAccountancyCode",'customeraccountancycode',$object->code_compta,$object,$user->rights->societe->creer);
- print '</td><td>';
- print $form->editfieldval("CustomerAccountancyCode",'customeraccountancycode',$object->code_compta,$object,$user->rights->societe->creer);
- print '</td>';
- print '</tr>';
- }
- // Assujeti a TVA ou pas
- print '<tr>';
- print '<td class="nowrap">'.$langs->trans('VATIsUsed').'</td><td>';
- print yn($object->tva_assuj);
- print '</td>';
- print '</tr>';
- // Local Taxes
- if ($mysoc->useLocalTax(1))
- {
- print '<tr><td class="nowrap">'.$langs->transcountry("LocalTax1IsUsed", $mysoc->country_code).'</td><td>';
- print yn($object->localtax1_assuj);
- print '</td></tr>';
- }
- if ($mysoc->useLocalTax(2))
- {
- print '<tr><td class="nowrap">'.$langs->transcountry("LocalTax2IsUsed", $mysoc->country_code).'</td><td>';
- print yn($object->localtax2_assuj);
- print '</td></tr>';
- }
- // TVA Intra
- print '<tr><td class="nowrap">'.$langs->trans('VATIntra').'</td><td>';
- print $object->tva_intra;
- print '</td></tr>';
- // Conditions de reglement par defaut
- $langs->load('bills');
- 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&socid='.$object->id.'">'.img_edit($langs->trans('SetConditions'),1).'</a></td>';
- print '</tr></table>';
- print '</td><td>';
- if ($action == 'editconditions')
- {
- $form->form_conditions_reglement($_SERVER['PHP_SELF'].'?socid='.$object->id, $object->cond_reglement_id, 'cond_reglement_id',1);
- }
- else
- {
- $form->form_conditions_reglement($_SERVER['PHP_SELF'].'?socid='.$object->id, $object->cond_reglement_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&socid='.$object->id.'">'.img_edit($langs->trans('SetMode'),1).'</a></td>';
- print '</tr></table>';
- print '</td><td>';
- if ($action == 'editmode')
- {
- $form->form_modes_reglement($_SERVER['PHP_SELF'].'?socid='.$object->id,$object->mode_reglement_id,'mode_reglement_id');
- }
- else
- {
- $form->form_modes_reglement($_SERVER['PHP_SELF'].'?socid='.$object->id,$object->mode_reglement_id,'none');
- }
- print "</td>";
- print '</tr>';
- // Compte bancaire par défaut
- print '<tr><td class="nowrap">';
- print '<table width="100%" class="nobordernopadding"><tr><td class="nowrap">';
- print $langs->trans('PaymentBankAccount');
- print '<td>';
- if (($action != 'editbankaccount') && $user->rights->societe->creer) print '<td align="right"><a href="'.$_SERVER["PHP_SELF"].'?action=editbankaccount&socid='.$object->id.'">'.img_edit($langs->trans('SetBankAccount'),1).'</a></td>';
- print '</tr></table>';
- print '</td><td>';
- if ($action == 'editbankaccount')
- {
- $form->formSelectAccount($_SERVER['PHP_SELF'].'?socid='.$object->id,$object->fk_account,'fk_account',1);
- }
- else
- {
- $form->formSelectAccount($_SERVER['PHP_SELF'].'?socid='.$object->id,$object->fk_account,'none');
- }
- print "</td>";
- print '</tr>';
- // Relative discounts (Discounts-Drawbacks-Rebates)
- print '<tr><td class="nowrap">';
- print '<table width="100%" class="nobordernopadding"><tr><td class="nowrap">';
- print $langs->trans("CustomerRelativeDiscountShort");
- print '<td><td align="right">';
- if ($user->rights->societe->creer && !$user->societe_id > 0)
- {
- print '<a href="'.DOL_URL_ROOT.'/comm/remise.php?id='.$object->id.'">'.img_edit($langs->trans("Modify")).'</a>';
- }
- print '</td></tr></table>';
- print '</td><td>'.($object->remise_percent?'<a href="'.DOL_URL_ROOT.'/comm/remise.php?id='.$object->id.'">'.$object->remise_percent.'%</a>':'').'</td>';
- print '</tr>';
- // Absolute discounts (Discounts-Drawbacks-Rebates)
- print '<tr><td class="nowrap">';
- print '<table width="100%" class="nobordernopadding">';
- print '<tr><td class="nowrap">';
- print $langs->trans("CustomerAbsoluteDiscountShort");
- print '<td><td align="right">';
- if ($user->rights->societe->creer && !$user->societe_id > 0)
- {
- print '<a href="'.DOL_URL_ROOT.'/comm/remx.php?id='.$object->id.'&backtopage='.urlencode($_SERVER["PHP_SELF"].'?socid='.$object->id).'">'.img_edit($langs->trans("Modify")).'</a>';
- }
- print '</td></tr></table>';
- print '</td>';
- print '<td>';
- $amount_discount=$object->getAvailableDiscounts();
- if ($amount_discount < 0) dol_print_error($db,$object->error);
- if ($amount_discount > 0) print '<a href="'.DOL_URL_ROOT.'/comm/remx.php?id='.$object->id.'&backtopage='.urlencode($_SERVER["PHP_SELF"].'?socid='.$object->id).'">'.price($amount_discount,1,$langs,1,-1,-1,$conf->currency).'</a>';
- //else print $langs->trans("DiscountNone");
- print '</td>';
- print '</tr>';
- // Max outstanding bill
- if ($object->client)
- {
- print '<tr class="nowrap">';
- print '<td>';
- print $form->editfieldkey("OutstandingBill",'outstanding_limit',$object->outstanding_limit,$object,$user->rights->societe->creer);
- print '</td><td>';
- $limit_field_type = (! empty($conf->global->MAIN_USE_JQUERY_JEDITABLE)) ? 'numeric' : 'amount';
- print $form->editfieldval("OutstandingBill",'outstanding_limit',$object->outstanding_limit,$object,$user->rights->societe->creer,$limit_field_type,($object->outstanding_limit != '' ? price($object->outstanding_limit) : ''));
- //if (empty($object->outstanding_limit)) print $langs->trans("NoLimit");
-
- print '</td>';
- print '</tr>';
- }
-
- // Multiprice level
- if (! empty($conf->global->PRODUIT_MULTIPRICES))
- {
- print '<tr><td class="nowrap">';
- print '<table width="100%" class="nobordernopadding"><tr><td class="nowrap">';
- print $langs->trans("PriceLevel");
- print '<td><td align="right">';
- if ($user->rights->societe->creer)
- {
- print '<a href="'.DOL_URL_ROOT.'/comm/multiprix.php?id='.$object->id.'">'.img_edit($langs->trans("Modify")).'</a>';
- }
- print '</td></tr></table>';
- print '</td><td>';
- print $object->price_level;
- $keyforlabel='PRODUIT_MULTIPRICES_LABEL'.$object->price_level;
- if (! empty($conf->global->$keyforlabel)) print ' - '.$langs->trans($conf->global->$keyforlabel);
- print "</td>";
- print '</tr>';
- }
- // Preferred shipping Method
- if (! empty($conf->global->SOCIETE_ASK_FOR_SHIPPING_METHOD)) {
- print '<tr><td class="nowrap">';
- print '<table width="100%" class="nobordernopadding"><tr><td class="nowrap">';
- print $langs->trans('SendingMethod');
- print '<td>';
- if (($action != 'editshipping') && $user->rights->societe->creer) print '<td align="right"><a href="'.$_SERVER["PHP_SELF"].'?action=editshipping&socid='.$object->id.'">'.img_edit($langs->trans('SetMode'),1).'</a></td>';
- print '</tr></table>';
- print '</td><td>';
- if ($action == 'editshipping')
- {
- $form->formSelectShippingMethod($_SERVER['PHP_SELF'].'?socid='.$object->id,$object->shipping_method_id,'shipping_method_id');
- }
- else
- {
- $form->formSelectShippingMethod($_SERVER['PHP_SELF'].'?socid='.$object->id,$object->shipping_method_id,'none');
- }
- print "</td>";
- print '</tr>';
- }
- // Categories
- if (!empty($conf->categorie->enabled) && !empty($user->rights->categorie->lire)) {
- $langs->load("categories");
- print '<tr><td>' . $langs->trans("CustomersCategoriesShort") . '</td>';
- print '<td>';
- print $form->showCategories( $object->id, 'customer', 1 );
- print "</td></tr>";
- }
- // Other attributes
- $parameters=array('socid'=>$object->id, 'colspan' => ' colspan="3"', 'colspanvalue' => '3');
- $reshook=$hookmanager->executeHooks('formObjectOptions',$parameters,$object,$action); // Note that $action and $object may have been modified by hook
- print $hookmanager->resPrint;
- if (empty($reshook) && ! empty($extrafields->attribute_label))
- {
- print $object->showOptionals($extrafields);
- }
- // Sales representative
- include DOL_DOCUMENT_ROOT.'/societe/tpl/linesalesrepresentative.tpl.php';
- // Module Adherent
- if (! empty($conf->adherent->enabled))
- {
- $langs->load("members");
- $langs->load("users");
- print '<tr><td class="titlefield">'.$langs->trans("LinkedToDolibarrMember").'</td>';
- print '<td>';
- $adh=new Adherent($db);
- $result=$adh->fetch('','',$object->id);
- if ($result > 0)
- {
- $adh->ref=$adh->getFullName($langs);
- print $adh->getNomUrl(1);
- }
- else
- {
- print '<span class="opacitymedium">'.$langs->trans("ThirdpartyNotLinkedToMember").'</span>';
- }
- print '</td>';
- print "</tr>\n";
- }
- print "</table>";
- if ($object->client == 2 || $object->client == 3)
- {
- print '<br>';
-
- print '<div class="underbanner clearboth"></div>';
- print '<table class="border" width="100%">';
-
- // Level of prospect
- print '<tr><td class="titlefield nowrap">';
- print '<table width="100%" class="nobordernopadding"><tr><td class="nowrap">';
- print $langs->trans('ProspectLevel');
- print '<td>';
- if ($action != 'editlevel' && $user->rights->societe->creer) print '<td align="right"><a href="'.$_SERVER["PHP_SELF"].'?action=editlevel&socid='.$object->id.'">'.img_edit($langs->trans('Modify'),1).'</a></td>';
- print '</tr></table>';
- print '</td><td>';
- if ($action == 'editlevel')
- {
- $formcompany->form_prospect_level($_SERVER['PHP_SELF'].'?socid='.$object->id,$object->fk_prospectlevel,'prospect_level_id',1);
- }
- else
- {
- print $object->getLibProspLevel();
- }
- print "</td>";
- print '</tr>';
- // Status
- $object->loadCacheOfProspStatus();
- print '<tr><td>'.$langs->trans("StatusProsp").'</td><td>'.$object->getLibProspCommStatut(4, $object->cacheprospectstatus[$object->stcomm_id]['label']);
- print ' ';
- print '<div class="floatright">';
- foreach($object->cacheprospectstatus as $key => $val)
- {
- $titlealt='default';
- if (! empty($val['code']) && ! in_array($val['code'], array('ST_NO', 'ST_NEVER', 'ST_TODO', 'ST_PEND', 'ST_DONE'))) $titlealt=$val['label'];
- if ($object->stcomm_id != $val['id']) print '<a class="pictosubstatus" href="'.$_SERVER["PHP_SELF"].'?socid='.$object->id.'&stcomm='.$val['code'].'&action=setstcomm">'.img_action($titlealt,$val['code']).'</a>';
- }
- print '</div></td></tr>';
- print "</table>";
- }
-
- print '</div><div class="fichehalfright"><div class="ficheaddleft">';
- $boxstat = '';
-
- // Nbre max d'elements des petites listes
- $MAXLIST=$conf->global->MAIN_SIZE_SHORTLIST_LIMIT;
- // Lien recap
- $boxstat.='<div class="box">';
- $boxstat.='<table summary="'.dol_escape_htmltag($langs->trans("DolibarrStateBoard")).'" class="noborder boxtable boxtablenobottom" width="100%">';
- $boxstat.='<tr class="impair"><td colspan="2" class="tdboxstats nohover">';
-
- if ($conf->propal->enabled)
- {
- // Box proposals
- $tmp = $object->getOutstandingProposals();
- $outstandingOpened=$tmp['opened'];
- $outstandingTotal=$tmp['total_ht'];
- $outstandingTotalIncTax=$tmp['total_ttc'];
- $text=$langs->trans("OverAllProposals");
- $link='';
- $icon='bill';
- if ($link) $boxstat.='<a href="'.$link.'" class="boxstatsindicator thumbstat nobold nounderline">';
- $boxstat.='<div class="boxstats">';
- $boxstat.='<span class="boxstatstext">'.img_object("",$icon).' '.$text.'</span><br>';
- $boxstat.='<span class="boxstatsindicator">'.price($outstandingTotal, 1, $langs, 1, -1, -1, $conf->currency).'</span>';
- $boxstat.='</div>';
- if ($link) $boxstat.='</a>';
- }
- if ($conf->commande->enabled)
- {
- // Box proposals
- $tmp = $object->getOutstandingOrders();
- $outstandingOpened=$tmp['opened'];
- $outstandingTotal=$tmp['total_ht'];
- $outstandingTotalIncTax=$tmp['total_ttc'];
- $text=$langs->trans("OverAllOrders");
- $link='';
- $icon='bill';
- if ($link) $boxstat.='<a href="'.$link.'" class="boxstatsindicator thumbstat nobold nounderline">';
- $boxstat.='<div class="boxstats">';
- $boxstat.='<span class="boxstatstext">'.img_object("",$icon).' '.$text.'</span><br>';
- $boxstat.='<span class="boxstatsindicator">'.price($outstandingTotal, 1, $langs, 1, -1, -1, $conf->currency).'</span>';
- $boxstat.='</div>';
- if ($link) $boxstat.='</a>';
- }
-
- if ($conf->facture->enabled)
- {
- $tmp = $object->getOutstandingBills();
- $outstandingOpened=$tmp['opened'];
- $outstandingTotal=$tmp['total_ht'];
- $outstandingTotalIncTax=$tmp['total_ttc'];
-
- $text=$langs->trans("OverAllInvoices");
- $link='';
- $icon='bill';
- if ($link) $boxstat.='<a href="'.$link.'" class="boxstatsindicator thumbstat nobold nounderline">';
- $boxstat.='<div class="boxstats">';
- $boxstat.='<span class="boxstatstext">'.img_object("",$icon).' '.$text.'</span><br>';
- $boxstat.='<span class="boxstatsindicator">'.price($outstandingTotal, 1, $langs, 1, -1, -1, $conf->currency).'</span>';
- $boxstat.='</div>';
- if ($link) $boxstat.='</a>';
-
- // Box outstanding bill
- $warn = '';
- if ($object->outstanding_limit != '' && $object->outstanding_limit < $outstandingOpened)
- {
- $warn = ' '.img_warning($langs->trans("OutstandingBillReached"));
- }
- $text=$langs->trans("CurrentOutstandingBill");
- $link=DOL_URL_ROOT.'/compta/recap-compta.php?socid='.$object->id;
- $icon='bill';
- if ($link) $boxstat.='<a href="'.$link.'" class="boxstatsindicator thumbstat nobold nounderline">';
- $boxstat.='<div class="boxstats">';
- $boxstat.='<span class="boxstatstext">'.img_object("",$icon).' '.$text.'</span><br>';
- $boxstat.='<span class="boxstatsindicator'.($outstandingOpened>0?' amountremaintopay':'').'">'.price($outstandingOpened, 1, $langs, 1, -1, -1, $conf->currency).$warn.'</span>';
- $boxstat.='</div>';
- if ($link) $boxstat.='</a>';
- }
-
- $boxstat.='</td></tr>';
- $boxstat.='</table>';
- $boxstat.='</div>';
-
- print $boxstat;
-
- $now=dol_now();
- /*
- * Last proposals
- */
- if (! empty($conf->propal->enabled) && $user->rights->propal->lire)
- {
- $propal_static = new Propal($db);
- $sql = "SELECT s.nom, s.rowid, p.rowid as propalid, p.fk_statut, p.total_ht";
- $sql.= ", p.tva as total_tva";
- $sql.= ", p.total as total_ttc";
- $sql.= ", p.ref, p.ref_client, p.remise";
- $sql.= ", p.datep as dp, p.fin_validite as datelimite";
- $sql.= " FROM ".MAIN_DB_PREFIX."societe as s, ".MAIN_DB_PREFIX."propal as p, ".MAIN_DB_PREFIX."c_propalst as c";
- $sql.= " WHERE p.fk_soc = s.rowid AND p.fk_statut = c.id";
- $sql.= " AND s.rowid = ".$object->id;
- $sql.= " AND p.entity = ".$conf->entity;
- $sql.= " ORDER BY p.datep DESC";
- $resql=$db->query($sql);
- if ($resql)
- {
- $var=true;
- $num = $db->num_rows($resql);
- if ($num > 0)
- {
- print '<table class="noborder" width="100%">';
- print '<tr class="liste_titre">';
- print '<td colspan="4"><table width="100%" class="nobordernopadding"><tr><td>'.$langs->trans("LastPropals",($num<=$MAXLIST?"":$MAXLIST)).'</td><td align="right"><a class="notasortlink" href="'.DOL_URL_ROOT.'/comm/propal/list.php?socid='.$object->id.'">'.$langs->trans("AllPropals").' <span class="badge">'.$num.'</span></a></td>';
- print '<td width="20px" align="right"><a href="'.DOL_URL_ROOT.'/comm/propal/stats/index.php?socid='.$object->id.'">'.img_picto($langs->trans("Statistics"),'stats').'</a></td>';
- print '</tr></table></td>';
- print '</tr>';
- }
- $i = 0;
- while ($i < $num && $i < $MAXLIST)
- {
- $objp = $db->fetch_object($resql);
-
- print '<tr class="oddeven">';
- print '<td class="nowrap">';
- $propal_static->id = $objp->propalid;
- $propal_static->ref = $objp->ref;
- $propal_static->ref_client = $objp->ref_client;
- $propal_static->total_ht = $objp->total_ht;
- $propal_static->total_tva = $objp->total_tva;
- $propal_static->total_ttc = $objp->total_ttc;
- print $propal_static->getNomUrl(1);
- if ( ($db->jdate($objp->datelimite) < ($now - $conf->propal->cloture->warning_delay)) && $objp->fk_statut == 1 ) {
- print " ".img_warning();
- }
- print '</td><td align="right" width="80px">'.dol_print_date($db->jdate($objp->dp),'day')."</td>\n";
- print '<td align="right" style="min-width: 60px">'.price($objp->total_ht).'</td>';
- print '<td align="right" style="min-width: 60px" class="nowrap">'.$propal_static->LibStatut($objp->fk_statut,5).'</td></tr>';
- $i++;
- }
- $db->free($resql);
- if ($num > 0) print "</table>";
- }
- else
- {
- dol_print_error($db);
- }
- }
- /*
- * Last orders
- */
- if (! empty($conf->commande->enabled) && $user->rights->commande->lire)
- {
- $commande_static=new Commande($db);
- $sql = "SELECT s.nom, s.rowid";
- $sql.= ", c.rowid as cid, c.total_ht";
- $sql.= ", c.tva as total_tva";
- $sql.= ", c.total_ttc";
- $sql.= ", c.ref, c.ref_client, c.fk_statut, c.facture";
- $sql.= ", c.date_commande as dc";
- $sql.= " FROM ".MAIN_DB_PREFIX."societe as s, ".MAIN_DB_PREFIX."commande as c";
- $sql.= " WHERE c.fk_soc = s.rowid ";
- $sql.= " AND s.rowid = ".$object->id;
- $sql.= " AND c.entity = ".$conf->entity;
- $sql.= " ORDER BY c.date_commande DESC";
- $resql=$db->query($sql);
- if ($resql)
- {
- $var=true;
- $num = $db->num_rows($resql);
- if ($num > 0)
- {
- // Check if there are orders billable
- $sql2 = 'SELECT s.nom, s.rowid as socid, s.client, c.rowid, c.ref, c.total_ht, c.ref_client,';
- $sql2.= ' c.date_valid, c.date_commande, c.date_livraison, c.fk_statut, c.facture as facturee';
- $sql2.= ' FROM '.MAIN_DB_PREFIX.'societe as s';
- $sql2.= ', '.MAIN_DB_PREFIX.'commande as c';
- $sql2.= ' WHERE c.fk_soc = s.rowid';
- $sql2.= ' AND s.rowid = '.$object->id;
- // Show orders with status validated, shipping started and delivered (well any order we can bill)
- $sql2.= " AND ((c.fk_statut IN (1,2)) OR (c.fk_statut = 3 AND c.facture = 0))";
- $resql2=$db->query($sql2);
- $orders2invoice = $db->num_rows($resql2);
- $db->free($resql2);
- print '<table class="noborder" width="100%">';
- print '<tr class="liste_titre">';
- print '<td colspan="4"><table width="100%" class="nobordernopadding"><tr><td>'.$langs->trans("LastCustomerOrders",($num<=$MAXLIST?"":$MAXLIST)).'</td><td align="right"><a class="notasortlink" href="'.DOL_URL_ROOT.'/commande/list.php?socid='.$object->id.'">'.$langs->trans("AllOrders").' <span class="badge">'.$num.'</span></a></td>';
- print '<td width="20px" align="right"><a href="'.DOL_URL_ROOT.'/commande/stats/index.php?socid='.$object->id.'">'.img_picto($langs->trans("Statistics"),'stats').'</a></td>';
- //if($num2 > 0) print '<td width="20px" align="right"><a href="'.DOL_URL_ROOT.'/commande/orderstoinvoice.php?socid='.$object->id.'">'.img_picto($langs->trans("CreateInvoiceForThisCustomer"),'object_bill').'</a></td>';
- //else print '<td width="20px" align="right"><a href="#">'.img_picto($langs->trans("NoOrdersToInvoice"),'object_bill').'</a></td>';
- print '</tr></table></td>';
- print '</tr>';
- }
- $i = 0;
- while ($i < $num && $i < $MAXLIST)
- {
- $objp = $db->fetch_object($resql);
-
- print '<tr class="oddeven">';
- print '<td class="nowrap">';
- $commande_static->id = $objp->cid;
- $commande_static->ref = $objp->ref;
- $commande_static->ref_client=$objp->ref_client;
- $commande_static->total_ht = $objp->total_ht;
- $commande_static->total_tva = $objp->total_tva;
- $commande_static->total_ttc = $objp->total_ttc;
- print $commande_static->getNomUrl(1);
- print '</td><td align="right" width="80px">'.dol_print_date($db->jdate($objp->dc),'day')."</td>\n";
- print '<td align="right" style="min-width: 60px">'.price($objp->total_ht).'</td>';
- print '<td align="right" style="min-width: 60px" class="nowrap">'.$commande_static->LibStatut($objp->fk_statut,$objp->facture,5).'</td></tr>';
- $i++;
- }
- $db->free($resql);
- if ($num >0) print "</table>";
- }
- else
- {
- dol_print_error($db);
- }
- }
- /*
- * Last sendings
- */
- if (! empty($conf->expedition->enabled) && $user->rights->expedition->lire) {
- $sendingstatic = new Expedition($db);
- $sql = 'SELECT e.rowid as id';
- $sql.= ', e.ref';
- $sql.= ', e.date_creation';
- $sql.= ', e.fk_statut as statut';
- $sql.= ', s.nom';
- $sql.= ', s.rowid as socid';
- $sql.= " FROM ".MAIN_DB_PREFIX."societe as s, ".MAIN_DB_PREFIX."expedition as e";
- $sql.= " WHERE e.fk_soc = s.rowid AND s.rowid = ".$object->id;
- $sql.= " AND e.entity IN (".getEntity('expedition').")";
- $sql.= ' GROUP BY e.rowid';
- $sql.= ', e.ref';
- $sql.= ', e.date_creation';
- $sql.= ', e.fk_statut';
- $sql.= ', s.nom';
- $sql.= ', s.rowid';
- $sql.= " ORDER BY e.date_creation DESC";
- $resql = $db->query($sql);
- if ($resql) {
- $var = true;
- $num = $db->num_rows($resql);
- $i = 0;
- if ($num > 0) {
- print '<table class="noborder" width="100%">';
- print '<tr class="liste_titre">';
- print '<td colspan="4"><table width="100%" class="nobordernopadding"><tr><td>'.$langs->trans("LastSendings",($num<=$MAXLIST?"":$MAXLIST)).'</td><td align="right"><a class="notasortlink" href="'.DOL_URL_ROOT.'/expedition/list.php?socid='.$object->id.'">'.$langs->trans("AllSendings").' <span class="badge">'.$num.'</span></a></td>';
- print '<td width="20px" align="right"><a href="'.DOL_URL_ROOT.'/expedition/stats/index.php?socid='.$object->id.'">'.img_picto($langs->trans("Statistics"),'stats').'</a></td>';
- print '</tr></table></td>';
- print '</tr>';
- }
- while ($i < $num && $i < $MAXLIST) {
- $objp = $db->fetch_object($resql);
- print '<tr class="oddeven">';
- print '<td class="nowrap">';
- $sendingstatic->id = $objp->id;
- $sendingstatic->ref = $objp->ref;
- print $sendingstatic->getNomUrl(1);
- print '</td>';
- if ($objp->date_creation > 0) {
- print '<td align="right" width="80px">'.dol_print_date($db->jdate($objp->date_creation),'day').'</td>';
- } else {
- print '<td align="right"><b>!!!</b></td>';
- }
- print '<td align="right" class="nowrap" width="100" >' . $sendingstatic->LibStatut($objp->statut, 5) . '</td>';
- print "</tr>\n";
- $i++;
- }
- $db->free($resql);
- if ($num > 0)
- print "</table>";
- } else {
- dol_print_error($db);
- }
- }
- /*
- * Last linked contracts
- */
- if (! empty($conf->contrat->enabled) && $user->rights->contrat->lire)
- {
- $contratstatic=new Contrat($db);
- $sql = "SELECT s.nom, s.rowid, c.rowid as id, c.ref as ref, c.statut, c.datec as dc, c.date_contrat as dcon, c.ref_supplier as refsup";
- $sql.= " FROM ".MAIN_DB_PREFIX."societe as s, ".MAIN_DB_PREFIX."contrat as c";
- $sql.= " WHERE c.fk_soc = s.rowid ";
- $sql.= " AND s.rowid = ".$object->id;
- $sql.= " AND c.entity = ".$conf->entity;
- $sql.= " ORDER BY c.datec DESC";
- $resql=$db->query($sql);
- if ($resql)
- {
- $var=true;
- $num = $db->num_rows($resql);
- if ($num >0 )
- {
- print '<table class="noborder" width="100%">';
- print '<tr class="liste_titre">';
- print '<td colspan="6"><table width="100%" class="nobordernopadding"><tr><td>'.$langs->trans("LastContracts",($num<=$MAXLIST?"":$MAXLIST)).'</td>';
- print '<td align="right"><a class="notasortlink" href="'.DOL_URL_ROOT.'/contrat/list.php?socid='.$object->id.'">'.$langs->trans("AllContracts").' <span class="badge">'.$num.'</span></a></td>';
- //print '<td width="20px" align="right"><a href="'.DOL_URL_ROOT.'/contract/stats/index.php?socid='.$object->id.'">'.img_picto($langs->trans("Statistics"),'stats').'</a></td>';
- print '</tr></table></td>';
- print '</tr>';
- }
- $i = 0;
- while ($i < $num && $i < $MAXLIST)
- {
- $contrat=new Contrat($db);
- $objp = $db->fetch_object($resql);
-
- print '<tr class="oddeven">';
- print '<td class="nowrap">';
- $contrat->id=$objp->id;
- $contrat->ref=$objp->ref?$objp->ref:$objp->id;
- print $contrat->getNomUrl(1,12);
- print "</td>\n";
- print '<td class="nowrap">'.dol_trunc($objp->refsup,12)."</td>\n";
- print '<td align="right" width="80px">'.dol_print_date($db->jdate($objp->dc),'day')."</td>\n";
- print '<td align="right" width="80px">'.dol_print_date($db->jdate($objp->dcon),'day')."</td>\n";
- print '<td width="20"> </td>';
- print '<td align="right" class="nowrap">';
- $contrat->fetch_lines();
- print $contrat->getLibStatut(4);
- print "</td>\n";
- print '</tr>';
- $i++;
- }
- $db->free($resql);
- if ($num > 0) print "</table>";
- }
- else
- {
- dol_print_error($db);
- }
- }
- /*
- * Last interventions
- */
- if (! empty($conf->ficheinter->enabled) && $user->rights->ficheinter->lire)
- {
- $sql = "SELECT s.nom, s.rowid, f.rowid as id, f.ref, f.fk_statut, f.duree as duration, f.datei as startdate";
- $sql.= " FROM ".MAIN_DB_PREFIX."societe as s, ".MAIN_DB_PREFIX."fichinter as f";
- $sql.= " WHERE f.fk_soc = s.rowid";
- $sql.= " AND s.rowid = ".$object->id;
- $sql.= " AND f.entity = ".$conf->entity;
- $sql.= " ORDER BY f.tms DESC";
- $fichinter_static=new Fichinter($db);
- $resql=$db->query($sql);
- if ($resql)
- {
- $var=true;
- $num = $db->num_rows($resql);
- if ($num > 0)
- {
- print '<table class="noborder" width="100%">';
- print '<tr class="liste_titre">';
- print '<td colspan="3"><table width="100%" class="nobordernopadding"><tr><td>'.$langs->trans("LastInterventions",($num<=$MAXLIST?"":$MAXLIST)).'</td><td align="right"><a class="notasortlink" href="'.DOL_URL_ROOT.'/fichinter/list.php?socid='.$object->id.'">'.$langs->trans("AllInterventions").' <span class="badge">'.$num.'</span></td>';
- print '<td width="20px" align="right"><a href="'.DOL_URL_ROOT.'/fichinter/stats/index.php?socid='.$object->id.'">'.img_picto($langs->trans("Statistics"),'stats').'</a></td>';
- print '</tr></table></td>';
- print '</tr>';
-
- }
- $i = 0;
- while ($i < $num && $i < $MAXLIST)
- {
- $objp = $db->fetch_object($resql);
- $fichinter_static->id=$objp->id;
- $fichinter_static->statut=$objp->fk_statut;
- print '<tr class="oddeven">';
- print '<td class="nowrap"><a href="'.DOL_URL_ROOT.'/fichinter/card.php?id='.$objp->id.'">'.img_object($langs->trans("ShowPropal"),"propal").' '.$objp->ref.'</a></td>'."\n";
- //print '<td align="right" width="80px">'.dol_print_date($db->jdate($objp->startdate)).'</td>'."\n";
- print '<td align="right" style="min-width: 60px">'.convertSecondToTime($objp->duration).'</td>'."\n";
- print '<td align="right" class="nowrap" style="min-width: 60px">'.$fichinter_static->getLibStatut(5).'</td>'."\n";
- print '</tr>';
-
- $i++;
- }
- $db->free($resql);
- if ($num > 0) print "</table>";
- }
- else
- {
- dol_print_error($db);
- }
- }
- /*
- * Last invoices
- */
- if (! empty($conf->facture->enabled) && $user->rights->facture->lire)
- {
- $facturestatic = new Facture($db);
- $sql = 'SELECT f.rowid as facid, f.facnumber, f.type, f.amount';
- $sql.= ', f.total as total_ht';
- $sql.= ', f.tva as total_tva';
- $sql.= ', f.total_ttc';
- $sql.= ', f.datef as df, f.datec as dc, f.paye as paye, f.fk_statut as statut';
- $sql.= ', s.nom, s.rowid as socid';
- $sql.= ', SUM(pf.amount) as am';
- $sql.= " FROM ".MAIN_DB_PREFIX."societe as s,".MAIN_DB_PREFIX."facture as f";
- $sql.= ' LEFT JOIN '.MAIN_DB_PREFIX.'paiement_facture as pf ON f.rowid=pf.fk_facture';
- $sql.= " WHERE f.fk_soc = s.rowid AND s.rowid = ".$object->id;
- $sql.= " AND f.entity = ".$conf->entity;
- $sql.= ' GROUP BY f.rowid, f.facnumber, f.type, f.amount, f.total, f.tva, f.total_ttc,';
- $sql.= ' f.datef, f.datec, f.paye, f.fk_statut,';
- $sql.= ' s.nom, s.rowid';
- $sql.= " ORDER BY f.datef DESC, f.datec DESC";
- $resql=$db->query($sql);
- if ($resql)
- {
- $var=true;
- $num = $db->num_rows($resql);
- $i = 0;
- if ($num > 0)
- {
- print '<table class="noborder" width="100%">';
- print '<tr class="liste_titre">';
- print '<td colspan="5"><table width="100%" class="nobordernopadding"><tr><td>'.$langs->trans("LastCustomersBills",($num<=$MAXLIST?"":$MAXLIST)).'</td><td align="right"><a class="notasortlink" href="'.DOL_URL_ROOT.'/compta/facture/list.php?socid='.$object->id.'">'.$langs->trans("AllBills").' <span class="badge">'.$num.'</span></a></td>';
- print '<td width="20px" align="right"><a href="'.DOL_URL_ROOT.'/compta/facture/stats/index.php?socid='.$object->id.'">'.img_picto($langs->trans("Statistics"),'stats').'</a></td>';
- print '</tr></table></td>';
- print '</tr>';
- }
- while ($i < $num && $i < $MAXLIST)
- {
- $objp = $db->fetch_object($resql);
-
- print '<tr class="oddeven">';
- print '<td class="nowrap">';
- $facturestatic->id = $objp->facid;
- $facturestatic->ref = $objp->facnumber;
- $facturestatic->type = $objp->type;
- $facturestatic->total_ht = $objp->total_ht;
- $facturestatic->total_tva = $objp->total_tva;
- $facturestatic->total_ttc = $objp->total_ttc;
- print $facturestatic->getNomUrl(1);
- print '</td>';
- if ($objp->df > 0)
- {
- print '<td align="right" width="80px">'.dol_print_date($db->jdate($objp->df),'day').'</td>';
- }
- else
- {
- print '<td align="right"><b>!!!</b></td>';
- }
- print '<td align="right" style="min-width: 60px">';
- print price($objp->total_ht);
- print '</td>';
- if (! empty($conf->global->MAIN_SHOW_PRICE_WITH_TAX_IN_SUMMARIES))
- {
- print '<td align="right" style="min-width: 60px">';
- print price($objp->total_ttc);
- print '</td>';
- }
-
- print '<td align="right" class="nowrap" style="min-width: 60px">'.($facturestatic->LibStatut($objp->paye,$objp->statut,5,$objp->am)).'</td>';
- print "</tr>\n";
- $i++;
- }
- $db->free($resql);
- if ($num > 0) print "</table>";
- }
- else
- {
- dol_print_error($db);
- }
- }
- print '</div></div></div>';
- print '<div style="clear:both"></div>';
- dol_fiche_end();
- /*
- * Barre d'actions
- */
- print '<div class="tabsAction">';
- $parameters = array();
- $reshook = $hookmanager->executeHooks('addMoreActionsButtons', $parameters, $object, $action); // Note that $action and $object may have been
- if (empty($reshook))
- {
- if ($object->status != 1)
- {
- print '<div class="inline-block divButAction"><a class="butActionRefused" title="'.dol_escape_js($langs->trans("ThirdPartyIsClosed")).'" href="#">'.$langs->trans("ThirdPartyIsClosed").'</a></div>';
- }
-
- if (! empty($conf->propal->enabled) && $user->rights->propal->creer && $object->status==1)
- {
- $langs->load("propal");
- print '<div class="inline-block divButAction"><a class="butAction" href="'.DOL_URL_ROOT.'/comm/propal/card.php?socid='.$object->id.'&action=create">'.$langs->trans("AddProp").'</a></div>';
- }
-
- if (! empty($conf->commande->enabled) && $user->rights->commande->creer && $object->status==1)
- {
- $langs->load("orders");
- print '<div class="inline-block divButAction"><a class="butAction" href="'.DOL_URL_ROOT.'/commande/card.php?socid='.$object->id.'&action=create">'.$langs->trans("AddOrder").'</a></div>';
- }
-
- if ($user->rights->contrat->creer && $object->status==1)
- {
- $langs->load("contracts");
- print '<div class="inline-block divButAction"><a class="butAction" href="'.DOL_URL_ROOT.'/contrat/card.php?socid='.$object->id.'&action=create">'.$langs->trans("AddContract").'</a></div>';
- }
-
- if (! empty($conf->ficheinter->enabled) && $user->rights->ficheinter->creer && $object->status==1)
- {
- $langs->load("fichinter");
- print '<div class="inline-block divButAction"><a class="butAction" href="'.DOL_URL_ROOT.'/fichinter/card.php?socid='.$object->id.'&action=create">'.$langs->trans("AddIntervention").'</a></div>';
- }
-
- // Add invoice
- if ($user->societe_id == 0)
- {
- if (! empty($conf->deplacement->enabled) && $object->status==1)
- {
- $langs->load("trips");
- print '<div class="inline-block divButAction"><a class="butAction" href="'.DOL_URL_ROOT.'/compta/deplacement/card.php?socid='.$object->id.'&action=create">'.$langs->trans("AddTrip").'</a></div>';
- }
-
- if (! empty($conf->facture->enabled) && $object->status==1)
- {
- if (empty($user->rights->facture->creer))
- {
- print '<div class="inline-block divButAction"><a class="butActionRefused" title="'.dol_escape_js($langs->trans("NotAllowed")).'" href="#">'.$langs->trans("AddBill").'</a></div>';
- }
- else
- {
- $langs->load("bills");
- $langs->load("orders");
-
- if (! empty($conf->commande->enabled))
- {
- if ($object->client != 0 && $object->client != 2)
- {
- if (! empty($orders2invoice) && $orders2invoice > 0) print '<div class="inline-block divButAction"><a class="butAction" href="'.DOL_URL_ROOT.'/commande/orderstoinvoice.php?socid='.$object->id.'">'.$langs->trans("CreateInvoiceForThisCustomer").'</a></div>';
- else print '<div class="inline-block divButAction"><a class="butActionRefused" title="'.dol_escape_js($langs->trans("NoOrdersToInvoice")).'" href="#">'.$langs->trans("CreateInvoiceForThisCustomer").'</a></div>';
- }
- else print '<div class="inline-block divButAction"><a class="butActionRefused" title="'.dol_escape_js($langs->trans("ThirdPartyMustBeEditAsCustomer")).'" href="#">'.$langs->trans("AddBill").'</a></div>';
- }
- if ($object->client != 0 && $object->client != 2) print '<div class="inline-block divButAction"><a class="butAction" href="'.DOL_URL_ROOT.'/compta/facture/card.php?action=create&socid='.$object->id.'">'.$langs->trans("AddBill").'</a></div>';
- else print '<div class="inline-block divButAction"><a class="butActionRefused" title="'.dol_escape_js($langs->trans("ThirdPartyMustBeEditAsCustomer")).'" href="#">'.$langs->trans("AddBill").'</a></div>';
-
- }
- }
- }
-
- // Add action
- if (! empty($conf->agenda->enabled) && ! empty($conf->global->MAIN_REPEATTASKONEACHTAB) && $object->status==1)
- {
- if ($user->rights->agenda->myactions->create)
- {
- print '<div class="inline-block divButAction"><a class="butAction" href="'.DOL_URL_ROOT.'/comm/action/card.php?action=create&socid='.$object->id.'">'.$langs->trans("AddAction").'</a></div>';
- }
- else
- {
- print '<div class="inline-block divButAction"><a class="butAction" title="'.dol_escape_js($langs->trans("NotAllowed")).'" href="#">'.$langs->trans("AddAction").'</a></div>';
- }
- }
- }
-
- print '</div>';
- if (! empty($conf->global->MAIN_REPEATCONTACTONEACHTAB))
- {
- // List of contacts
- show_contacts($conf,$langs,$db,$object,$_SERVER["PHP_SELF"].'?socid='.$object->id);
- }
- // Addresses list
- if (! empty($conf->global->SOCIETE_ADDRESSES_MANAGEMENT) && ! empty($conf->global->MAIN_REPEATADDRESSONEACHTAB))
- {
- 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);
- // List of done actions
- show_actions_done($conf,$langs,$db,$object);
- }
- }
- else
- {
- dol_print_error($db,'Bad value for socid parameter');
- }
- // End of page
- llxFooter();
- $db->close();
|