mirror of
https://github.com/YunoHost-Apps/dolibarr_ynh.git
synced 2024-09-03 18:35:53 +02:00
489 lines
No EOL
21 KiB
PHP
489 lines
No EOL
21 KiB
PHP
<?php
|
|
/* Copyright (C) 2013-2014 Olivier Geffroy <jeff@jeffinfo.com>
|
|
* Copyright (C) 2013-2016 Alexandre Spangaro <aspangaro@zendsi.com>
|
|
* Copyright (C) 2014 Florian Henry <florian.henry@open-concept.pro>
|
|
* Copyright (C) 2014 Juanjo Menent <jmenent@2byte.es>
|
|
* Copyright (C) 2015 Ari Elbaz (elarifr) <github@accedinfo.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/accountancy/admin/productaccount.php
|
|
* \ingroup Advanced accountancy
|
|
* \brief To define accounting account on product / service
|
|
*/
|
|
require '../../main.inc.php';
|
|
|
|
// Class
|
|
require_once DOL_DOCUMENT_ROOT . '/core/lib/accounting.lib.php';
|
|
require_once DOL_DOCUMENT_ROOT . '/core/lib/report.lib.php';
|
|
require_once DOL_DOCUMENT_ROOT . '/core/lib/admin.lib.php';
|
|
require_once DOL_DOCUMENT_ROOT . '/core/lib/date.lib.php';
|
|
require_once DOL_DOCUMENT_ROOT . '/core/class/html.formaccounting.class.php';
|
|
require_once DOL_DOCUMENT_ROOT . '/accountancy/class/accountingaccount.class.php';
|
|
require_once DOL_DOCUMENT_ROOT . '/product/class/product.class.php';
|
|
|
|
// Langs
|
|
$langs->load("companies");
|
|
$langs->load("compta");
|
|
$langs->load("main");
|
|
$langs->load("accountancy");
|
|
$langs->load("products");
|
|
|
|
// Security check
|
|
if (empty($conf->accounting->enabled)) {
|
|
accessforbidden();
|
|
}
|
|
if (! $user->rights->accounting->bind->write)
|
|
accessforbidden();
|
|
|
|
// search & action GETPOST
|
|
$action = GETPOST('action', 'alpha');
|
|
$codeventil_buy = GETPOST('codeventil_buy', 'array');
|
|
$codeventil_sell = GETPOST('codeventil_sell', 'array');
|
|
$chk_prod = GETPOST('chk_prod', 'array');
|
|
$account_number_buy = GETPOST('account_number_buy');
|
|
$account_number_sell = GETPOST('account_number_sell');
|
|
$changeaccount = GETPOST('changeaccount', 'array');
|
|
$changeaccount_buy = GETPOST('changeaccount_buy', 'array');
|
|
$changeaccount_sell = GETPOST('changeaccount_sell', 'array');
|
|
$search_ref = GETPOST('search_ref', 'alpha');
|
|
$search_label = GETPOST('search_label', 'alpha');
|
|
$search_desc = GETPOST('search_desc', 'alpha');
|
|
$search_current_account = GETPOST('search_current_account', 'alpha');
|
|
$search_current_account_valid = GETPOST('search_current_account_valid', 'alpha');
|
|
if ($search_current_account_valid == '') $search_current_account_valid='withoutvalidaccount';
|
|
|
|
$accounting_product_mode = GETPOST('accounting_product_mode', 'alpha');
|
|
$btn_changeaccount = GETPOST('changeaccount');
|
|
$btn_changetype = GETPOST('changetype');
|
|
|
|
$limit = GETPOST('limit','int')?GETPOST('limit','int'):(empty($conf->global->ACCOUNTING_LIMIT_LIST_VENTILATION)?$conf->liste_limit:$conf->global->ACCOUNTING_LIMIT_LIST_VENTILATION);
|
|
$sortfield = GETPOST("sortfield",'alpha');
|
|
$sortorder = GETPOST("sortorder",'alpha');
|
|
$page = GETPOST("page",'int');
|
|
if (empty($page) || $page == -1) { $page = 0; } // If $page is not defined, or '' or -1
|
|
$offset = $limit * $page;
|
|
$pageprev = $page - 1;
|
|
$pagenext = $page + 1;
|
|
if (! $sortfield) $sortfield="p.ref";
|
|
if (! $sortorder) $sortorder="ASC";
|
|
|
|
if (empty($action)) $action='list';
|
|
|
|
$arrayfields=array();
|
|
|
|
|
|
/*
|
|
* Actions
|
|
*/
|
|
|
|
if (GETPOST('cancel')) { $action='list'; $massaction=''; }
|
|
if (! GETPOST('confirmmassaction') && $massaction != 'presend' && $massaction != 'confirm_presend') { $massaction=''; }
|
|
|
|
$parameters=array();
|
|
$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');
|
|
|
|
// Purge search criteria
|
|
if (GETPOST('button_removefilter_x','alpha') || GETPOST('button_removefilter.x','alpha') || GETPOST('button_removefilter','alpha')) // All test are required to be compatible with all browsers
|
|
{
|
|
$search_ref = '';
|
|
$search_label = '';
|
|
$search_desc = '';
|
|
$search_current_account = '';
|
|
$search_current_account_valid = '-1';
|
|
}
|
|
|
|
// Sales or Purchase mode ?
|
|
if ($action == 'update') {
|
|
if (! empty($btn_changetype)) {
|
|
$error = 0;
|
|
|
|
$accounting_product_modes = array (
|
|
'ACCOUNTANCY_SELL',
|
|
'ACCOUNTANCY_BUY'
|
|
);
|
|
|
|
$accounting_product_mode = GETPOST('accounting_product_mode', 'alpha');
|
|
|
|
if (in_array($accounting_product_mode, $accounting_product_modes)) {
|
|
|
|
if (! dolibarr_set_const($db, 'ACCOUNTING_PRODUCT_MODE', $accounting_product_mode, 'chaine', 0, '', $conf->entity)) {
|
|
$error ++;
|
|
}
|
|
} else {
|
|
$error ++;
|
|
}
|
|
}
|
|
|
|
if (! empty($btn_changeaccount)) {
|
|
//$msg = '<div><span class="accountingprocessing">' . $langs->trans("Processing") . '...</span></div>';
|
|
if (! empty($chk_prod)) {
|
|
|
|
$accounting = new AccountingAccount($db);
|
|
|
|
//$msg .= '<div><span class="accountingprocessing">' . count($chk_prod) . ' ' . $langs->trans("SelectedLines") . '</span></div>';
|
|
|
|
$cpt = 0; $ok = 0; $ko = 0;
|
|
foreach ( $chk_prod as $productid ) {
|
|
|
|
$accounting_account_id = GETPOST('codeventil_' . $productid);
|
|
|
|
$result = $accounting->fetch($accounting_account_id, null, 1);
|
|
if ($result < 0) {
|
|
// setEventMessages(null, $accounting->errors, 'errors');
|
|
$msg .= '<div><font color="red">' . $langs->trans("ErrorDB") . ' : ' . $langs->trans("Product") . ' ' . $productid . ' ' . $langs->trans("NotVentilatedinAccount") . ' : id=' . $accounting_account_id . '<br/> <pre>' . $sql . '</pre></font></div>';
|
|
} else {
|
|
|
|
$sql = " UPDATE " . MAIN_DB_PREFIX . "product";
|
|
if ($accounting_product_mode == 'ACCOUNTANCY_BUY') {
|
|
$sql .= " SET accountancy_code_buy = " . $accounting->account_number;
|
|
}
|
|
if ($accounting_product_mode == 'ACCOUNTANCY_SELL') {
|
|
$sql .= " SET accountancy_code_sell = " . $accounting->account_number;
|
|
}
|
|
$sql .= " WHERE rowid = " . $productid;
|
|
|
|
dol_syslog("/accountancy/admin/productaccount.php sql=" . $sql, LOG_DEBUG);
|
|
if ($db->query($sql)) {
|
|
$ok++;
|
|
//$msg .= '<div><font color="green">' . $langs->trans("Product") . ' ' . $productid . ' - ' . $langs->trans("VentilatedinAccount") . ' : ' . length_accountg($accounting->account_number) . '</font></div>';
|
|
} else {
|
|
$ko++;
|
|
//$msg .= '<div><font color="red">' . $langs->trans("ErrorDB") . ' : ' . $langs->trans("Product") . ' ' . $productid . ' ' . $langs->trans("NotVentilatedinAccount") . ' : ' . length_accountg($accounting->account_number) . '<br/> <pre>' . $sql . '</pre></font></div>';
|
|
}
|
|
}
|
|
|
|
$cpt ++;
|
|
}
|
|
} else {
|
|
//$msg .= '<div><span class="accountingprocessing">' . $langs->trans("AnyLineVentilate") . '</span></div>';
|
|
}
|
|
if ($ko) setEventMessages($langs->trans("XLineFailedToBeBinded", $ko), null, 'errors');
|
|
if ($ok) setEventMessages($langs->trans("XLineSuccessfullyBinded", $ok), null, 'mesgs');
|
|
//$msg .= '<div><span class="accountingprocessing">' . $langs->trans("EndProcessing") . '</span></div>';
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
* View
|
|
*/
|
|
|
|
$form = new FormAccounting($db);
|
|
|
|
// Defaut AccountingAccount RowId Product / Service
|
|
// at this time ACCOUNTING_SERVICE_SOLD_ACCOUNT & ACCOUNTING_PRODUCT_SOLD_ACCOUNT are account number not accountingacount rowid
|
|
// so we need to get those default value rowid first
|
|
$accounting = new AccountingAccount($db);
|
|
// TODO: we should need to check if result is a really exist accountaccount rowid.....
|
|
$aarowid_servbuy = $accounting->fetch('', $conf->global->ACCOUNTING_SERVICE_BUY_ACCOUNT, 1);
|
|
$aarowid_prodbuy = $accounting->fetch('', $conf->global->ACCOUNTING_PRODUCT_BUY_ACCOUNT, 1);
|
|
$aarowid_servsell = $accounting->fetch('', $conf->global->ACCOUNTING_SERVICE_SOLD_ACCOUNT, 1);
|
|
$aarowid_prodsell = $accounting->fetch('', $conf->global->ACCOUNTING_PRODUCT_SOLD_ACCOUNT, 1);
|
|
|
|
$aacompta_servbuy = (! empty($conf->global->ACCOUNTING_SERVICE_BUY_ACCOUNT) ? $conf->global->ACCOUNTING_SERVICE_BUY_ACCOUNT : $langs->trans("CodeNotDef"));
|
|
$aacompta_prodbuy = (! empty($conf->global->ACCOUNTING_PRODUCT_BUY_ACCOUNT) ? $conf->global->ACCOUNTING_PRODUCT_BUY_ACCOUNT : $langs->trans("CodeNotDef"));
|
|
$aacompta_servsell = (! empty($conf->global->ACCOUNTING_SERVICE_SOLD_ACCOUNT) ? $conf->global->ACCOUNTING_SERVICE_SOLD_ACCOUNT : $langs->trans("CodeNotDef"));
|
|
$aacompta_prodsell = (! empty($conf->global->ACCOUNTING_PRODUCT_SOLD_ACCOUNT) ? $conf->global->ACCOUNTING_PRODUCT_SOLD_ACCOUNT : $langs->trans("CodeNotDef"));
|
|
|
|
llxHeader('', $langs->trans("ProductsBinding"));
|
|
|
|
$pcgverid = $conf->global->CHARTOFACCOUNTS;
|
|
$pcgvercode = dol_getIdFromCode($db, $pcgverid, 'accounting_system', 'rowid', 'pcg_version');
|
|
if (empty($pcgvercode)) $pcgvercode=$pcgverid;
|
|
|
|
$sql = "SELECT p.rowid, p.ref, p.label, p.description, p.tosell, p.tobuy, p.accountancy_code_sell, p.accountancy_code_buy, p.tms, p.fk_product_type as product_type,";
|
|
$sql.= " aa.rowid as aaid";
|
|
$sql.= " FROM " . MAIN_DB_PREFIX . "product as p";
|
|
$sql.= " LEFT JOIN ".MAIN_DB_PREFIX."accounting_account as aa ON";
|
|
if ($accounting_product_mode == 'ACCOUNTANCY_BUY') {
|
|
$sql.=" p.accountancy_code_buy = aa.account_number AND aa.fk_pcg_version = '" . $pcgvercode . "'";
|
|
}
|
|
else
|
|
{
|
|
$sql.=" p.accountancy_code_sell = aa.account_number AND aa.fk_pcg_version = '" . $pcgvercode . "'";
|
|
}
|
|
$sql.= ' WHERE p.entity IN ('.getEntity('product').')';
|
|
if ($accounting_product_mode == 'ACCOUNTANCY_BUY') {
|
|
if (strlen(trim($search_current_account))) {
|
|
$sql .= natural_search("p.accountancy_code_buy",$search_current_account);
|
|
}
|
|
} else {
|
|
if (strlen(trim($search_current_account))) {
|
|
$sql .= natural_search("p.accountancy_code_sell",$search_current_account);
|
|
}
|
|
}
|
|
if ($search_current_account_valid == 'withoutvalidaccount')
|
|
{
|
|
$sql .= " AND aa.account_number IS NULL";
|
|
}
|
|
if ($search_current_account_valid == 'withvalidaccount')
|
|
{
|
|
$sql .= " AND aa.account_number IS NOT NULL";
|
|
}
|
|
// Add search filter like
|
|
if (strlen(trim($search_ref))) {
|
|
$sql .= natural_search("p.ref",$search_ref);
|
|
}
|
|
if (strlen(trim($search_label))) {
|
|
$sql .= natural_search("p.label",$search_label);
|
|
}
|
|
if (strlen(trim($search_desc))) {
|
|
$sql .= natural_search("p.description",$search_desc);
|
|
}
|
|
$sql .= $db->order($sortfield, $sortorder);
|
|
|
|
$nbtotalofrecords = '';
|
|
if (empty($conf->global->MAIN_DISABLE_FULL_SCANLIST))
|
|
{
|
|
$result = $db->query($sql);
|
|
$nbtotalofrecords = $db->num_rows($result);
|
|
}
|
|
$sql .= $db->plimit($limit + 1, $offset);
|
|
|
|
dol_syslog("/accountancy/admin/productaccount.php:: sql=" . $sql, LOG_DEBUG);
|
|
$result = $db->query($sql);
|
|
if ($result)
|
|
{
|
|
$num = $db->num_rows($result);
|
|
$i = 0;
|
|
|
|
$param='';
|
|
if (! empty($contextpage) && $contextpage != $_SERVER["PHP_SELF"]) $param.='&contextpage='.$contextpage;
|
|
if ($limit > 0 && $limit != $conf->liste_limit) $param.='&limit='.$limit;
|
|
if ($search_ref > 0) $param.="&search_desc=".urlencode($search_ref);
|
|
if ($search_label > 0) $param.="&search_desc=".urlencode($search_label);
|
|
if ($search_desc > 0) $param.="&search_desc=".urlencode($search_desc);
|
|
if ($search_current_account > 0) $param.="&search_current_account=".urlencode($search_current_account);
|
|
if ($search_current_account_valid && $search_current_account_valid != '-1') $param.="&search_current_account_valid=".urlencode($search_current_account_valid);
|
|
|
|
print '<form action="' . $_SERVER["PHP_SELF"] . '" method="post">';
|
|
if ($optioncss != '') print '<input type="hidden" name="optioncss" value="'.$optioncss.'">';
|
|
print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
|
|
print '<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
|
|
print '<input type="hidden" name="action" value="update">';
|
|
print '<input type="hidden" name="sortfield" value="'.$sortfield.'">';
|
|
print '<input type="hidden" name="sortorder" value="'.$sortorder.'">';
|
|
print '<input type="hidden" name="page" value="'.$page.'">';
|
|
|
|
print load_fiche_titre($langs->trans("ProductsBinding"), '', 'title_accountancy');
|
|
print '<br>';
|
|
|
|
print $langs->trans("InitAccountancyDesc") . '<br>';
|
|
print '<br>';
|
|
|
|
// Select mode
|
|
print '<table class="noborder" width="100%">';
|
|
print '<tr class="liste_titre">';
|
|
print '<td>' . $langs->trans('Options') . '</td><td>' . $langs->trans('Description') . '</td>';
|
|
print "</tr>\n";
|
|
print '<tr ' . $bc[false] . '><td class="titlefield"><input type="radio" name="accounting_product_mode" value="ACCOUNTANCY_SELL"' . ($accounting_product_mode != 'ACCOUNTANCY_BUY' ? ' checked' : '') . '> ' . $langs->trans('OptionModeProductSell') . '</td>';
|
|
print '<td>'.$langs->trans('OptionModeProductSellDesc');
|
|
print "</td></tr>\n";
|
|
print '<tr ' . $bc[true] . '><td class="titlefield"><input type="radio" name="accounting_product_mode" value="ACCOUNTANCY_BUY"' . ($accounting_product_mode == 'ACCOUNTANCY_BUY' ? ' checked' : '') . '> ' . $langs->trans('OptionModeProductBuy') . '</td>';
|
|
print '<td>'.$langs->trans('OptionModeProductBuyDesc')."</td></tr>\n";
|
|
print "</table>\n";
|
|
|
|
print '<div align="center"><input type="submit" class="button" value="' . $langs->trans('Refresh') . '" name="changetype"></div>';
|
|
|
|
print "<br>\n";
|
|
|
|
|
|
// Filter on categories
|
|
$moreforfilter='';
|
|
$varpage=empty($contextpage)?$_SERVER["PHP_SELF"]:$contextpage;
|
|
$selectedfields=$form->multiSelectArrayWithCheckbox('selectedfields', $arrayfields, $varpage); // This also change content of $arrayfields
|
|
|
|
$texte=$langs->trans("ListOfProductsServices");
|
|
print_barre_liste($texte, $page, $_SERVER["PHP_SELF"], $param, $sortfield, $sortorder, '', $num, $nbtotalofrecords, '', 0, '', '', $limit);
|
|
|
|
print '<table class="liste '.($moreforfilter?"listwithfilterbefore":"").'">';
|
|
|
|
print '<tr class="liste_titre_filter">';
|
|
print '<td class="liste_titre"><input type="text" class="flat" size="8" name="search_ref" value="' . dol_escape_htmltag($search_ref) . '"></td>';
|
|
print '<td class="liste_titre"><input type="text" class="flat" size="10" name="search_label" value="' . dol_escape_htmltag($search_label) . '"></td>';
|
|
if (! empty($conf->global->ACCOUNTANCY_SHOW_PROD_DESC)) print '<td class="liste_titre"><input type="text" class="flat" size="20" name="search_desc" value="' . dol_escape_htmltag($search_desc) . '"></td>';
|
|
// On sell
|
|
print '<td class="liste_titre"></td>';
|
|
// On buy
|
|
print '<td class="liste_titre"></td>';
|
|
// Current account
|
|
print '<td class="liste_titre">';
|
|
print '<input type="text" class="flat" size="6" name="search_current_account" value="' . dol_escape_htmltag($search_current_account) . '">';
|
|
$listofvals=array('withoutvalidaccount'=>$langs->trans("WithoutValidAccount"), 'withvalidaccount'=>$langs->trans("WithValidAccount"));
|
|
print ' '.$langs->trans("or").' '.$form->selectarray('search_current_account_valid', $listofvals, $search_current_account_valid, 1);
|
|
print '</td>';
|
|
print '<td class="liste_titre"> </td>';
|
|
print '<td align="center" class="liste_titre">';
|
|
$searchpicto=$form->showFilterButtons();
|
|
print $searchpicto;
|
|
print '</td>';
|
|
print '</tr>';
|
|
|
|
print '<tr class="liste_titre">';
|
|
print_liste_field_titre("Ref", $_SERVER["PHP_SELF"], "p.ref", "", $param, '', $sortfield, $sortorder);
|
|
print_liste_field_titre("Label", $_SERVER["PHP_SELF"], "p.label", "", $param, '', $sortfield, $sortorder);
|
|
if (! empty($conf->global->ACCOUNTANCY_SHOW_PROD_DESC)) print_liste_field_titre("Description", $_SERVER["PHP_SELF"], "p.description", "", $param, '', $sortfield, $sortorder);
|
|
print_liste_field_titre("OnSell", $_SERVER["PHP_SELF"], "p.tosell", "", $param, 'align="center"', $sortfield, $sortorder);
|
|
print_liste_field_titre("OnBuy", $_SERVER["PHP_SELF"], "p.tobuy", "", $param, 'align="center"', $sortfield, $sortorder);
|
|
if ($accounting_product_mode == 'ACCOUNTANCY_BUY') {
|
|
$fieldtosortaccount="p.accountancy_code_buy";
|
|
}
|
|
else $fieldtosortaccount="p.accountancy_code_sell";
|
|
print_liste_field_titre("CurrentDedicatedAccountingAccount", $_SERVER["PHP_SELF"], $fieldtosortaccount, "", $param, '', $sortfield, $sortorder);
|
|
print_liste_field_titre("AssignDedicatedAccountingAccount");
|
|
$clickpitco=$form->showCheckAddButtons('checkforselect', 1);
|
|
print_liste_field_titre($clickpitco, '', '', '', '', 'align="center"');
|
|
print '</tr>';
|
|
|
|
$product_static = new Product($db);
|
|
|
|
$var = true;
|
|
$i=0;
|
|
while ($i < min($num,$limit))
|
|
{
|
|
$obj = $db->fetch_object($result);
|
|
|
|
// Ref produit as link
|
|
$product_static->ref = $obj->ref;
|
|
$product_static->id = $obj->rowid;
|
|
$product_static->type = $obj->product_type;
|
|
$product_static->label = $obj->label;
|
|
$product_static->description = $obj->description;
|
|
$product_static->status = $obj->tosell;
|
|
$product_static->status_buy = $obj->tobuy;
|
|
|
|
if ($obj->product_type == 0) {
|
|
$compta_prodsell = (! empty($conf->global->ACCOUNTING_PRODUCT_SOLD_ACCOUNT) ? $conf->global->ACCOUNTING_PRODUCT_SOLD_ACCOUNT : $langs->trans("CodeNotDef"));
|
|
$compta_prodsell_id = $aarowid_prodsell;
|
|
} else {
|
|
$compta_prodsell = (! empty($conf->global->ACCOUNTING_SERVICE_SOLD_ACCOUNT) ? $conf->global->ACCOUNTING_SERVICE_SOLD_ACCOUNT : $langs->trans("CodeNotDef"));
|
|
$compta_prodsell_id = $aarowid_servsell;
|
|
}
|
|
|
|
if ($obj->product_type == 0) {
|
|
$compta_prodbuy = (! empty($conf->global->ACCOUNTING_PRODUCT_BUY_ACCOUNT) ? $conf->global->ACCOUNTING_PRODUCT_BUY_ACCOUNT : $langs->trans("CodeNotDef"));
|
|
$compta_prodbuy_id = $aarowid_prodbuy;
|
|
} else {
|
|
$compta_prodbuy = (! empty($conf->global->ACCOUNTING_SERVICE_BUY_ACCOUNT) ? $conf->global->ACCOUNTING_SERVICE_BUY_ACCOUNT : $langs->trans("CodeNotDef"));
|
|
$compta_prodbuy_id = $aarowid_servbuy;
|
|
}
|
|
|
|
print '<tr class="oddeven">';
|
|
|
|
print '<td>';
|
|
print $product_static->getNomUrl(1);
|
|
print '</td>';
|
|
|
|
print '<td align="left">'.$obj->label.'</td>';
|
|
|
|
if (! empty($conf->global->ACCOUNTANCY_SHOW_PROD_DESC))
|
|
{
|
|
// TODO ADJUST DESCRIPTION SIZE
|
|
// print '<td align="left">' . $obj->description . '</td>';
|
|
// TODO: we shoul set a user defined value to adjust user square / wide screen size
|
|
$trunclengh = empty($conf->global->ACCOUNTING_LENGTH_DESCRIPTION) ? 32 : $conf->global->ACCOUNTING_LENGTH_DESCRIPTION;
|
|
print '<td style="' . $code_sell_p_l_differ . '">' . nl2br(dol_trunc($obj->description, $trunclengh)) . '</td>';
|
|
}
|
|
|
|
print '<td align="center">'.$product_static->getLibStatut(3, 0).'</td>';
|
|
|
|
print '<td align="center">'.$product_static->getLibStatut(3, 1).'</td>';
|
|
|
|
// Current accounting account
|
|
print '<td align="left">';
|
|
if ($accounting_product_mode == 'ACCOUNTANCY_BUY') {
|
|
print length_accountg($obj->accountancy_code_buy);
|
|
if ($obj->accountancy_code_buy && empty($obj->aaid)) print ' '.img_warning($langs->trans("ValueNotIntoChartOfAccount"));
|
|
}
|
|
else
|
|
{
|
|
print length_accountg($obj->accountancy_code_sell);
|
|
if ($obj->accountancy_code_sell && empty($obj->aaid)) print ' '.img_warning($langs->trans("ValueNotIntoChartOfAccount"));
|
|
}
|
|
print '</td>';
|
|
|
|
// Dedicated account
|
|
$defaultvalue='';
|
|
if ($accounting_product_mode == 'ACCOUNTANCY_BUY') {
|
|
// Accounting account buy
|
|
print '<td align="left">';
|
|
//$defaultvalue=GETPOST('codeventil_' . $product_static->id,'alpha'); This is id and we need a code
|
|
if (empty($defaultvalue)) $defaultvalue=$compta_prodbuy;
|
|
$codesell=length_accountg($obj->accountancy_code_buy);
|
|
if (! empty($obj->aaid)) $defaultvalue = ''; // Do not suggest default new value is code is already valid
|
|
print $form->select_account($defaultvalue, 'codeventil_' . $product_static->id, 1, array(), 1);
|
|
print '</td>';
|
|
} else {
|
|
// Accounting account sell
|
|
print '<td align="left">';
|
|
//$defaultvalue=GETPOST('codeventil_' . $product_static->id,'alpha'); This is id and we need a code
|
|
if (empty($defaultvalue)) $defaultvalue=$compta_prodsell;
|
|
$codesell=length_accountg($obj->accountancy_code_sell);
|
|
//var_dump($defaultvalue.' - '.$codesell.' - '.$compta_prodsell);
|
|
if (! empty($obj->aaid)) $defaultvalue = ''; // Do not suggest default new value is code is already valid
|
|
print $form->select_account($defaultvalue, 'codeventil_' . $product_static->id, 1, array(), 1);
|
|
print '</td>';
|
|
}
|
|
|
|
// Checkbox select
|
|
print '<td align="center">';
|
|
print '<input type="checkbox" class="checkforselect" name="chk_prod[]" value="' . $obj->rowid . '"/></td>';
|
|
print "</tr>";
|
|
$i ++;
|
|
}
|
|
print '</table>';
|
|
|
|
// Example : Adding jquery code
|
|
print '<script type="text/javascript" language="javascript">
|
|
jQuery(document).ready(function() {
|
|
function init_savebutton()
|
|
{
|
|
console.log("We check if at least one line is checked")
|
|
|
|
atleastoneselected=0;
|
|
jQuery(".checkforselect").each(function( index ) {
|
|
/* console.log( index + ": " + $( this ).text() ); */
|
|
if ($(this).is(\':checked\')) atleastoneselected++;
|
|
});
|
|
|
|
if (atleastoneselected) jQuery("#changeaccount").removeAttr(\'disabled\');
|
|
else jQuery("#changeaccount").attr(\'disabled\',\'disabled\');
|
|
if (atleastoneselected) jQuery("#changeaccount").attr(\'class\',\'butAction\');
|
|
else jQuery("#changeaccount").attr(\'class\',\'butActionRefused\');
|
|
}
|
|
jQuery(".checkforselect, #checkallactions").click(function() {
|
|
init_savebutton();
|
|
});
|
|
|
|
init_savebutton();
|
|
});
|
|
</script>';
|
|
|
|
|
|
print '<br><div align="center"><input type="submit" class="butAction" id="changeaccount" name="changeaccount" value="' . $langs->trans("Save") . '"></div>';
|
|
|
|
print '</form>';
|
|
|
|
$db->free($result);
|
|
} else {
|
|
dol_print_error($db);
|
|
}
|
|
|
|
llxFooter();
|
|
$db->close(); |