Merge branch '16.0' of git@github.com:Dolibarr/dolibarr.git into 16.0
This commit is contained in:
commit
9e55377f0a
@ -1220,14 +1220,16 @@ if ($id > 0) {
|
|||||||
$sql .= natural_search("code_iso", $search_code);
|
$sql .= natural_search("code_iso", $search_code);
|
||||||
} elseif ($search_code != '' && $id == 28) {
|
} elseif ($search_code != '' && $id == 28) {
|
||||||
$sql .= natural_search("h.code", $search_code);
|
$sql .= natural_search("h.code", $search_code);
|
||||||
} elseif ($search_code != '' && $id == 32) {
|
} elseif ($search_code != '' && ($id == 7 || $id == 32)) {
|
||||||
$sql .= natural_search("a.code", $search_code);
|
$sql .= natural_search("a.code", $search_code);
|
||||||
} elseif ($search_code != '' && $id == 3) {
|
} elseif ($search_code != '' && $id == 3) {
|
||||||
$sql .= natural_search("r.code_region", $search_code);
|
$sql .= natural_search("r.code_region", $search_code);
|
||||||
} elseif ($search_code != '' && $id == 7) {
|
} elseif ($search_code != '' && ($id == 8 || $id == 10)) {
|
||||||
$sql .= natural_search("a.code", $search_code);
|
|
||||||
} elseif ($search_code != '' && $id == 10) {
|
|
||||||
$sql .= natural_search("t.code", $search_code);
|
$sql .= natural_search("t.code", $search_code);
|
||||||
|
} elseif ($search_code != '' && $id == 1) {
|
||||||
|
$sql .= natural_search("f.code", $search_code);
|
||||||
|
} elseif ($search_code != '' && $id == 2) {
|
||||||
|
$sql .= natural_search("d.code_departement", $search_code);
|
||||||
} elseif ($search_code != '' && $id != 9) {
|
} elseif ($search_code != '' && $id != 9) {
|
||||||
$sql .= natural_search("code", $search_code);
|
$sql .= natural_search("code", $search_code);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -468,6 +468,24 @@ class KnowledgeRecord extends CommonObject
|
|||||||
$this->error .= $this->db->lasterror();
|
$this->error .= $this->db->lasterror();
|
||||||
$errorflag = -1;
|
$errorflag = -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Delete all child tables
|
||||||
|
if (!$error) {
|
||||||
|
$elements = array('categorie_knowledgemanagement');
|
||||||
|
foreach ($elements as $table) {
|
||||||
|
if (!$error) {
|
||||||
|
$sql = "DELETE FROM ".MAIN_DB_PREFIX.$table;
|
||||||
|
$sql .= " WHERE fk_knowledgemanagement = ".(int) $this->id;
|
||||||
|
|
||||||
|
$result = $this->db->query($sql);
|
||||||
|
if (!$result) {
|
||||||
|
$error++;
|
||||||
|
$this->errors[] = $this->db->lasterror();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return $this->deleteCommon($user, $notrigger);
|
return $this->deleteCommon($user, $notrigger);
|
||||||
//return $this->deleteCommon($user, $notrigger, 1);
|
//return $this->deleteCommon($user, $notrigger, 1);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -16,7 +16,7 @@
|
|||||||
* Copyright (C) 2016-2022 Charlene Benke <charlene@patas-monkey.com>
|
* Copyright (C) 2016-2022 Charlene Benke <charlene@patas-monkey.com>
|
||||||
* Copyright (C) 2016 Meziane Sof <virtualsof@yahoo.fr>
|
* Copyright (C) 2016 Meziane Sof <virtualsof@yahoo.fr>
|
||||||
* Copyright (C) 2017 Josep Lluís Amador <joseplluis@lliuretic.cat>
|
* Copyright (C) 2017 Josep Lluís Amador <joseplluis@lliuretic.cat>
|
||||||
* Copyright (C) 2019-2021 Frédéric France <frederic.france@netlogic.fr>
|
* Copyright (C) 2019-2022 Frédéric France <frederic.france@netlogic.fr>
|
||||||
* Copyright (C) 2019-2020 Thibault FOUCART <support@ptibogxiv.net>
|
* Copyright (C) 2019-2020 Thibault FOUCART <support@ptibogxiv.net>
|
||||||
* Copyright (C) 2020 Pierre Ardoin <mapiolca@me.com>
|
* Copyright (C) 2020 Pierre Ardoin <mapiolca@me.com>
|
||||||
*
|
*
|
||||||
@ -1964,7 +1964,7 @@ if (is_object($objcanvas) && $objcanvas->displayCanvasExists($action)) {
|
|||||||
print '<tr><td class="tdtop">'.$langs->trans("Description").'</td><td>';
|
print '<tr><td class="tdtop">'.$langs->trans("Description").'</td><td>';
|
||||||
|
|
||||||
// We use dolibarr_details as type of DolEditor here, because we must not accept images as description is included into PDF and not accepted by TCPDF.
|
// We use dolibarr_details as type of DolEditor here, because we must not accept images as description is included into PDF and not accepted by TCPDF.
|
||||||
$doleditor = new DolEditor('desc', $object->description, '', 160, 'dolibarr_details', '', false, true, getDolGlobalInt('FCKEDITOR_ENABLE_PRODUCTDESC'), ROWS_4, '90%');
|
$doleditor = new DolEditor('desc', GETPOSTISSET('desc') ? GETPOST('desc', 'restricthtml') : $object->description, '', 160, 'dolibarr_details', '', false, true, getDolGlobalInt('FCKEDITOR_ENABLE_PRODUCTDESC'), ROWS_4, '90%');
|
||||||
$doleditor->Create();
|
$doleditor->Create();
|
||||||
|
|
||||||
print "</td></tr>";
|
print "</td></tr>";
|
||||||
@ -1974,7 +1974,7 @@ if (is_object($objcanvas) && $objcanvas->displayCanvasExists($action)) {
|
|||||||
if (empty($conf->global->PRODUCT_DISABLE_PUBLIC_URL)) {
|
if (empty($conf->global->PRODUCT_DISABLE_PUBLIC_URL)) {
|
||||||
print '<tr><td>'.$langs->trans("PublicUrl").'</td><td>';
|
print '<tr><td>'.$langs->trans("PublicUrl").'</td><td>';
|
||||||
print img_picto('', 'globe', 'class="pictofixedwidth"');
|
print img_picto('', 'globe', 'class="pictofixedwidth"');
|
||||||
print '<input type="text" name="url" class="quatrevingtpercent" value="'.$object->url.'">';
|
print '<input type="text" name="url" class="quatrevingtpercent" value="'.(GETPOSTISSET('url') ? GETPOST('url') : $object->url).'">';
|
||||||
print '</td></tr>';
|
print '</td></tr>';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -373,6 +373,7 @@ if ($ispaymentok) {
|
|||||||
}
|
}
|
||||||
if (empty($user->rights->adherent)) {
|
if (empty($user->rights->adherent)) {
|
||||||
$user->rights->adherent = new stdClass();
|
$user->rights->adherent = new stdClass();
|
||||||
|
$user->rights->adherent->cotisation = new stdClass();
|
||||||
}
|
}
|
||||||
$user->rights->societe->creer = 1;
|
$user->rights->societe->creer = 1;
|
||||||
$user->rights->facture->creer = 1;
|
$user->rights->facture->creer = 1;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user