mirror of
https://github.com/YunoHost-Apps/dolibarr_ynh.git
synced 2024-09-03 18:35:53 +02:00
183 lines
5.8 KiB
PHP
183 lines
5.8 KiB
PHP
<?php
|
|
/* Copyright (C) 2003-2006 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
|
* Copyright (C) 2004-2011 Laurent Destailleur <eldy@users.sourceforge.net>
|
|
* Copyright (C) 2005-2009 Regis Houssin <regis.houssin@capnetworks.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/product/stock/index.php
|
|
* \ingroup stock
|
|
* \brief Home page of stock area
|
|
*/
|
|
|
|
require '../../main.inc.php';
|
|
require_once DOL_DOCUMENT_ROOT.'/product/stock/class/entrepot.class.php';
|
|
|
|
$langs->load("stocks");
|
|
$langs->load("productbatch");
|
|
|
|
// Security check
|
|
$result=restrictedArea($user,'stock');
|
|
|
|
|
|
/*
|
|
* View
|
|
*/
|
|
|
|
$help_url='EN:Module_Stocks_En|FR:Module_Stock|ES:Módulo_Stocks';
|
|
llxHeader("",$langs->trans("Stocks"),$help_url);
|
|
|
|
print_fiche_titre($langs->trans("StocksArea"));
|
|
|
|
|
|
//print '<table border="0" width="100%" class="notopnoleftnoright">';
|
|
//print '<tr><td valign="top" width="30%" class="notopnoleft">';
|
|
print '<div class="fichecenter"><div class="fichethirdleft">';
|
|
|
|
|
|
/*
|
|
* Zone recherche entrepot
|
|
*/
|
|
print '<form method="post" action="'.DOL_URL_ROOT.'/product/stock/list.php">';
|
|
print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
|
|
print '<table class="noborder nohover" width="100%">';
|
|
print "<tr class=\"liste_titre\">";
|
|
print '<td colspan="3">'.$langs->trans("Search").'</td></tr>';
|
|
print "<tr ".$bc[false]."><td>";
|
|
print $langs->trans("Ref").':</td><td><input class="flat" type="text" size="18" name="sref"></td><td rowspan="2"><input type="submit" value="'.$langs->trans("Search").'" class="button"></td></tr>';
|
|
print "<tr ".$bc[false]."><td>".$langs->trans("Other").':</td><td><input type="text" name="sall" class="flat" size="18"></td>';
|
|
print "</table></form><br>";
|
|
|
|
$sql = "SELECT e.label, e.rowid, e.statut";
|
|
$sql.= " FROM ".MAIN_DB_PREFIX."entrepot as e";
|
|
$sql.= " WHERE e.statut in (0,1)";
|
|
$sql.= " AND e.entity IN (".getEntity('stock', 1).")";
|
|
$sql.= $db->order('e.statut','DESC');
|
|
$sql.= $db->plimit(15, 0);
|
|
|
|
$result = $db->query($sql);
|
|
|
|
if ($result)
|
|
{
|
|
$num = $db->num_rows($result);
|
|
|
|
$i = 0;
|
|
|
|
print '<table class="noborder" width="100%">';
|
|
print '<tr class="liste_titre"><td colspan="2">'.$langs->trans("Warehouses").'</td></tr>';
|
|
|
|
if ($num)
|
|
{
|
|
$entrepot=new Entrepot($db);
|
|
|
|
$var=True;
|
|
while ($i < $num)
|
|
{
|
|
$objp = $db->fetch_object($result);
|
|
$var=!$var;
|
|
print "<tr ".$bc[$var].">";
|
|
print "<td><a href=\"card.php?id=$objp->rowid\">".img_object($langs->trans("ShowStock"),"stock")." ".$objp->label."</a></td>\n";
|
|
print '<td align="right">'.$entrepot->LibStatut($objp->statut,5).'</td>';
|
|
print "</tr>\n";
|
|
$i++;
|
|
}
|
|
$db->free($result);
|
|
|
|
}
|
|
print "</table>";
|
|
}
|
|
else
|
|
{
|
|
dol_print_error($db);
|
|
}
|
|
|
|
|
|
//print '</td><td valign="top" width="70%" class="notopnoleftnoright">';
|
|
print '</div><div class="fichetwothirdright"><div class="ficheaddleft">';
|
|
|
|
|
|
// Last movements
|
|
$max=10;
|
|
$sql = "SELECT p.rowid, p.label as produit,";
|
|
$sql.= " e.label as stock, e.rowid as entrepot_id,";
|
|
$sql.= " m.value as qty, m.datem, m.batch, m.eatby, m.sellby";
|
|
$sql.= " FROM ".MAIN_DB_PREFIX."entrepot as e";
|
|
$sql.= ", ".MAIN_DB_PREFIX."stock_mouvement as m";
|
|
$sql.= ", ".MAIN_DB_PREFIX."product as p";
|
|
$sql.= " WHERE m.fk_product = p.rowid";
|
|
$sql.= " AND m.fk_entrepot = e.rowid";
|
|
$sql.= " AND e.entity IN (".getEntity('stock', 1).")";
|
|
if (empty($conf->global->STOCK_SUPPORTS_SERVICES)) $sql.= " AND p.fk_product_type = 0";
|
|
$sql.= $db->order("datem","DESC");
|
|
$sql.= $db->plimit($max,0);
|
|
|
|
dol_syslog("Index:list stock movements", LOG_DEBUG);
|
|
$resql = $db->query($sql);
|
|
if ($resql)
|
|
{
|
|
$num = $db->num_rows($resql);
|
|
|
|
print '<table class="noborder" width="100%">';
|
|
print "<tr class=\"liste_titre\">";
|
|
print '<td>'.$langs->trans("LastMovements",min($num,$max)).'</td>';
|
|
print '<td>'.$langs->trans("Product").'</td>';
|
|
if (! empty($conf->productbatch->enabled))
|
|
{
|
|
print '<td>'.$langs->trans("Batch").'</td>';
|
|
print '<td>'.$langs->trans("l_eatby").'</td>';
|
|
print '<td>'.$langs->trans("l_sellby").'</td>';
|
|
}
|
|
print '<td>'.$langs->trans("Warehouse").'</td>';
|
|
print '<td align="right"><a href="'.DOL_URL_ROOT.'/product/stock/mouvement.php">'.$langs->trans("FullList").'</a></td>';
|
|
print "</tr>\n";
|
|
|
|
$var=True;
|
|
$i=0;
|
|
while ($i < min($num,$max))
|
|
{
|
|
$objp = $db->fetch_object($resql);
|
|
$var=!$var;
|
|
print "<tr ".$bc[$var].">";
|
|
print '<td>'.dol_print_date($db->jdate($objp->datem),'dayhour').'</td>';
|
|
print "<td><a href=\"../card.php?id=$objp->rowid\">";
|
|
print img_object($langs->trans("ShowProduct"),"product").' '.$objp->produit;
|
|
print "</a></td>\n";
|
|
if (! empty($conf->productbatch->enabled))
|
|
{
|
|
print '<td>'.$objp->batch.'</td>';
|
|
print '<td>'.dol_print_date($db->jdate($objp->eatby),'day').'</td>';
|
|
print '<td>'.dol_print_date($db->jdate($objp->sellby),'day').'</td>';
|
|
}
|
|
print '<td><a href="card.php?id='.$objp->entrepot_id.'">';
|
|
print img_object($langs->trans("ShowWarehouse"),"stock").' '.$objp->stock;
|
|
print "</a></td>\n";
|
|
print '<td align="right">';
|
|
if ($objp->qty > 0) print '+';
|
|
print $objp->qty.'</td>';
|
|
print "</tr>\n";
|
|
$i++;
|
|
}
|
|
$db->free($resql);
|
|
|
|
print "</table>";
|
|
}
|
|
|
|
//print '</td></tr></table>';
|
|
print '</div></div></div>';
|
|
|
|
llxFooter();
|
|
|
|
$db->close();
|