mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-06 01:28:19 +01:00
539 lines
17 KiB
PHP
539 lines
17 KiB
PHP
<?php
|
|
/* Copyright (C) 2006 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
|
* Copyright (C) 2008-2010 Laurent Destailleur <eldy@users.sourceforge.net>
|
|
* Copyright (C) 2005-2009 Regis Houssin <regis.houssin@inodbox.com>
|
|
* Copyright (C) 2012-2013 Juanjo Menent <jmenent@2byte.es>
|
|
* Copyright (C) 2013-2018 Philippe Grand <philippe.grand@atoo-net.com>
|
|
* Copyright (C) 2013 Florian Henry <florian.henry@open-concept.pro>
|
|
*
|
|
* 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/admin/stock.php
|
|
* \ingroup stock
|
|
* \brief Page d'administration/configuration du module gestion de stock
|
|
*/
|
|
require '../main.inc.php';
|
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
|
|
|
|
// Load translation files required by the page
|
|
$langs->loadLangs(array("admin", "stocks"));
|
|
|
|
// Securit check
|
|
if (!$user->admin) accessforbidden();
|
|
|
|
$action = GETPOST('action', 'alpha');
|
|
|
|
|
|
/*
|
|
* Action
|
|
*/
|
|
if (preg_match('/set_([a-z0-9_\-]+)/i', $action, $reg))
|
|
{
|
|
$code=$reg[1];
|
|
if (dolibarr_set_const($db, $code, 1, 'chaine', 0, '', $conf->entity) > 0)
|
|
{
|
|
header("Location: ".$_SERVER["PHP_SELF"]);
|
|
exit;
|
|
}
|
|
else
|
|
{
|
|
dol_print_error($db);
|
|
}
|
|
}
|
|
|
|
if (preg_match('/del_([a-z0-9_\-]+)/i', $action, $reg))
|
|
{
|
|
$code=$reg[1];
|
|
if (dolibarr_del_const($db, $code, $conf->entity) > 0)
|
|
{
|
|
header("Location: ".$_SERVER["PHP_SELF"]);
|
|
exit;
|
|
}
|
|
else
|
|
{
|
|
dol_print_error($db);
|
|
}
|
|
}
|
|
|
|
/*
|
|
* View
|
|
*/
|
|
|
|
llxHeader('', $langs->trans("StockSetup"));
|
|
|
|
$linkback='<a href="'.DOL_URL_ROOT.'/admin/modules.php?restore_lastsearch_values=1">'.$langs->trans("BackToModuleList").'</a>';
|
|
print load_fiche_titre($langs->trans("StockSetup"), $linkback, 'title_setup');
|
|
|
|
$form=new Form($db);
|
|
|
|
|
|
$disabled='';
|
|
if (! empty($conf->productbatch->enabled))
|
|
{
|
|
$langs->load("productbatch");
|
|
$disabled=' disabled';
|
|
print info_admin($langs->trans("WhenProductBatchModuleOnOptionAreForced"));
|
|
}
|
|
|
|
//if (! empty($conf->global->STOCK_CALCULATE_ON_VALIDATE_ORDER) || ! empty($conf->global->STOCK_CALCULATE_ON_SHIPMENT))
|
|
//{
|
|
print info_admin($langs->trans("IfYouUsePointOfSaleCheckModule"));
|
|
print '<br>';
|
|
//}
|
|
|
|
// Title rule for stock decrease
|
|
print '<table class="noborder" width="100%">';
|
|
print '<tr class="liste_titre">';
|
|
print "<td>".$langs->trans("RuleForStockManagementDecrease")."</td>\n";
|
|
print '<td align="center">'.$langs->trans("Status").'</td>'."\n";
|
|
print '</tr>'."\n";
|
|
|
|
$found=0;
|
|
|
|
print '<tr class="oddeven">';
|
|
print '<td>'.$langs->trans("DeStockOnBill").'</td>';
|
|
print '<td align="center">';
|
|
if (! empty($conf->facture->enabled))
|
|
{
|
|
if ($conf->use_javascript_ajax) {
|
|
print ajax_constantonoff('STOCK_CALCULATE_ON_BILL');
|
|
} else {
|
|
$arrval = array('0' => $langs->trans("No"), '1' => $langs->trans("Yes"));
|
|
print $form->selectarray("STOCK_CALCULATE_ON_BILL", $arrval, $conf->global->STOCK_CALCULATE_ON_BILL);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
print $langs->trans("ModuleMustBeEnabledFirst", $langs->transnoentitiesnoconv("Module30Name"));
|
|
}
|
|
print "</td>\n</tr>\n";
|
|
$found++;
|
|
|
|
|
|
print '<tr class="oddeven">';
|
|
print '<td>'.$langs->trans("DeStockOnValidateOrder").'</td>';
|
|
print '<td align="center">';
|
|
if (! empty($conf->commande->enabled))
|
|
{
|
|
if ($conf->use_javascript_ajax) {
|
|
print ajax_constantonoff('STOCK_CALCULATE_ON_VALIDATE_ORDER');
|
|
} else {
|
|
$arrval = array('0' => $langs->trans("No"), '1' => $langs->trans("Yes"));
|
|
print $form->selectarray("STOCK_CALCULATE_ON_VALIDATE_ORDER", $arrval, $conf->global->STOCK_CALCULATE_ON_VALIDATE_ORDER);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
print $langs->trans("ModuleMustBeEnabledFirst", $langs->transnoentitiesnoconv("Module25Name"));
|
|
}
|
|
print "</td>\n</tr>\n";
|
|
$found++;
|
|
|
|
//if (! empty($conf->expedition->enabled))
|
|
//{
|
|
|
|
print '<tr class="oddeven">';
|
|
print '<td>'.$langs->trans("DeStockOnShipment").'</td>';
|
|
print '<td align="center">';
|
|
if (! empty($conf->expedition->enabled))
|
|
{
|
|
if ($conf->use_javascript_ajax) {
|
|
print ajax_constantonoff('STOCK_CALCULATE_ON_SHIPMENT');
|
|
} else {
|
|
$arrval = array('0' => $langs->trans("No"), '1' => $langs->trans("Yes"));
|
|
print $form->selectarray("STOCK_CALCULATE_ON_SHIPMENT", $arrval, $conf->global->STOCK_CALCULATE_ON_SHIPMENT);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
print $langs->trans("ModuleMustBeEnabledFirst", $langs->transnoentitiesnoconv("Module80Name"));
|
|
}
|
|
print "</td>\n</tr>\n";
|
|
$found++;
|
|
|
|
|
|
print '<tr class="oddeven">';
|
|
print '<td>'.$langs->trans("DeStockOnShipmentOnClosing").'</td>';
|
|
print '<td align="center">';
|
|
if (! empty($conf->expedition->enabled))
|
|
{
|
|
if ($conf->use_javascript_ajax) {
|
|
print ajax_constantonoff('STOCK_CALCULATE_ON_SHIPMENT_CLOSE');
|
|
} else {
|
|
$arrval = array('0' => $langs->trans("No"), '1' => $langs->trans("Yes"));
|
|
print $form->selectarray("STOCK_CALCULATE_ON_SHIPMENT_CLOSE", $arrval, $conf->global->STOCK_CALCULATE_ON_SHIPMENT_CLOSE);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
print $langs->trans("ModuleMustBeEnabledFirst", $langs->transnoentitiesnoconv("Module80Name"));
|
|
}
|
|
print "</td>\n</tr>\n";
|
|
$found++;
|
|
|
|
/*if (! $found)
|
|
{
|
|
|
|
print '<tr class="oddeven">';
|
|
print '<td colspan="2">'.$langs->trans("NoModuleToManageStockDecrease").'</td>';
|
|
print "</tr>\n";
|
|
}*/
|
|
|
|
print '</table>';
|
|
|
|
print '<br>';
|
|
|
|
// Title rule for stock increase
|
|
print '<table class="noborder" width="100%">';
|
|
print '<tr class="liste_titre">';
|
|
print "<td>".$langs->trans("RuleForStockManagementIncrease")."</td>\n";
|
|
print '<td align="center">'.$langs->trans("Status").'</td>'."\n";
|
|
print '</tr>'."\n";
|
|
|
|
$found=0;
|
|
|
|
print '<tr class="oddeven">';
|
|
print '<td>'.$langs->trans("ReStockOnBill").'</td>';
|
|
print '<td align="center">';
|
|
if (! empty($conf->fournisseur->enabled))
|
|
{
|
|
if ($conf->use_javascript_ajax) {
|
|
print ajax_constantonoff('STOCK_CALCULATE_ON_SUPPLIER_BILL');
|
|
} else {
|
|
$arrval = array('0' => $langs->trans("No"), '1' => $langs->trans("Yes"));
|
|
print $form->selectarray("STOCK_CALCULATE_ON_SUPPLIER_BILL", $arrval, $conf->global->STOCK_CALCULATE_ON_SUPPLIER_BILL);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
print $langs->trans("ModuleMustBeEnabledFirst", $langs->transnoentitiesnoconv("Module40Name"));
|
|
}
|
|
print "</td>\n</tr>\n";
|
|
$found++;
|
|
|
|
|
|
|
|
print '<tr class="oddeven">';
|
|
print '<td>'.$langs->trans("ReStockOnValidateOrder").'</td>';
|
|
print '<td align="center">';
|
|
if (! empty($conf->fournisseur->enabled))
|
|
{
|
|
if ($conf->use_javascript_ajax) {
|
|
print ajax_constantonoff('STOCK_CALCULATE_ON_SUPPLIER_VALIDATE_ORDER');
|
|
} else {
|
|
$arrval = array('0' => $langs->trans("No"), '1' => $langs->trans("Yes"));
|
|
print $form->selectarray("STOCK_CALCULATE_ON_SUPPLIER_VALIDATE_ORDER", $arrval, $conf->global->STOCK_CALCULATE_ON_SUPPLIER_VALIDATE_ORDER);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
print $langs->trans("ModuleMustBeEnabledFirst", $langs->transnoentitiesnoconv("Module40Name"));
|
|
}
|
|
print "</td>\n</tr>\n";
|
|
$found++;
|
|
|
|
if (!empty($conf->reception->enabled))
|
|
{
|
|
print '<tr class="oddeven">';
|
|
print '<td width="60%">'.$langs->trans("StockOnReception").'</td>';
|
|
print '<td align="center">';
|
|
|
|
if ($conf->use_javascript_ajax) {
|
|
print ajax_constantonoff('STOCK_CALCULATE_ON_RECEPTION');
|
|
} else {
|
|
$arrval = array('0' => $langs->trans("No"), '1' => $langs->trans("Yes"));
|
|
print $form->selectarray("STOCK_CALCULATE_ON_RECEPTION", $arrval, $conf->global->STOCK_CALCULATE_ON_RECEPTION);
|
|
}
|
|
|
|
print "</td>\n</tr>\n";
|
|
$found++;
|
|
|
|
|
|
print '<tr class="oddeven">';
|
|
print '<td width="60%">'.$langs->trans("StockOnReceptionOnClosing").'</td>';
|
|
print '<td align="center">';
|
|
|
|
if ($conf->use_javascript_ajax) {
|
|
print ajax_constantonoff('STOCK_CALCULATE_ON_RECEPTION_CLOSE');
|
|
} else {
|
|
$arrval = array('0' => $langs->trans("No"), '1' => $langs->trans("Yes"));
|
|
print $form->selectarray("STOCK_CALCULATE_ON_RECEPTION_CLOSE", $arrval, $conf->global->STOCK_CALCULATE_ON_RECEPTION_CLOSE);
|
|
}
|
|
print "</td>\n</tr>\n";
|
|
$found++;
|
|
}
|
|
else
|
|
{
|
|
print '<tr class="oddeven">';
|
|
print '<td>'.$langs->trans("ReStockOnDispatchOrder").'</td>';
|
|
print '<td align="center">';
|
|
if (! empty($conf->fournisseur->enabled))
|
|
{
|
|
if ($conf->use_javascript_ajax) {
|
|
print ajax_constantonoff('STOCK_CALCULATE_ON_SUPPLIER_DISPATCH_ORDER');
|
|
} else {
|
|
$arrval = array('0' => $langs->trans("No"), '1' => $langs->trans("Yes"));
|
|
print $form->selectarray("STOCK_CALCULATE_ON_SUPPLIER_DISPATCH_ORDER", $arrval, $conf->global->STOCK_CALCULATE_ON_SUPPLIER_DISPATCH_ORDER);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
print $langs->trans("ModuleMustBeEnabledFirst", $langs->transnoentitiesnoconv("Module40Name"));
|
|
}
|
|
print "</td>\n</tr>\n";
|
|
$found++;
|
|
}
|
|
|
|
/*if (! $found)
|
|
{
|
|
|
|
print '<tr class="oddeven">';
|
|
print '<td colspan="2">'.$langs->trans("NoModuleToManageStockIncrease").'</td>';
|
|
print "</tr>\n";
|
|
}*/
|
|
|
|
print '</table>';
|
|
|
|
print '<br>';
|
|
print '<table class="noborder" width="100%">';
|
|
print '<tr class="liste_titre">';
|
|
print "<td>".$langs->trans("RuleForStockAvailability")."</td>\n";
|
|
print '<td align="center">'.$langs->trans("Status").'</td>'."\n";
|
|
print '</tr>'."\n";
|
|
|
|
|
|
print '<tr class="oddeven">';
|
|
print '<td>'.$langs->trans("WarehouseAllowNegativeTransfer").'</td>';
|
|
print '<td align="center">';
|
|
if ($conf->use_javascript_ajax) {
|
|
print ajax_constantonoff('STOCK_ALLOW_NEGATIVE_TRANSFER');
|
|
} else {
|
|
$arrval = array('0' => $langs->trans("No"), '1' => $langs->trans("Yes"));
|
|
print $form->selectarray("STOCK_ALLOW_NEGATIVE_TRANSFER", $arrval, $conf->global->STOCK_ALLOW_NEGATIVE_TRANSFER);
|
|
}
|
|
print "</td>\n";
|
|
print "</tr>\n";
|
|
|
|
// Option to force stock to be enough before adding a line into document
|
|
if($conf->invoice->enabled)
|
|
{
|
|
print '<tr class="oddeven">';
|
|
print '<td>'.$langs->trans("StockMustBeEnoughForInvoice").'</td>';
|
|
print '<td align="center">';
|
|
if ($conf->use_javascript_ajax) {
|
|
print ajax_constantonoff('STOCK_MUST_BE_ENOUGH_FOR_INVOICE');
|
|
} else {
|
|
$arrval = array('0' => $langs->trans("No"), '1' => $langs->trans("Yes"));
|
|
print $form->selectarray("STOCK_MUST_BE_ENOUGH_FOR_INVOICE", $arrval, $conf->global->STOCK_MUST_BE_ENOUGH_FOR_INVOICE);
|
|
}
|
|
print "</td>\n";
|
|
print "</tr>\n";
|
|
}
|
|
|
|
if($conf->order->enabled)
|
|
{
|
|
print '<tr class="oddeven">';
|
|
print '<td>'.$langs->trans("StockMustBeEnoughForOrder").'</td>';
|
|
print '<td align="center">';
|
|
if ($conf->use_javascript_ajax) {
|
|
print ajax_constantonoff('STOCK_MUST_BE_ENOUGH_FOR_ORDER');
|
|
} else {
|
|
$arrval = array('0' => $langs->trans("No"), '1' => $langs->trans("Yes"));
|
|
print $form->selectarray("STOCK_MUST_BE_ENOUGH_FOR_ORDER", $arrval, $conf->global->STOCK_MUST_BE_ENOUGH_FOR_ORDER);
|
|
}
|
|
print "</td>\n";
|
|
print "</tr>\n";
|
|
}
|
|
|
|
if($conf->expedition->enabled)
|
|
{
|
|
print '<tr class="oddeven">';
|
|
print '<td>'.$langs->trans("StockMustBeEnoughForShipment").'</td>';
|
|
print '<td align="center">';
|
|
if ($conf->use_javascript_ajax) {
|
|
print ajax_constantonoff('STOCK_MUST_BE_ENOUGH_FOR_SHIPMENT');
|
|
} else {
|
|
$arrval = array('0' => $langs->trans("No"), '1' => $langs->trans("Yes"));
|
|
print $form->selectarray("STOCK_MUST_BE_ENOUGH_FOR_SHIPMENT", $arrval, $conf->global->STOCK_MUST_BE_ENOUGH_FOR_SHIPMENT);
|
|
}
|
|
print "</td>\n";
|
|
print "</tr>\n";
|
|
}
|
|
print '</table>';
|
|
|
|
print '<br>';
|
|
|
|
$virtualdiffersfromphysical=0;
|
|
if (! empty($conf->global->STOCK_CALCULATE_ON_SHIPMENT)
|
|
|| ! empty($conf->global->STOCK_CALCULATE_ON_SUPPLIER_DISPATCH_ORDER)
|
|
) $virtualdiffersfromphysical=1; // According to increase/decrease stock options, virtual and physical stock may differs.
|
|
|
|
if ($virtualdiffersfromphysical)
|
|
{
|
|
print '<table class="noborder" width="100%">';
|
|
print '<tr class="liste_titre">';
|
|
print "<td>".$langs->trans("RuleForStockReplenishment")." ".img_help('help', $langs->trans("VirtualDiffersFromPhysical"))."</td>\n";
|
|
print '<td align="center">'.$langs->trans("Status").'</td>'."\n";
|
|
print '</tr>'."\n";
|
|
|
|
print '<tr class="oddeven">';
|
|
print '<td>'.$langs->trans("UseVirtualStockByDefault").'</td>';
|
|
print '<td align="center">';
|
|
if ($conf->use_javascript_ajax) {
|
|
print ajax_constantonoff('STOCK_USE_VIRTUAL_STOCK');
|
|
} else {
|
|
$arrval = array('0' => $langs->trans("No"), '1' => $langs->trans("Yes"));
|
|
print $form->selectarray("STOCK_USE_VIRTUAL_STOCK", $arrval, $conf->global->STOCK_USE_VIRTUAL_STOCK);
|
|
}
|
|
print "</td>\n";
|
|
print "</tr>\n";
|
|
print '</table>';
|
|
print '<br>';
|
|
}
|
|
|
|
|
|
print '<table class="noborder" width="100%">';
|
|
|
|
print '<tr class="liste_titre">';
|
|
print "<td>".$langs->trans("Other")."</td>\n";
|
|
print '<td class="center">'.$langs->trans("Status").'</td>'."\n";
|
|
print '</tr>'."\n";
|
|
|
|
print '<tr class="oddeven">';
|
|
print '<td>'.$langs->trans("UserWarehouseAutoCreate").'</td>';
|
|
print '<td class="center">';
|
|
if ($conf->use_javascript_ajax) {
|
|
print ajax_constantonoff('STOCK_USERSTOCK_AUTOCREATE');
|
|
} else {
|
|
$arrval = array('0' => $langs->trans("No"), '1' => $langs->trans("Yes"));
|
|
print $form->selectarray("STOCK_USERSTOCK_AUTOCREATE", $arrval, $conf->global->STOCK_USERSTOCK_AUTOCREATE);
|
|
}
|
|
print "</td>\n";
|
|
print "</tr>\n";
|
|
|
|
print '<tr class="oddeven">';
|
|
print '<td>';
|
|
print $form->textwithpicto($langs->trans("StockSupportServices"), $langs->trans("StockSupportServicesDesc"));
|
|
print '</td>';
|
|
print '<td class="center">';
|
|
if ($conf->use_javascript_ajax) {
|
|
print ajax_constantonoff('STOCK_SUPPORTS_SERVICES');
|
|
} else {
|
|
$arrval = array('0' => $langs->trans("No"), '1' => $langs->trans("Yes"));
|
|
print $form->selectarray("STOCK_SUPPORTS_SERVICES", $arrval, $conf->global->STOCK_SUPPORTS_SERVICES);
|
|
}
|
|
print "</td>\n";
|
|
print "</tr>\n";
|
|
|
|
print '<tr class="oddeven">';
|
|
print '<td>'.$langs->trans("AllowAddLimitStockByWarehouse").'</td>';
|
|
print '<td class="center">';
|
|
if ($conf->use_javascript_ajax) {
|
|
print ajax_constantonoff('STOCK_ALLOW_ADD_LIMIT_STOCK_BY_WAREHOUSE');
|
|
} else {
|
|
$arrval = array('0' => $langs->trans("No"), '1' => $langs->trans("Yes"));
|
|
print $form->selectarray("STOCK_ALLOW_ADD_LIMIT_STOCK_BY_WAREHOUSE", $arrval, $conf->global->STOCK_ALLOW_ADD_LIMIT_STOCK_BY_WAREHOUSE);
|
|
}
|
|
print "</td>\n";
|
|
print "</tr>\n";
|
|
|
|
if (! empty($conf->fournisseur->enabled) && !empty($conf->global->STOCK_CALCULATE_ON_SUPPLIER_DISPATCH_ORDER)) {
|
|
print '<tr class="oddeven">';
|
|
print '<td>'.$langs->trans("UseDispatchStatus").'</td>';
|
|
print '<td class="center">';
|
|
if ($conf->use_javascript_ajax) {
|
|
print ajax_constantonoff('SUPPLIER_ORDER_USE_DISPATCH_STATUS');
|
|
} else {
|
|
$arrval = array('0' => $langs->trans("No"), '1' => $langs->trans("Yes"));
|
|
print $form->selectarray("SUPPLIER_ORDER_USE_DISPATCH_STATUS", $arrval, $conf->global->SUPPLIER_ORDER_USE_DISPATCH_STATUS);
|
|
}
|
|
print "</td>\n</tr>\n";
|
|
}
|
|
|
|
print '</table>';
|
|
|
|
print '<br>';
|
|
if ($conf->global->MAIN_FEATURES_LEVEL >= 2)
|
|
{
|
|
print '<table class="noborder" width="100%">';
|
|
print '<tr class="liste_titre">';
|
|
print '<td>'.$langs->trans("Inventory").'</td>'."\n";
|
|
print '<td align="center">'.$langs->trans("Status").'</td>'."\n";
|
|
print '</tr>'."\n";
|
|
|
|
// Example with a yes / no select
|
|
print '<tr class="oddeven">';
|
|
print '<td>'.$langs->trans("INVENTORY_DISABLE_VIRTUAL").'</td>';
|
|
print '<td align="center">';
|
|
if ($conf->use_javascript_ajax) {
|
|
print ajax_constantonoff('INVENTORY_DISABLE_VIRTUAL');
|
|
} else {
|
|
$arrval = array('0' => $langs->trans("No"), '1' => $langs->trans("Yes"));
|
|
print $form->selectarray("INVENTORY_DISABLE_VIRTUAL", $arrval, $conf->global->INVENTORY_DISABLE_VIRTUAL);
|
|
}
|
|
print '</td></tr>';
|
|
|
|
// Example with a yes / no select
|
|
print '<tr class="oddeven">';
|
|
print '<td>'.$langs->trans("INVENTORY_USE_MIN_PA_IF_NO_LAST_PA").'</td>';
|
|
print '<td align="center">';
|
|
if ($conf->use_javascript_ajax) {
|
|
print ajax_constantonoff('INVENTORY_USE_MIN_PA_IF_NO_LAST_PA');
|
|
} else {
|
|
$arrval = array('0' => $langs->trans("No"), '1' => $langs->trans("Yes"));
|
|
print $form->selectarray("INVENTORY_USE_MIN_PA_IF_NO_LAST_PA", $arrval, $conf->global->INVENTORY_USE_MIN_PA_IF_NO_LAST_PA);
|
|
}
|
|
print '</td></tr>';
|
|
|
|
// Example with a yes / no select
|
|
print '<tr class="oddeven">';
|
|
print '<td>'.$langs->trans("INVENTORY_USE_INVENTORY_DATE_FROM_DATEMVT").'</td>';
|
|
print '<td align="center">';
|
|
if ($conf->use_javascript_ajax) {
|
|
print ajax_constantonoff('INVENTORY_USE_INVENTORY_DATE_FROM_DATEMVT');
|
|
} else {
|
|
$arrval = array('0' => $langs->trans("No"), '1' => $langs->trans("Yes"));
|
|
print $form->selectarray("INVENTORY_USE_INVENTORY_DATE_FROM_DATEMVT", $arrval, $conf->global->INVENTORY_USE_INVENTORY_DATE_FROM_DATEMVT);
|
|
}
|
|
print '</td></tr>';
|
|
|
|
print '</table>';
|
|
}
|
|
|
|
/* I keep the option/feature, but hidden to end users for the moment. If feature is used by module, no need to have users see it.
|
|
If not used by a module, I still need to understand in which case user may need this now we can set rule on product page.
|
|
if ($conf->global->PRODUIT_SOUSPRODUITS)
|
|
{
|
|
|
|
|
|
print '<tr class="oddeven">';
|
|
print '<td>'.$langs->trans("IndependantSubProductStock").'</td>';
|
|
print '<td class="right">';
|
|
print "<form method=\"post\" action=\"stock.php\">";
|
|
print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
|
|
print "<input type=\"hidden\" name=\"action\" value=\"INDEPENDANT_SUBPRODUCT_STOCK\">";
|
|
print $form->selectyesno("INDEPENDANT_SUBPRODUCT_STOCK",$conf->global->INDEPENDANT_SUBPRODUCT_STOCK,1);
|
|
print '<input type="submit" class="button" value="'.$langs->trans("Modify").'">';
|
|
print '</form>';
|
|
print "</td>\n";
|
|
print "</tr>\n";
|
|
}
|
|
*/
|
|
|
|
// End of page
|
|
llxFooter();
|
|
$db->close();
|