mirror of
https://github.com/YunoHost-Apps/dolibarr_ynh.git
synced 2024-09-03 18:35:53 +02:00
583 lines
20 KiB
PHP
583 lines
20 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 Simon Tosser <simon@kornog-computing.com>
|
|
* Copyright (C) 2005-2014 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/card.php
|
|
* \ingroup stock
|
|
* \brief Page fiche entrepot
|
|
*/
|
|
|
|
require '../../main.inc.php';
|
|
require_once DOL_DOCUMENT_ROOT.'/product/stock/class/entrepot.class.php';
|
|
require_once DOL_DOCUMENT_ROOT.'/product/class/product.class.php';
|
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/stock.lib.php';
|
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/product.lib.php';
|
|
require_once DOL_DOCUMENT_ROOT.'/core/class/html.formcompany.class.php';
|
|
|
|
$langs->load("products");
|
|
$langs->load("stocks");
|
|
$langs->load("companies");
|
|
|
|
$action=GETPOST('action');
|
|
$cancel=GETPOST('cancel');
|
|
$confirm=GETPOST('confirm');
|
|
|
|
$sortfield = GETPOST("sortfield",'alpha');
|
|
$sortorder = GETPOST("sortorder",'alpha');
|
|
$id = GETPOST("id",'int');
|
|
if (! $sortfield) $sortfield="p.ref";
|
|
if (! $sortorder) $sortorder="DESC";
|
|
|
|
$backtopage=GETPOST("backtopage");
|
|
|
|
// Security check
|
|
$result=restrictedArea($user,'stock');
|
|
|
|
// Initialize technical object to manage hooks of thirdparties. Note that conf->hooks_modules contains array array
|
|
$hookmanager->initHooks(array('warehousecard','globalcard'));
|
|
|
|
|
|
/*
|
|
* Actions
|
|
*/
|
|
|
|
// Ajout entrepot
|
|
if ($action == 'add' && $user->rights->stock->creer)
|
|
{
|
|
$object = new Entrepot($db);
|
|
|
|
$object->ref = GETPOST("ref");
|
|
$object->libelle = GETPOST("libelle");
|
|
$object->description = GETPOST("desc");
|
|
$object->statut = GETPOST("statut");
|
|
$object->lieu = GETPOST("lieu");
|
|
$object->address = GETPOST("address");
|
|
$object->zip = GETPOST("zipcode");
|
|
$object->town = GETPOST("town");
|
|
$object->country_id = GETPOST("country_id");
|
|
|
|
if (! empty($object->libelle))
|
|
{
|
|
$id = $object->create($user);
|
|
if ($id > 0)
|
|
{
|
|
setEventMessage($langs->trans("RecordSaved"));
|
|
|
|
if (! empty($backtopage))
|
|
{
|
|
header("Location: ".$backtopage);
|
|
exit;
|
|
}
|
|
else
|
|
{
|
|
header("Location: card.php?id=".$id);
|
|
exit;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
$action = 'create';
|
|
setEventMessage($object->error, 'errors');
|
|
}
|
|
}
|
|
else {
|
|
setEventMessage($langs->trans("ErrorWarehouseRefRequired"), 'errors');
|
|
$action="create"; // Force retour sur page creation
|
|
}
|
|
}
|
|
|
|
// Delete warehouse
|
|
if ($action == 'confirm_delete' && $confirm == 'yes' && $user->rights->stock->supprimer)
|
|
{
|
|
$object = new Entrepot($db);
|
|
$object->fetch($_REQUEST["id"]);
|
|
$result=$object->delete($user);
|
|
if ($result > 0)
|
|
{
|
|
header("Location: ".DOL_URL_ROOT.'/product/stock/list.php');
|
|
exit;
|
|
}
|
|
else
|
|
{
|
|
setEventMessage($object->error, 'errors');
|
|
$action='';
|
|
}
|
|
}
|
|
|
|
// Modification entrepot
|
|
if ($action == 'update' && $cancel <> $langs->trans("Cancel"))
|
|
{
|
|
$object = new Entrepot($db);
|
|
if ($object->fetch($id))
|
|
{
|
|
$object->libelle = GETPOST("libelle");
|
|
$object->description = GETPOST("desc");
|
|
$object->statut = GETPOST("statut");
|
|
$object->lieu = GETPOST("lieu");
|
|
$object->address = GETPOST("address");
|
|
$object->zip = GETPOST("zipcode");
|
|
$object->town = GETPOST("town");
|
|
$object->country_id = GETPOST("country_id");
|
|
|
|
if ( $object->update($id, $user) > 0)
|
|
{
|
|
$action = '';
|
|
}
|
|
else
|
|
{
|
|
$action = 'edit';
|
|
setEventMessage($object->error, 'errors');
|
|
}
|
|
}
|
|
else
|
|
{
|
|
$action = 'edit';
|
|
setEventMessage($object->error, 'errors');
|
|
}
|
|
}
|
|
|
|
if ($cancel == $langs->trans("Cancel"))
|
|
{
|
|
$action = '';
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
* View
|
|
*/
|
|
|
|
$productstatic=new Product($db);
|
|
$form=new Form($db);
|
|
$formcompany=new FormCompany($db);
|
|
|
|
$help_url='EN:Module_Stocks_En|FR:Module_Stock|ES:Módulo_Stocks';
|
|
llxHeader("",$langs->trans("WarehouseCard"),$help_url);
|
|
|
|
|
|
if ($action == 'create')
|
|
{
|
|
print_fiche_titre($langs->trans("NewWarehouse"));
|
|
|
|
print "<form action=\"card.php\" method=\"post\">\n";
|
|
print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
|
|
print '<input type="hidden" name="action" value="add">';
|
|
print '<input type="hidden" name="backtopage" value="'.$backtopage.'">';
|
|
|
|
dol_fiche_head();
|
|
|
|
print '<table class="border" width="100%">';
|
|
|
|
// Ref
|
|
print '<tr><td width="25%" class="fieldrequired">'.$langs->trans("Ref").'</td><td colspan="3"><input name="libelle" size="20" value=""></td></tr>';
|
|
|
|
print '<tr><td >'.$langs->trans("LocationSummary").'</td><td colspan="3"><input name="lieu" size="40" value="'.(!empty($object->lieu)?$object->lieu:'').'"></td></tr>';
|
|
|
|
// Description
|
|
print '<tr><td valign="top">'.$langs->trans("Description").'</td><td colspan="3">';
|
|
// Editeur wysiwyg
|
|
require_once DOL_DOCUMENT_ROOT.'/core/class/doleditor.class.php';
|
|
$doleditor=new DolEditor('desc',(!empty($object->description)?$object->description:''),'',180,'dolibarr_notes','In',false,true,$conf->fckeditor->enabled,5,70);
|
|
$doleditor->Create();
|
|
print '</td></tr>';
|
|
|
|
print '<tr><td>'.$langs->trans('Address').'</td><td colspan="3"><textarea name="address" cols="60" rows="3" wrap="soft">';
|
|
print (!empty($object->address)?$object->address:'');
|
|
print '</textarea></td></tr>';
|
|
|
|
// Zip / Town
|
|
print '<tr><td>'.$langs->trans('Zip').'</td><td>';
|
|
print $formcompany->select_ziptown((!empty($object->zip)?$object->zip:''),'zipcode',array('town','selectcountry_id','state_id'),6);
|
|
print '</td><td>'.$langs->trans('Town').'</td><td>';
|
|
print $formcompany->select_ziptown((!empty($object->town)?$object->town:''),'town',array('zipcode','selectcountry_id','state_id'));
|
|
print '</td></tr>';
|
|
|
|
// Country
|
|
print '<tr><td width="25%">'.$langs->trans('Country').'</td><td colspan="3">';
|
|
print $form->select_country((!empty($object->country_id)?$object->country_id:$mysoc->country_code),'country_id');
|
|
if ($user->admin) print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"),1);
|
|
print '</td></tr>';
|
|
|
|
print '<tr><td>'.$langs->trans("Status").'</td><td colspan="3">';
|
|
print '<select name="statut" class="flat">';
|
|
print '<option value="0">'.$langs->trans("WarehouseClosed").'</option>';
|
|
print '<option value="1" selected>'.$langs->trans("WarehouseOpened").'</option>';
|
|
print '</select>';
|
|
print '</td></tr>';
|
|
|
|
print '</table>';
|
|
|
|
dol_fiche_end();
|
|
|
|
print '<div class="center"><input type="submit" class="button" value="'.$langs->trans("Create").'"></div>';
|
|
|
|
print '</form>';
|
|
}
|
|
else
|
|
{
|
|
$id=GETPOST("id",'int');
|
|
if ($id)
|
|
{
|
|
$object = new Entrepot($db);
|
|
$result = $object->fetch($id);
|
|
if ($result < 0)
|
|
{
|
|
dol_print_error($db);
|
|
}
|
|
|
|
/*
|
|
* Affichage fiche
|
|
*/
|
|
if ($action <> 'edit' && $action <> 're-edit')
|
|
{
|
|
$head = stock_prepare_head($object);
|
|
|
|
dol_fiche_head($head, 'card', $langs->trans("Warehouse"), 0, 'stock');
|
|
|
|
// Confirm delete third party
|
|
if ($action == 'delete')
|
|
{
|
|
print $form->formconfirm($_SERVER["PHP_SELF"]."?id=".$object->id,$langs->trans("DeleteAWarehouse"),$langs->trans("ConfirmDeleteWarehouse",$object->libelle),"confirm_delete",'',0,2);
|
|
}
|
|
|
|
print '<table class="border" width="100%">';
|
|
|
|
$linkback = '<a href="'.DOL_URL_ROOT.'/product/stock/list.php">'.$langs->trans("BackToList").'</a>';
|
|
|
|
// Ref
|
|
print '<tr><td width="25%">'.$langs->trans("Ref").'</td><td colspan="3">';
|
|
print $form->showrefnav($object, 'id', $linkback, 1, 'rowid', 'libelle');
|
|
print '</td>';
|
|
|
|
print '<tr><td>'.$langs->trans("LocationSummary").'</td><td colspan="3">'.$object->lieu.'</td></tr>';
|
|
|
|
// Description
|
|
print '<tr><td valign="top">'.$langs->trans("Description").'</td><td colspan="3">'.nl2br($object->description).'</td></tr>';
|
|
|
|
// Address
|
|
print '<tr><td>'.$langs->trans('Address').'</td><td colspan="3">';
|
|
print $object->address;
|
|
print '</td></tr>';
|
|
|
|
// Town
|
|
print '<tr><td width="25%">'.$langs->trans('Zip').'</td><td width="25%">'.$object->zip.'</td>';
|
|
print '<td width="25%">'.$langs->trans('Town').'</td><td width="25%">'.$object->town.'</td></tr>';
|
|
|
|
// Country
|
|
print '<tr><td>'.$langs->trans('Country').'</td><td colspan="3">';
|
|
if (! empty($object->country_code))
|
|
{
|
|
$img=picto_from_langcode($object->country_code);
|
|
print ($img?$img.' ':'');
|
|
}
|
|
print $object->country;
|
|
print '</td></tr>';
|
|
|
|
// Status
|
|
print '<tr><td>'.$langs->trans("Status").'</td><td colspan="3">'.$object->getLibStatut(4).'</td></tr>';
|
|
|
|
$calcproductsunique=$object->nb_different_products();
|
|
$calcproducts=$object->nb_products();
|
|
|
|
// Total nb of different products
|
|
print '<tr><td valign="top">'.$langs->trans("NumberOfDifferentProducts").'</td><td colspan="3">';
|
|
print empty($calcproductsunique['nb'])?'0':$calcproductsunique['nb'];
|
|
print "</td></tr>";
|
|
|
|
// Nb of products
|
|
print '<tr><td valign="top">'.$langs->trans("NumberOfProducts").'</td><td colspan="3">';
|
|
print empty($calcproducts['nb'])?'0':$calcproducts['nb'];
|
|
print "</td></tr>";
|
|
|
|
// Value
|
|
print '<tr><td valign="top">'.$langs->trans("EstimatedStockValueShort").'</td><td colspan="3">';
|
|
print price((empty($calcproducts['value'])?'0':price2num($calcproducts['value'],'MT')), 0, $langs, 0, -1, -1, $conf->currency);
|
|
print "</td></tr>";
|
|
|
|
// Last movement
|
|
$sql = "SELECT max(m.datem) as datem";
|
|
$sql .= " FROM ".MAIN_DB_PREFIX."stock_mouvement as m";
|
|
$sql .= " WHERE m.fk_entrepot = '".$object->id."'";
|
|
$resqlbis = $db->query($sql);
|
|
if ($resqlbis)
|
|
{
|
|
$obj = $db->fetch_object($resqlbis);
|
|
$lastmovementdate=$db->jdate($obj->datem);
|
|
}
|
|
else
|
|
{
|
|
dol_print_error($db);
|
|
}
|
|
print '<tr><td valign="top">'.$langs->trans("LastMovement").'</td><td colspan="3">';
|
|
if ($lastmovementdate)
|
|
{
|
|
print dol_print_date($lastmovementdate,'dayhour').' ';
|
|
print '(<a href="'.DOL_URL_ROOT.'/product/stock/mouvement.php?id='.$object->id.'">'.$langs->trans("FullList").'</a>)';
|
|
}
|
|
else
|
|
{
|
|
print $langs->trans("None");
|
|
}
|
|
print "</td></tr>";
|
|
|
|
print "</table>";
|
|
|
|
print '</div>';
|
|
|
|
|
|
/* ************************************************************************** */
|
|
/* */
|
|
/* Barre d'action */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
print "<div class=\"tabsAction\">\n";
|
|
|
|
$parameters=array();
|
|
$reshook=$hookmanager->executeHooks('addMoreActionsButtons',$parameters,$object,$action); // Note that $action and $object may have been modified by hook
|
|
if (empty($reshook))
|
|
{
|
|
if (empty($action))
|
|
{
|
|
if ($user->rights->stock->creer)
|
|
print "<a class=\"butAction\" href=\"card.php?action=edit&id=".$object->id."\">".$langs->trans("Modify")."</a>";
|
|
else
|
|
print "<a class=\"butActionRefused\" href=\"#\">".$langs->trans("Modify")."</a>";
|
|
|
|
if ($user->rights->stock->supprimer)
|
|
print "<a class=\"butActionDelete\" href=\"card.php?action=delete&id=".$object->id."\">".$langs->trans("Delete")."</a>";
|
|
else
|
|
print "<a class=\"butActionRefused\" href=\"#\">".$langs->trans("Delete")."</a>";
|
|
}
|
|
}
|
|
|
|
print "</div>";
|
|
|
|
|
|
/* ************************************************************************** */
|
|
/* */
|
|
/* Affichage de la liste des produits de l'entrepot */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
print '<br>';
|
|
|
|
print '<table class="noborder" width="100%">';
|
|
print "<tr class=\"liste_titre\">";
|
|
print_liste_field_titre($langs->trans("Product"),"", "p.ref","&id=".$id,"","",$sortfield,$sortorder);
|
|
print_liste_field_titre($langs->trans("Label"),"", "p.label","&id=".$id,"","",$sortfield,$sortorder);
|
|
print_liste_field_titre($langs->trans("Units"),"", "ps.reel","&id=".$id,"",'align="right"',$sortfield,$sortorder);
|
|
print_liste_field_titre($langs->trans("AverageUnitPricePMPShort"),"", "ps.pmp","&id=".$id,"",'align="right"',$sortfield,$sortorder);
|
|
print_liste_field_titre($langs->trans("EstimatedStockValueShort"),"", "","&id=".$id,"",'align="right"',$sortfield,$sortorder);
|
|
if (empty($conf->global->PRODUIT_MULTIPRICES)) print_liste_field_titre($langs->trans("SellPriceMin"),"", "p.price","&id=".$id,"",'align="right"',$sortfield,$sortorder);
|
|
if (empty($conf->global->PRODUIT_MULTIPRICES)) print_liste_field_titre($langs->trans("EstimatedStockValueSellShort"),"", "","&id=".$id,"",'align="right"',$sortfield,$sortorder);
|
|
if ($user->rights->stock->mouvement->creer) print_liste_field_titre('');
|
|
if ($user->rights->stock->creer) print_liste_field_titre('');
|
|
print "</tr>\n";
|
|
|
|
$totalunit=0;
|
|
$totalvalue=$totalvaluesell=0;
|
|
|
|
$sql = "SELECT p.rowid as rowid, p.ref, p.label as produit, p.fk_product_type as type, p.pmp as ppmp, p.price, p.price_ttc,";
|
|
$sql.= " ps.pmp, ps.reel as value";
|
|
$sql.= " FROM ".MAIN_DB_PREFIX."product_stock as ps, ".MAIN_DB_PREFIX."product as p";
|
|
$sql.= " WHERE ps.fk_product = p.rowid";
|
|
$sql.= " AND ps.reel <> 0"; // We do not show if stock is 0 (no product in this warehouse)
|
|
$sql.= " AND ps.fk_entrepot = ".$object->id;
|
|
$sql.= $db->order($sortfield,$sortorder);
|
|
|
|
dol_syslog('List products', LOG_DEBUG);
|
|
$resql = $db->query($sql);
|
|
if ($resql)
|
|
{
|
|
$num = $db->num_rows($resql);
|
|
$i = 0;
|
|
$var=True;
|
|
while ($i < $num)
|
|
{
|
|
$objp = $db->fetch_object($resql);
|
|
|
|
// Multilangs
|
|
if (! empty($conf->global->MAIN_MULTILANGS)) // si l'option est active
|
|
{
|
|
$sql = "SELECT label";
|
|
$sql.= " FROM ".MAIN_DB_PREFIX."product_lang";
|
|
$sql.= " WHERE fk_product=".$objp->rowid;
|
|
$sql.= " AND lang='". $langs->getDefaultLang() ."'";
|
|
$sql.= " LIMIT 1";
|
|
|
|
$result = $db->query($sql);
|
|
if ($result)
|
|
{
|
|
$objtp = $db->fetch_object($result);
|
|
if ($objtp->label != '') $objp->produit = $objtp->label;
|
|
}
|
|
}
|
|
|
|
$var=!$var;
|
|
//print '<td>'.dol_print_date($objp->datem).'</td>';
|
|
print "<tr ".$bc[$var].">";
|
|
print "<td>";
|
|
$productstatic->id=$objp->rowid;
|
|
$productstatic->ref = $objp->ref;
|
|
$productstatic->label = $objp->produit;
|
|
$productstatic->type=$objp->type;
|
|
print $productstatic->getNomUrl(1,'stock',16);
|
|
print '</td>';
|
|
print '<td>'.$objp->produit.'</td>';
|
|
|
|
print '<td align="right">'.$objp->value.'</td>';
|
|
$totalunit+=$objp->value;
|
|
|
|
// Price buy PMP
|
|
print '<td align="right">'.price(price2num($objp->ppmp,'MU')).'</td>';
|
|
// Total PMP
|
|
print '<td align="right">'.price(price2num($objp->ppmp*$objp->value,'MT')).'</td>';
|
|
$totalvalue+=price2num($objp->ppmp*$objp->value,'MT');
|
|
|
|
// Price sell min
|
|
if (empty($conf->global->PRODUIT_MULTIPRICES))
|
|
{
|
|
$pricemin=$objp->price;
|
|
print '<td align="right">';
|
|
print price(price2num($pricemin,'MU'),1);
|
|
print '</td>';
|
|
// Total sell min
|
|
print '<td align="right">';
|
|
print price(price2num($pricemin*$objp->value,'MT'),1);
|
|
print '</td>';
|
|
}
|
|
$totalvaluesell+=price2num($pricemin*$objp->value,'MT');
|
|
|
|
if ($user->rights->stock->mouvement->creer)
|
|
{
|
|
print '<td align="center"><a href="'.DOL_URL_ROOT.'/product/stock/product.php?dwid='.$object->id.'&id='.$objp->rowid.'&action=transfert&backtopage='.urlencode($_SERVER["PHP_SELF"].'?id='.$id).'">';
|
|
print img_picto($langs->trans("StockMovement"),'uparrow.png','class="hideonsmartphone"').' '.$langs->trans("StockMovement");
|
|
print "</a></td>";
|
|
}
|
|
|
|
if ($user->rights->stock->creer)
|
|
{
|
|
print '<td align="center"><a href="'.DOL_URL_ROOT.'/product/stock/product.php?dwid='.$object->id.'&id='.$objp->rowid.'&action=correction&backtopage='.urlencode($_SERVER["PHP_SELF"].'?id='.$id).'">';
|
|
print $langs->trans("StockCorrection");
|
|
print "</a></td>";
|
|
}
|
|
|
|
print "</tr>";
|
|
$i++;
|
|
}
|
|
$db->free($resql);
|
|
|
|
print '<tr class="liste_total"><td class="liste_total" colspan="2">'.$langs->trans("Total").'</td>';
|
|
print '<td class="liste_total" align="right">'.$totalunit.'</td>';
|
|
print '<td class="liste_total"> </td>';
|
|
print '<td class="liste_total" align="right">'.price(price2num($totalvalue,'MT')).'</td>';
|
|
if (empty($conf->global->PRODUIT_MULTIPRICES))
|
|
{
|
|
print '<td class="liste_total"> </td>';
|
|
print '<td class="liste_total" align="right">'.price(price2num($totalvaluesell,'MT')).'</td>';
|
|
}
|
|
print '<td class="liste_total"> </td>';
|
|
print '<td class="liste_total"> </td>';
|
|
print '</tr>';
|
|
|
|
}
|
|
else
|
|
{
|
|
dol_print_error($db);
|
|
}
|
|
print "</table>\n";
|
|
}
|
|
|
|
|
|
/*
|
|
* Edition fiche
|
|
*/
|
|
if (($action == 'edit' || $action == 're-edit') && 1)
|
|
{
|
|
$langs->trans("WarehouseEdit");
|
|
|
|
print '<form action="card.php" method="POST">';
|
|
print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
|
|
print '<input type="hidden" name="action" value="update">';
|
|
print '<input type="hidden" name="id" value="'.$object->id.'">';
|
|
|
|
$head = stock_prepare_head($object);
|
|
|
|
dol_fiche_head($head, 'card', $langs->trans("Warehouse"), 0, 'stock');
|
|
|
|
print '<table class="border" width="100%">';
|
|
|
|
// Ref
|
|
print '<tr><td width="20%" class="fieldrequired">'.$langs->trans("Ref").'</td><td colspan="3"><input name="libelle" size="20" value="'.$object->libelle.'"></td></tr>';
|
|
|
|
print '<tr><td width="20%">'.$langs->trans("LocationSummary").'</td><td colspan="3"><input name="lieu" size="40" value="'.$object->lieu.'"></td></tr>';
|
|
|
|
// Description
|
|
print '<tr><td valign="top">'.$langs->trans("Description").'</td><td colspan="3">';
|
|
// Editeur wysiwyg
|
|
require_once DOL_DOCUMENT_ROOT.'/core/class/doleditor.class.php';
|
|
$doleditor=new DolEditor('desc',$object->description,'',180,'dolibarr_notes','In',false,true,$conf->fckeditor->enabled,5,70);
|
|
$doleditor->Create();
|
|
print '</td></tr>';
|
|
|
|
print '<tr><td>'.$langs->trans('Address').'</td><td colspan="3"><textarea name="address" cols="60" rows="3" wrap="soft">';
|
|
print $object->address;
|
|
print '</textarea></td></tr>';
|
|
|
|
// Zip / Town
|
|
print '<tr><td>'.$langs->trans('Zip').'</td><td>';
|
|
print $formcompany->select_ziptown($object->zip,'zipcode',array('town','selectcountry_id','state_id'),6);
|
|
print '</td><td>'.$langs->trans('Town').'</td><td>';
|
|
print $formcompany->select_ziptown($object->town,'town',array('zipcode','selectcountry_id','state_id'));
|
|
print '</td></tr>';
|
|
|
|
// Country
|
|
print '<tr><td width="25%">'.$langs->trans('Country').'</td><td colspan="3">';
|
|
print $form->select_country($object->country_id?$object->country_id:$mysoc->country_code,'country_id');
|
|
if ($user->admin) print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"),1);
|
|
print '</td></tr>';
|
|
|
|
print '<tr><td width="20%">'.$langs->trans("Status").'</td><td colspan="3">';
|
|
print '<select name="statut" class="flat">';
|
|
print '<option value="0" '.($object->statut == 0?'selected':'').'>'.$langs->trans("WarehouseClosed").'</option>';
|
|
print '<option value="1" '.($object->statut == 0?'':'selected').'>'.$langs->trans("WarehouseOpened").'</option>';
|
|
print '</select>';
|
|
print '</td></tr>';
|
|
|
|
print '</table>';
|
|
|
|
dol_fiche_end();
|
|
|
|
print '<div class="center">';
|
|
print '<input type="submit" class="button" value="'.$langs->trans("Save").'">';
|
|
print ' ';
|
|
print '<input type="submit" class="button" name="cancel" value="'.$langs->trans("Cancel").'">';
|
|
print '</div>';
|
|
|
|
print '</form>';
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
llxFooter();
|
|
|
|
$db->close();
|