Merge pull request #24381 from frederic34/expedition_tooltip

fix shipping ajax tooltip
This commit is contained in:
Laurent Destailleur 2023-03-31 01:26:38 +02:00 committed by GitHub
commit b7b85d185f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 20 additions and 3 deletions

View File

@ -79,7 +79,7 @@ top_httphead();
$html = '';
if (is_object($object)) {
if ($object->id > 0) {
if ($object->id > 0 || !empty($object->ref)) {
$html = $object->getTooltipContent($params);
} elseif ($res == 0) {
$html = $langs->trans('Deleted');

View File

@ -11285,6 +11285,11 @@ function getElementProperties($element_type)
$subelement = 'commande';
} elseif ($element_type == 'propal') {
$classpath = 'comm/propal/class';
} elseif ($element_type == 'shipping') {
$classpath = 'expedition/class';
$classfile = 'expedition';
$classname = 'Expedition';
$module = 'expedition';
} elseif ($element_type == 'supplier_proposal') {
$classpath = 'supplier_proposal/class';
$module = 'supplier_proposal';
@ -11323,6 +11328,10 @@ function getElementProperties($element_type)
$classpath = 'comm/propal/class';
$module = 'propal';
$subelement = 'propaleligne';
} elseif ($element_type == 'opensurvey_sondage') {
$classpath = 'opensurvey/class';
$module = 'opensurvey';
$subelement = 'opensurveysondage';
} elseif ($element_type == 'order_supplier') {
$classpath = 'fourn/class';
$module = 'fournisseur';
@ -11340,7 +11349,7 @@ function getElementProperties($element_type)
} elseif ($element_type == "service") {
$classpath = 'product/class';
$subelement = 'product';
} elseif ($objecttype == 'salary') {
} elseif ($element_type == 'salary') {
$classpath = 'salaries/class';
$module = 'salaries';
}

View File

@ -1834,7 +1834,8 @@ class Expedition extends CommonObject
{
global $conf, $langs;
$langs->load('shipping');
$langs->load('sendings');
$nofetch = !empty($params['nofetch']);
$datas = array();
@ -1844,6 +1845,13 @@ class Expedition extends CommonObject
}
$datas['ref'] = '<br><b>'.$langs->trans('Ref').':</b> '.$this->ref;
$datas['refcustomer'] = '<br><b>'.$langs->trans('RefCustomer').':</b> '.($this->ref_customer ? $this->ref_customer : $this->ref_client);
if (!$nofetch) {
$langs->load('companies');
if (empty($this->thirdparty)) {
$this->fetch_thirdparty();
}
$datas['customer'] = '<br><b>'.$langs->trans('Customer').':</b> '.$this->thirdparty->getNomUrl(1, '', 0, 1);
}
return $datas;
}