Merge pull request #13818 from OPEN-DSI/fix_extrafields_bank_list

FIX: show value of the extrafields in the bank list
This commit is contained in:
Laurent Destailleur 2020-05-05 15:15:14 +02:00 committed by GitHub
commit a86ca322af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -556,6 +556,12 @@ foreach ($accounts as $key=>$type)
}
// Extra fields
if (is_array($objecttmp->array_options)) {
$obj = new stdClass();
foreach ($objecttmp->array_options as $k => $v) {
$obj->$k = $v;
}
}
include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_print_fields.tpl.php';
// Fields from hook
$parameters = array('arrayfields'=>$arrayfields);