Merge branch '15.0' of git@github.com:Dolibarr/dolibarr.git into 16.0
This commit is contained in:
commit
98e61dc40d
@ -649,6 +649,7 @@ if ($resql) {
|
|||||||
|
|
||||||
// Accounting account
|
// Accounting account
|
||||||
if ($arrayfields['account']['checked']) {
|
if ($arrayfields['account']['checked']) {
|
||||||
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/accounting.lib.php';
|
||||||
$accountingaccount->fetch('', $obj->accountancy_code, 1);
|
$accountingaccount->fetch('', $obj->accountancy_code, 1);
|
||||||
|
|
||||||
print '<td class="tdoverflowmax150" title="'.dol_escape_htmltag($obj->accountancy_code.' '.$accountingaccount->label).'">'.$accountingaccount->getNomUrl(0, 1, 1, '', 1).'</td>';
|
print '<td class="tdoverflowmax150" title="'.dol_escape_htmltag($obj->accountancy_code.' '.$accountingaccount->label).'">'.$accountingaccount->getNomUrl(0, 1, 1, '', 1).'</td>';
|
||||||
|
|||||||
@ -2357,10 +2357,10 @@ function pdf_getLinkedObjects(&$object, $outputlangs)
|
|||||||
$outputlangs->load('orders');
|
$outputlangs->load('orders');
|
||||||
|
|
||||||
if (count($objects) > 1 && count($objects) <= (getDolGlobalInt("MAXREFONDOC") ? getDolGlobalInt("MAXREFONDOC") : 10)) {
|
if (count($objects) > 1 && count($objects) <= (getDolGlobalInt("MAXREFONDOC") ? getDolGlobalInt("MAXREFONDOC") : 10)) {
|
||||||
$object->note_public = dol_concatdesc($object->note_public, '<br>'.$outputlangs->transnoentities("RefOrder").' : <br>');
|
$object->note_public = dol_concatdesc($object->note_public, $outputlangs->transnoentities("RefOrder").' :');
|
||||||
foreach ($objects as $elementobject) {
|
foreach ($objects as $elementobject) {
|
||||||
$object->note_public = dol_concatdesc($object->note_public, $outputlangs->transnoentities($elementobject->ref).(!empty($elementobject->ref_client) ? ' ('.$elementobject->ref_client.')' : '').(!empty($elementobject->ref_supplier) ? ' ('.$elementobject->ref_supplier.')' : '').' ');
|
$object->note_public = dol_concatdesc($object->note_public, $outputlangs->transnoentities($elementobject->ref).(empty($elementobject->ref_client) ?'' : ' ('.$elementobject->ref_client.')').(empty($elementobject->ref_supplier) ? '' : ' ('.$elementobject->ref_supplier.')').' ');
|
||||||
$object->note_public = dol_concatdesc($object->note_public, $outputlangs->transnoentities("OrderDate").' : '.dol_print_date($elementobject->date, 'day', '', $outputlangs).'<br>');
|
$object->note_public = dol_concatdesc($object->note_public, $outputlangs->transnoentities("OrderDate").' : '.dol_print_date($elementobject->date, 'day', '', $outputlangs));
|
||||||
}
|
}
|
||||||
} elseif (count($objects) == 1) {
|
} elseif (count($objects) == 1) {
|
||||||
$elementobject = array_shift($objects);
|
$elementobject = array_shift($objects);
|
||||||
@ -2391,9 +2391,9 @@ function pdf_getLinkedObjects(&$object, $outputlangs)
|
|||||||
if (count($objects) > 1) {
|
if (count($objects) > 1) {
|
||||||
$order = null;
|
$order = null;
|
||||||
if (empty($object->linkedObjects['commande']) && $object->element != 'commande') {
|
if (empty($object->linkedObjects['commande']) && $object->element != 'commande') {
|
||||||
$object->note_public = dol_concatdesc($object->note_public, '<br>'.$outputlangs->transnoentities("RefOrder").' / '.$outputlangs->transnoentities("RefSending").' : <br>');
|
$object->note_public = dol_concatdesc($object->note_public, $outputlangs->transnoentities("RefOrder").' / '.$outputlangs->transnoentities("RefSending").' :');
|
||||||
} else {
|
} else {
|
||||||
$object->note_public = dol_concatdesc($object->note_public, '<br>'.$outputlangs->transnoentities("RefSending").' : <br>');
|
$object->note_public = dol_concatdesc($object->note_public, $outputlangs->transnoentities("RefSending").' :');
|
||||||
}
|
}
|
||||||
// We concat this record info into fields xxx_value. title is overwrote.
|
// We concat this record info into fields xxx_value. title is overwrote.
|
||||||
foreach ($objects as $elementobject) {
|
foreach ($objects as $elementobject) {
|
||||||
@ -2411,11 +2411,9 @@ function pdf_getLinkedObjects(&$object, $outputlangs)
|
|||||||
|
|
||||||
if (! is_object($order)) {
|
if (! is_object($order)) {
|
||||||
$object->note_public = dol_concatdesc($object->note_public, $outputlangs->transnoentities($elementobject->ref));
|
$object->note_public = dol_concatdesc($object->note_public, $outputlangs->transnoentities($elementobject->ref));
|
||||||
$object->note_public = dol_concatdesc($object->note_public, '<br>');
|
|
||||||
} else {
|
} else {
|
||||||
$object->note_public = dol_concatdesc($object->note_public, $outputlangs->convToOutputCharset($order->ref).($order->ref_client ? ' ('.$order->ref_client.')' : ''));
|
$object->note_public = dol_concatdesc($object->note_public, $outputlangs->convToOutputCharset($order->ref).($order->ref_client ? ' ('.$order->ref_client.')' : ''));
|
||||||
$object->note_public = dol_concatdesc($object->note_public, ' / '.$outputlangs->transnoentities($elementobject->ref));
|
$object->note_public = dol_concatdesc($object->note_public, ' / '.$outputlangs->transnoentities($elementobject->ref));
|
||||||
$object->note_public = dol_concatdesc($object->note_public, '<br>');
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} elseif (count($objects) == 1) {
|
} elseif (count($objects) == 1) {
|
||||||
|
|||||||
@ -419,7 +419,7 @@ if (! empty($conf->categorie->enabled))
|
|||||||
// If the user can view user other than himself
|
// If the user can view user other than himself
|
||||||
$moreforfilter .= '<div class="divsearchfield">';
|
$moreforfilter .= '<div class="divsearchfield">';
|
||||||
$moreforfilter .= '<div class="inline-block hideonsmartphone"></div>';
|
$moreforfilter .= '<div class="inline-block hideonsmartphone"></div>';
|
||||||
$includeonly = 'hierachyme';
|
$includeonly = 'hierarchyme';
|
||||||
if (empty($user->rights->user->user->lire)) {
|
if (empty($user->rights->user->user->lire)) {
|
||||||
$includeonly = array($user->id);
|
$includeonly = array($user->id);
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user