123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889 |
- <?php
- /* Copyright (C) 2001-2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
- * Copyright (C) 2003 Eric Seigne <erics@rycks.com>
- * Copyright (C) 2004-2016 Laurent Destailleur <eldy@users.sourceforge.net>
- * Copyright (C) 2005-2010 Regis Houssin <regis.houssin@inodbox.com>
- * Copyright (C) 2010-2015 Juanjo Menent <jmenent@2byte.es>
- * Copyright (C) 2014 Jean Heimburger <jean@tiaris.info>
- * Copyright (C) 2015 Marcos García <marcosgdf@gmail.com>
- * Copyright (C) 2015 Raphaël Doursenaud <rdoursenaud@gpcsolutions.fr>
- *
- * 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/fourn/card.php
- * \ingroup fournisseur, facture
- * \brief Page for supplier third party card (view, edit)
- */
- 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.'/supplier_proposal/class/supplier_proposal.class.php';
- require_once DOL_DOCUMENT_ROOT.'/contact/class/contact.class.php';
- require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
- require_once DOL_DOCUMENT_ROOT.'/core/class/extrafields.class.php';
- if (! empty($conf->adherent->enabled)) require_once DOL_DOCUMENT_ROOT.'/adherents/class/adherent.class.php';
- // Load translation files required by page
- $langs->loadLangs(array(
- 'companies',
- 'suppliers',
- 'products',
- 'bills',
- 'orders',
- 'commercial',
- ));
- $action = GETPOST('action','aZ09');
- $cancelbutton = GETPOST('cancel','alpha');
- // Security check
- $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', '', 'rowid');
- $object = new Fournisseur($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 page. Note that conf->hooks_modules contains array of hook context
- $hookmanager->initHooks(array('suppliercard','globalcard'));
- /*
- * Action
- */
- $parameters=array('id'=>$id);
- $reshook=$hookmanager->executeHooks('doActions', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
- if ($reshook < 0) setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
- if (empty($reshook))
- {
- if ($cancelbutton)
- {
- $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);
- }
- }
- // 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);
- }
- // update supplier order min amount
- if ($action == 'setsupplier_order_min_amount')
- {
- $object->fetch($id);
- $object->supplier_order_min_amount=price2num(GETPOST('supplier_order_min_amount','alpha'));
- $result=$object->update($object->id, $user);
- if ($result < 0) setEventMessages($object->error, $object->errors, 'errors');
- }
- if ($action == 'update_extras') {
- $object->fetch($id);
- $object->oldcopy = dol_clone($object);
- // Fill array 'array_options' with data from update form
- $extralabels = $extrafields->fetch_name_optionals_label($object->table_element);
- $ret = $extrafields->setOptionalsFromPost($extralabels, $object, GETPOST('attribute', 'none'));
- if ($ret < 0) $error++;
- if (! $error)
- {
- $result = $object->insertExtraFields('COMPANY_MODIFY');
- if ($result < 0) $error++;
- }
- if ($error) $action = 'edit_extras';
- }
- }
- /*
- * View
- */
- $contactstatic = new Contact($db);
- $form = new Form($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);
- }
- if ($object->id > 0)
- {
- $title=$langs->trans("ThirdParty")." - ".$langs->trans('Supplier');
- if (! empty($conf->global->MAIN_HTML_TITLE) && preg_match('/thirdpartynameonly/',$conf->global->MAIN_HTML_TITLE) && $object->name) $title=$object->name." - ".$langs->trans('Supplier');
- $help_url='';
- llxHeader('',$title, $help_url);
- /*
- * Show tabs
- */
- $head = societe_prepare_head($object);
- dol_fiche_head($head, 'supplier', $langs->trans("ThirdParty"), -1, 'company');
- $linkback = '<a href="'.DOL_URL_ROOT.'/societe/list.php?restore_lastsearch_values=1">'.$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 width="100%" class="border">';
- 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>';
- }
- if ($object->fournisseur)
- {
- print '<tr>';
- print '<td class="titlefield">'.$langs->trans("SupplierCode"). '</td><td>';
- print $object->code_fournisseur;
- if ($object->check_codefournisseur() <> 0) print ' <font class="error">('.$langs->trans("WrongSupplierCode").')</font>';
- print '</td>';
- print '</tr>';
- $langs->load('compta');
- print '<tr>';
- print '<td>';
- print $form->editfieldkey("SupplierAccountancyCode",'supplieraccountancycode',$object->code_compta_fournisseur,$object,$user->rights->societe->creer);
- print '</td><td>';
- print $form->editfieldval("SupplierAccountancyCode",'supplieraccountancycode',$object->code_compta_fournisseur,$object,$user->rights->societe->creer);
- print '</td>';
- print '</tr>';
- }
- // Assujetti a TVA ou pas
- print '<tr>';
- print '<td class="titlefield">';
- print $form->textwithpicto($langs->trans('VATIsUsed'),$langs->trans('VATIsUsedWhenSelling'));
- print '</td><td>';
- print yn($object->tva_assuj);
- print '</td>';
- print '</tr>';
- // Local Taxes
- if ($mysoc->useLocalTax(1))
- {
- print '<tr><td>'.$langs->transcountry("LocalTax1IsUsed", $mysoc->country_code).'</td><td>';
- print yn($object->localtax1_assuj);
- print '</td></tr>';
- }
- if ($mysoc->useLocalTax(2))
- {
- print '<tr><td>'.$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');
- $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&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_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&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_supplier_id,'mode_reglement_supplier_id', 'DBIT', 1, 1);
- }
- else
- {
- $form->form_modes_reglement($_SERVER['PHP_SELF'].'?socid='.$object->id,$object->mode_reglement_supplier_id,'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_supplier_percent?'<a href="'.DOL_URL_ROOT.'/comm/remise.php?id='.$object->id.'">'.$object->remise_supplier_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('', '', 0, 1);
- 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>';
- if (! empty($conf->fournisseur->enabled) && ! empty($conf->global->ORDER_MANAGE_MIN_AMOUNT))
- {
- print '<tr class="nowrap">';
- print '<td>';
- print $form->editfieldkey("OrderMinAmount",'supplier_order_min_amount',$object->supplier_order_min_amount,$object,$user->rights->societe->creer);
- print '</td><td>';
- $limit_field_type = (! empty($conf->global->MAIN_USE_JQUERY_JEDITABLE)) ? 'numeric' : 'amount';
- print $form->editfieldval("OrderMinAmount",'supplier_order_min_amount',$object->supplier_order_min_amount,$object,$user->rights->societe->creer,$limit_field_type,($object->supplier_order_min_amount != '' ? price($object->supplier_order_min_amount) : ''));
- print '</td>';
- print '</tr>';
- }
- // Categories
- if (! empty($conf->categorie->enabled))
- {
- $langs->load("categories");
- print '<tr><td>' . $langs->trans("SuppliersCategoriesShort") . '</td>';
- print '<td>';
- print $form->showCategories($object->id, 'supplier', 1);
- print "</td></tr>";
- }
- // Other attributes
- $parameters=array('socid'=>$object->id, 'colspan' => ' colspan="3"', 'colspanvalue' => '3');
- include DOL_DOCUMENT_ROOT . '/core/tpl/extrafields_view.tpl.php';
- // Module Adherent
- if (! empty($conf->adherent->enabled))
- {
- $langs->load("members");
- $langs->load("users");
- print '<tr><td>'.$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 $langs->trans("ThirdpartyNotLinkedToMember");
- }
- print '</td>';
- print "</tr>\n";
- }
- 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;
- print '<div class="underbanner clearboth"></div>';
- // Lien recap
- $boxstat.='<div class="box">';
- $boxstat.='<table summary="'.dol_escape_htmltag($langs->trans("DolibarrStateBoard")).'" class="border boxtable boxtablenobottom boxtablenotop" width="100%">';
- $boxstat.='<tr class="impair"><td colspan="2" class="tdboxstats nohover">';
- if ($conf->supplier_proposal->enabled)
- {
- // Box proposals
- $tmp = $object->getOutstandingProposals('supplier');
- $outstandingOpened=$tmp['opened'];
- $outstandingTotal=$tmp['total_ht'];
- $outstandingTotalIncTax=$tmp['total_ttc'];
- $text=$langs->trans("OverAllSupplierProposals");
- $link=DOL_URL_ROOT.'/supplier_proposal/list.php?socid='.$object->id;
- $icon='bill';
- if ($link) $boxstat.='<a href="'.$link.'" class="boxstatsindicator thumbstat nobold nounderline">';
- $boxstat.='<div class="boxstats" title="'.dol_escape_htmltag($text).'">';
- $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->fournisseur->enabled)
- {
- // Box proposals
- $tmp = $object->getOutstandingOrders('supplier');
- $outstandingOpened=$tmp['opened'];
- $outstandingTotal=$tmp['total_ht'];
- $outstandingTotalIncTax=$tmp['total_ttc'];
- $text=$langs->trans("OverAllOrders");
- $link=DOL_URL_ROOT.'/fourn/commande/list.php?socid='.$object->id;
- $icon='bill';
- if ($link) $boxstat.='<a href="'.$link.'" class="boxstatsindicator thumbstat nobold nounderline">';
- $boxstat.='<div class="boxstats" title="'.dol_escape_htmltag($text).'">';
- $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->fournisseur->enabled)
- {
- $tmp = $object->getOutstandingBills('supplier');
- $outstandingOpened=$tmp['opened'];
- $outstandingTotal=$tmp['total_ht'];
- $outstandingTotalIncTax=$tmp['total_ttc'];
- $text=$langs->trans("OverAllInvoices");
- $link=DOL_URL_ROOT.'/fourn/facture/list.php?socid='.$object->id;
- $icon='bill';
- if ($link) $boxstat.='<a href="'.$link.'" class="boxstatsindicator thumbstat nobold nounderline">';
- $boxstat.='<div class="boxstats" title="'.dol_escape_htmltag($text).'">';
- $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
- $text=$langs->trans("CurrentOutstandingBill");
- $link=DOL_URL_ROOT.'/fourn/recap-fourn.php?socid='.$object->id;
- $icon='bill';
- if ($link) $boxstat.='<a href="'.$link.'" class="boxstatsindicator thumbstat nobold nounderline">';
- $boxstat.='<div class="boxstats" title="'.dol_escape_htmltag($text).'">';
- $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;
- $MAXLIST=$conf->global->MAIN_SIZE_SHORTLIST_LIMIT;
- // 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 class="notasortlink" href="'.DOL_URL_ROOT.'/fourn/recap-fourn.php?socid='.$object->id.'">'.$langs->trans("ShowSupplierPreview").'</a></td></tr></table></td>';
- print '</tr>';
- print '</table>';
- print '<br>';
- */
- /*
- * List of products
- */
- if (! empty($conf->product->enabled) || ! empty($conf->service->enabled))
- {
- $langs->load("products");
- //Query from product/liste.php
- $sql = 'SELECT p.rowid, p.ref, p.label, p.fk_product_type, p.entity,';
- $sql.= ' pfp.tms, pfp.ref_fourn as supplier_ref, pfp.price, pfp.quantity, pfp.unitprice';
- $sql.= ' FROM '.MAIN_DB_PREFIX.'product_fournisseur_price as pfp';
- $sql.= " LEFT JOIN ".MAIN_DB_PREFIX."product as p ON p.rowid = pfp.fk_product";
- $sql.= ' WHERE p.entity IN ('.getEntity('product').')';
- $sql.= ' AND pfp.fk_soc = '.$object->id;
- $sql .= $db->order('pfp.tms', 'desc');
- $sql.= $db->plimit($MAXLIST);
- $query = $db->query($sql);
- if (! $query) dol_print_error($db);
- $num = $db->num_rows($query);
- print '<table class="noborder" width="100%">';
- print '<tr class="liste_titre'.(($num == 0) ? ' nobottom':'').'">';
- print '<td colspan="3">'.$langs->trans("ProductsAndServices").'</td><td align="right">';
- print '<a class="notasortlink" href="'.DOL_URL_ROOT.'/fourn/product/list.php?fourn_id='.$object->id.'">'.$langs->trans("AllProductReferencesOfSupplier").' <span class="badge">'.$object->nbOfProductRefs().'</span>';
- print '</a></td></tr>';
- $return = array();
- if ($num > 0)
- {
- $productstatic = new Product($db);
- while ($objp = $db->fetch_object($query))
- {
- $productstatic->id = $objp->rowid;
- $productstatic->ref = $objp->ref;
- $productstatic->label = $objp->label;
- $productstatic->type = $objp->fk_product_type;
- $productstatic->entity = $objp->entity;
- print '<tr class="oddeven">';
- print '<td class="nowrap">';
- print $productstatic->getNomUrl(1);
- print '</td>';
- print '<td>';
- print $objp->supplier_ref;
- print '</td>';
- print '<td class="maxwidthonsmartphone">';
- print dol_trunc(dol_htmlentities($objp->label), 30);
- print '</td>';
- //print '<td align="right" class="nowrap">'.dol_print_date($objp->tms, 'day').'</td>';
- print '<td align="right">';
- //print (isset($objp->unitprice) ? price($objp->unitprice) : '');
- if (isset($objp->price))
- {
- print price($objp->price);
- if ($objp->quantity > 1)
- {
- print ' / ';
- print $objp->quantity;
- }
- }
- print '</td>';
- print '</tr>';
- }
- }
- print '</table>';
- }
- /*
- * Latest supplier proposal
- */
- $proposalstatic = new SupplierProposal($db);
- if ($user->rights->supplier_proposal->lire)
- {
- $sql = "SELECT p.rowid, p.ref, p.date_valid as dc, p.fk_statut, p.total_ht, p.tva as total_tva, p.total as total_ttc";
- $sql.= " FROM ".MAIN_DB_PREFIX."supplier_proposal as p ";
- $sql.= " WHERE p.fk_soc =".$object->id;
- $sql.= " AND p.entity IN (".getEntity('supplier_proposal').")";
- $sql.= " ORDER BY p.date_valid DESC";
- $sql.= " ".$db->plimit($MAXLIST);
- $resql=$db->query($sql);
- if ($resql)
- {
- $i = 0 ;
- $num = $db->num_rows($resql);
- if ($num > 0)
- {
- print '<table class="noborder" width="100%">';
- print '<tr class="liste_titre">';
- print '<td colspan="3">';
- print '<table class="nobordernopadding centpercent"><tr><td>'.$langs->trans("LastSupplierProposals",($num<$MAXLIST?"":$MAXLIST)).'</td>';
- print '<td align="right"><a class="notasortlink" href="'.DOL_URL_ROOT.'/supplier_proposal/list.php?socid='.$object->id.'">'.$langs->trans("AllPriceRequests").' <span class="badge">'.$num.'</span></td>';
- print '<td width="20px" align="right"><a href="'.DOL_URL_ROOT.'/supplier_proposal/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);
- print '<tr class="oddeven">';
- print '<td class="nowrap">';
- $proposalstatic->id = $obj->rowid;
- $proposalstatic->ref = $obj->ref;
- $proposalstatic->total_ht = $obj->total_ht;
- $proposalstatic->total_tva = $obj->total_tva;
- $proposalstatic->total_ttc = $obj->total_ttc;
- print $proposalstatic->getNomUrl(1);
- print '</td>';
- print '<td align="center" width="80">';
- if ($obj->dc)
- {
- print dol_print_date($db->jdate($obj->dc),'day');
- }
- else
- {
- print "-";
- }
- print '</td>';
- print '<td align="right" class="nowrap">'.$proposalstatic->LibStatut($obj->fk_statut,5).'</td>';
- print '</tr>';
- $i++;
- }
- $db->free($resql);
- if ($num >0) print "</table>";
- }
- else
- {
- dol_print_error($db);
- }
- }
- /*
- * Latest supplier orders
- */
- $orderstatic = new CommandeFournisseur($db);
- if ($user->rights->fournisseur->commande->lire)
- {
- // TODO move to DAO class
- // Check if there are supplier orders billable
- $sql2 = 'SELECT s.nom, s.rowid as socid, s.client, c.rowid, c.ref, c.total_ht, c.ref_supplier,';
- $sql2.= ' c.date_valid, c.date_commande, c.date_livraison, c.fk_statut';
- $sql2.= ' FROM '.MAIN_DB_PREFIX.'societe as s';
- $sql2.= ', '.MAIN_DB_PREFIX.'commande_fournisseur as c';
- $sql2.= ' WHERE c.fk_soc = s.rowid';
- $sql2.= " AND c.entity IN (".getEntity('commande_fournisseur').")";
- $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 (5)";
- $sql2.= " AND c.billed = 0";
- // Find order that are not already invoiced
- // just need to check received status because we have the billed status now
- //$sql2 .= " AND c.rowid NOT IN (SELECT fk_source FROM " . MAIN_DB_PREFIX . "element_element WHERE targettype='invoice_supplier')";
- $resql2=$db->query($sql2);
- if ($resql2) {
- $orders2invoice = $db->num_rows($resql2);
- $db->free($resql2);
- } else {
- setEventMessages($db->lasterror(), null, 'errors');
- }
- // TODO move to DAO class
- $sql = "SELECT count(p.rowid) as total";
- $sql.= " FROM ".MAIN_DB_PREFIX."commande_fournisseur as p";
- $sql.= " WHERE p.fk_soc =".$object->id;
- $sql.= " AND p.entity IN (".getEntity('commande_fournisseur').")";
- $resql=$db->query($sql);
- if ($resql)
- {
- $object_count = $db->fetch_object($resql);
- $num = $object_count->total;
- }
- $sql = "SELECT p.rowid,p.ref, p.date_commande as dc, p.fk_statut, p.total_ht, p.tva as total_tva, p.total_ttc";
- $sql.= " FROM ".MAIN_DB_PREFIX."commande_fournisseur as p";
- $sql.= " WHERE p.fk_soc =".$object->id;
- $sql.= " AND p.entity IN (".getEntity('commande_fournisseur').")";
- $sql.= " ORDER BY p.date_commande DESC";
- $sql.= " ".$db->plimit($MAXLIST);
- $resql=$db->query($sql);
- if ($resql)
- {
- $i = 0 ;
- if ($num > 0)
- {
- 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("LastSupplierOrders",($num<$MAXLIST?"":$MAXLIST)).'</td>';
- print '<td align="right"><a class="notasortlink" href="'.DOL_URL_ROOT.'/fourn/commande/list.php?socid='.$object->id.'">'.$langs->trans("AllOrders").' <span class="badge">'.$num.'</span></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);
- print '<tr class="oddeven">';
- print '<td class="nowrap">';
- $orderstatic->id = $obj->rowid;
- $orderstatic->ref = $obj->ref;
- $orderstatic->total_ht = $obj->total_ht;
- $orderstatic->total_tva = $obj->total_tva;
- $orderstatic->total_ttc = $obj->total_ttc;
- print $orderstatic->getNomUrl(1);
- print '</td>';
- print '<td align="center" width="80">';
- if ($obj->dc)
- {
- 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);
- if ($num >0) print "</table>";
- }
- else
- {
- dol_print_error($db);
- }
- }
- /*
- * Latest supplier invoices
- */
- $langs->load('bills');
- $facturestatic = new FactureFournisseur($db);
- if ($user->rights->fournisseur->facture->lire)
- {
- // TODO move to DAO class
- $sql = 'SELECT f.rowid,f.libelle,f.ref,f.ref_supplier,f.fk_statut,f.datef as df, f.total_ht, f.total_tva, f.total_ttc as amount,f.paye,';
- $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;
- $sql.= " AND f.entity IN (".getEntity('facture_fourn').")";
- $sql.= ' GROUP BY f.rowid,f.libelle,f.ref,f.ref_supplier,f.fk_statut,f.datef,f.total_ht,f.total_tva,f.total_ttc,f.paye';
- $sql.= ' ORDER BY f.datef DESC';
- $resql=$db->query($sql);
- if ($resql)
- {
- $i = 0 ;
- $num = $db->num_rows($resql);
- if ($num > 0)
- {
- print '<table class="noborder" width="100%">';
- print '<tr class="liste_titre">';
- print '<td colspan="4">';
- print '<table class="nobordernopadding" width="100%"><tr><td>'.$langs->trans('LastSuppliersBills',($num<=$MAXLIST?"":$MAXLIST)).'</td><td align="right"><a class="notasortlink" href="'.DOL_URL_ROOT.'/fourn/facture/list.php?socid='.$object->id.'">'.$langs->trans('AllBills').' <span class="badge">'.$num.'</span></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);
- print '<tr class="oddeven">';
- print '<td>';
- print '<a href="facture/card.php?facid='.$obj->rowid.'">';
- $facturestatic->id=$obj->rowid;
- $facturestatic->ref=($obj->ref?$obj->ref:$obj->rowid);
- $facturestatic->ref_supplier = $obj->ref_supplier;
- $facturestatic->libelle = $obj->libelle;
- $facturestatic->total_ht = $obj->total_ht;
- $facturestatic->total_tva = $obj->total_tva;
- $facturestatic->total_ttc = $obj->total_ttc;
- print $facturestatic->getNomUrl(1);
- print $obj->ref_supplier?' - '.$obj->ref_supplier:'';
- print ($obj->libelle?' - ':'').dol_trunc($obj->libelle,14);
- print '</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">';
- print $facturestatic->LibStatut($obj->paye,$obj->fk_statut,5,$obj->am);
- print '</td>';
- print '</tr>';
- $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
- // modified by hook
- 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 ($conf->supplier_proposal->enabled && $user->rights->supplier_proposal->creer)
- {
- $langs->load("supplier_proposal");
- if ($object->status == 1)
- {
- print '<a class="butAction" href="'.DOL_URL_ROOT.'/supplier_proposal/card.php?action=create&socid='.$object->id.'">'.$langs->trans("AddSupplierProposal").'</a>';
- }
- else
- {
- print '<a class="butActionRefused" title="'.dol_escape_js($langs->trans("ThirdPartyIsClosed")).'" href="#">'.$langs->trans("AddSupplierProposal").'</a>';
- }
- }
- if ($user->rights->fournisseur->commande->creer)
- {
- $langs->load("orders");
- if ($object->status == 1)
- {
- print '<a class="butAction" href="'.DOL_URL_ROOT.'/fourn/commande/card.php?action=create&socid='.$object->id.'">'.$langs->trans("AddOrder").'</a>';
- }
- else
- {
- print '<a class="butActionRefused" title="'.dol_escape_js($langs->trans("ThirdPartyIsClosed")).'" href="#">'.$langs->trans("AddOrder").'</a>';
- }
- }
- if ($user->rights->fournisseur->facture->creer)
- {
- $langs->load("bills");
- if ($object->status == 1)
- {
- print '<a class="butAction" href="'.DOL_URL_ROOT.'/fourn/facture/card.php?action=create&socid='.$object->id.'">'.$langs->trans("AddBill").'</a>';
- }
- else
- {
- print '<a class="butActionRefused" title="'.dol_escape_js($langs->trans("ThirdPartyIsClosed")).'" href="#">'.$langs->trans("AddBill").'</a>';
- }
- }
- if ($user->rights->fournisseur->facture->creer)
- {
- if (! empty($orders2invoice) && $orders2invoice > 0)
- {
- if ($object->status == 1)
- {
- print '<div class="inline-block divButAction"><a class="butAction" href="'.DOL_URL_ROOT.'/fourn/commande/orderstoinvoice.php?socid='.$object->id.'">'.$langs->trans("CreateInvoiceForThisCustomer").'</a></div>';
- }
- else
- {
- print '<div class="inline-block divButAction"><a class="butActionRefused" href="#">'.$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>';
- }
- // Add action
- if (! empty($conf->agenda->enabled) && ! empty($conf->global->MAIN_REPEATTASKONEACHTAB) && $object->status==1)
- {
- if ($user->rights->agenda->myactions->create)
- {
- print '<a class="butAction" href="'.DOL_URL_ROOT.'/comm/action/card.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>';
- }
- }
- }
- print '</div>';
- if (! empty($conf->global->MAIN_DUPLICATE_CONTACTS_TAB_ON_MAIN_CARD))
- {
- print '<br>';
- // 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))
- {
- $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);
- // List of done actions
- show_actions_done($conf,$langs,$db,$object);
- }
- }
- else
- {
- dol_print_error($db);
- }
- // End of page
- llxFooter();
- $db->close();
|