Merge pull request #24562 from ibuiv/patch-2

FIX ref_client on Project Overview for propale
This commit is contained in:
Laurent Destailleur 2023-04-26 11:41:34 +02:00 committed by GitHub
commit e2a622b83a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1259,6 +1259,10 @@ foreach ($listofreferent as $key => $value) {
if (!empty($element->ref_customer)) {
print ' - '.$element->ref_customer;
}
// Compatibility propale
if (empty($element->ref_customer) && !empty($element->ref_client)) {
print ' - '.$element->ref_client;
}
}
print "</td>\n";