mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-11 12:01:23 +01:00
196 lines
6.5 KiB
PHP
196 lines
6.5 KiB
PHP
<?php
|
|
/* Copyright (C) 2001-2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
|
* Copyright (C) 2004-2008 Laurent Destailleur <eldy@users.sourceforge.net>
|
|
* Copyright (C) 2005-2008 Regis Houssin <regis@dolibarr.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 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
/**
|
|
\file htdocs/projet/element.php
|
|
\ingroup projet facture
|
|
\brief Page des elements par projet
|
|
\version $Id$
|
|
*/
|
|
|
|
require("./pre.inc.php");
|
|
require_once(DOL_DOCUMENT_ROOT."/propal.class.php");
|
|
require_once(DOL_DOCUMENT_ROOT."/facture.class.php");
|
|
require_once(DOL_DOCUMENT_ROOT."/commande/commande.class.php");
|
|
require_once(DOL_DOCUMENT_ROOT."/fourn/fournisseur.facture.class.php");
|
|
require_once(DOL_DOCUMENT_ROOT."/fourn/fournisseur.commande.class.php");
|
|
require_once(DOL_DOCUMENT_ROOT."/lib/project.lib.php");
|
|
|
|
$langs->load("projects");
|
|
$langs->load("companies");
|
|
$langs->load("suppliers");
|
|
if ($conf->facture->enabled) $langs->load("bills");
|
|
if ($conf->commande->enabled) $langs->load("orders");
|
|
if ($conf->propal->enabled) $langs->load("propal");
|
|
|
|
// Sécurité accés client
|
|
$projetid='';
|
|
if ($_GET["id"]) { $projetid=$_GET["id"]; }
|
|
|
|
if ($projetid == '') accessforbidden();
|
|
|
|
// Security check
|
|
if ($user->societe_id) $socid=$user->societe_id;
|
|
$result = restrictedArea($user, 'projet', $projetid);
|
|
|
|
|
|
/*
|
|
* View
|
|
*/
|
|
|
|
llxHeader("",$langs->trans("Referers"));
|
|
|
|
$projet = new Project($db);
|
|
$projet->fetch($_GET["id"]);
|
|
$projet->societe->fetch($projet->societe->id);
|
|
|
|
$head=project_prepare_head($projet);
|
|
dolibarr_fiche_head($head, 'element', $langs->trans("Project"));
|
|
|
|
|
|
print '<table class="border" width="100%">';
|
|
|
|
print '<tr><td>'.$langs->trans("Ref").'</td><td>'.$projet->ref.'</td></tr>';
|
|
print '<tr><td>'.$langs->trans("Label").'</td><td>'.$projet->title.'</td></tr>';
|
|
|
|
print '<tr><td>'.$langs->trans("Company").'</td><td>'.$projet->societe->getNomUrl(1,'compta').'</td></tr>';
|
|
|
|
print '</table>';
|
|
|
|
print '</div>';
|
|
|
|
|
|
/*
|
|
* Factures
|
|
*/
|
|
$listofreferent=array(
|
|
'propal'=>array(
|
|
'title'=>"ListProposalsAssociatedProject",
|
|
'class'=>'Propal',
|
|
'test'=>$conf->propal->enabled),
|
|
'order'=>array(
|
|
'title'=>"ListOrdersAssociatedProject",
|
|
'class'=>'Commande',
|
|
'test'=>$conf->commande->enabled),
|
|
'invoice'=>array(
|
|
'title'=>"ListInvoicesAssociatedProject",
|
|
'class'=>'Facture',
|
|
'test'=>$conf->facture->enabled),
|
|
'order_supplier'=>array(
|
|
'title'=>"ListSupplierOrdersAssociatedProject",
|
|
'class'=>'CommandeFournisseur',
|
|
'test'=>$conf->fournisseur->enabled),
|
|
'invoice_supplier'=>array(
|
|
'title'=>"ListSupplierInvoicesAssociatedProject",
|
|
'class'=>'FactureFournisseur',
|
|
'test'=>$conf->fournisseur->enabled)
|
|
);
|
|
|
|
foreach ($listofreferent as $key => $value)
|
|
{
|
|
$title=$value['title'];
|
|
$class=$value['class'];
|
|
$qualified=$value['test'];
|
|
if ($qualified)
|
|
{
|
|
print '<br>';
|
|
|
|
print_titre($langs->trans($title));
|
|
print '<table class="noborder" width="100%">';
|
|
|
|
print '<tr class="liste_titre">';
|
|
print '<td width="150">'.$langs->trans("Ref").'</td>';
|
|
print '<td>'.$langs->trans("Date").'</td>';
|
|
print '<td align="right">'.$langs->trans("Amount").'</td>';
|
|
print '</tr>';
|
|
$elementarray = $projet->get_element_list($key);
|
|
if (sizeof($elementarray)>0 && is_array($elementarray))
|
|
{
|
|
$var=true;
|
|
$total = 0;
|
|
for ($i = 0; $i<sizeof($elementarray);$i++)
|
|
{
|
|
$element = new $class($db);
|
|
$element->fetch($elementarray[$i]);
|
|
|
|
$var=!$var;
|
|
print "<tr $bc[$var]>";
|
|
print "<td>";
|
|
print $element->getNomUrl(1);
|
|
print "</td>\n";
|
|
$date=$element->date;
|
|
if (empty($date)) $date=$element->datep;
|
|
print '<td>'.dolibarr_print_date($date,'day').'</td>';
|
|
print '<td align="right">'.price($element->total_ht).'</td>';
|
|
print '</tr>';
|
|
|
|
$total = $total + $element->total_ht;
|
|
}
|
|
|
|
print '<tr class="liste_total"><td colspan="2">'.$i.' '.$langs->trans("Bills").'</td>';
|
|
print '<td align="right" width="100">'.$langs->trans("TotalHT").' : '.price($total).'</td>';
|
|
print '</tr>';
|
|
}
|
|
print "</table>";
|
|
|
|
/*
|
|
* Barre d'action
|
|
*/
|
|
print '<div class="tabsAction">';
|
|
|
|
if ($projet->societe->prospect || $projet->societe->client)
|
|
{
|
|
if ($key == 'propal' && $conf->propal->enabled && $user->rights->propale->creer)
|
|
{
|
|
print '<a class="butAction" href="'.DOL_URL_ROOT.'/comm/addpropal.php?socid='.$projet->societe->id.'&action=create&projetid='.$projet->id.'">'.$langs->trans("AddProp").'</a>';
|
|
}
|
|
if ($key == 'order' && $conf->commande->enabled && $user->rights->commande->creer)
|
|
{
|
|
print '<a class="butAction" href="'.DOL_URL_ROOT.'/commande/fiche.php?socid='.$projet->societe->id.'&action=create&projetid='.$projet->id.'">'.$langs->trans("AddCustomerOrder").'</a>';
|
|
}
|
|
if ($key == 'invoice' && $conf->facture->enabled && $user->rights->facture->creer)
|
|
{
|
|
print '<a class="butAction" href="'.DOL_URL_ROOT.'/compta/facture.php?socid='.$projet->societe->id.'&action=create&projetid='.$projet->id.'">'.$langs->trans("AddCustomerInvoice").'</a>';
|
|
}
|
|
}
|
|
if ($projet->societe->fournisseur)
|
|
{
|
|
if ($key == 'order_supplier' && $conf->fournisseur->enabled && $user->rights->fournisseur->commande->creer)
|
|
{
|
|
print '<a class="butAction" href="'.DOL_URL_ROOT.'/fourn/facture/fiche.php?socid='.$projet->societe->id.'&action=create&projetid='.$projet->id.'">'.$langs->trans("AddSupplierInvoice").'</a>';
|
|
}
|
|
if ($key == 'invoice_supplier' && $conf->fournisseur->enabled && $user->rights->fournisseur->facture->creer)
|
|
{
|
|
print '<a class="butAction" href="'.DOL_URL_ROOT.'/fourn/commande/fiche.php?socid='.$projet->societe->id.'&action=create&projetid='.$projet->id.'">'.$langs->trans("AddSupplierOrder").'</a>';
|
|
}
|
|
}
|
|
print '</div>';
|
|
}
|
|
}
|
|
|
|
// Juste pour éviter bug IE qui réorganise mal div précédents si celui-ci absent
|
|
print '<div class="tabsAction">';
|
|
print '</div>';
|
|
|
|
$db->close();
|
|
|
|
llxFooter('$Date$ - $Revision$');
|
|
?>
|