_get_column_alias($layout_def); $key = strtoupper($key); } ////////////////////////////////////////////////////////////////////////// // Current ProductTemplate record (in current subpanel row) $module = $layout_def['module']; $record = $layout_def['fields']['ID']; //id contract $contractName = $layout_def['fields']['NAME']; //name contract $parent_id=$_REQUEST['record']; //id account-a //Here you define your logic, my quary to the database and the return from this function will be displayed in subpanel //So for example you can do $db = DBManagerFactory::getInstance(); $query = "SELECT * FROM contracts WHERE id = '$record' and account_id = '$parent_id'"; $result = $db->query($query, true,"greska"); $result = $db->fetchByAssoc($result); $quantity = $result['broj_slucajeva']; return $quantity; //value of this cariable will be shown in subpanel } } ?>