Order members alphabetically by the fields defining the name
This commit is contained in:
parent
cff7b57a41
commit
d258b21267
|
@ -292,7 +292,7 @@ $tpl->assign('date', $date->format('d/m/Y'));
|
|||
|
||||
|
||||
$tpl->assign(compact('liste', 'radio', 'step', 'designations', 'prix', 'from_user', 'identite', 'csrf_key', 'doc'));
|
||||
$tpl->assign('users', $db->getAssoc('SELECT id, '.$identite.' FROM users WHERE id_category != -2 NOT IN (SELECT id FROM users_categories WHERE hidden = 1);'));
|
||||
$tpl->assign('users', $db->getAssoc('SELECT id, '.$identite.' FROM users WHERE id_category != -2 NOT IN (SELECT id FROM users_categories WHERE hidden = 1) ORDER BY ' .$identite. ';'));
|
||||
$tpl->assign('clients', $db->getAssoc('SELECT id, nom FROM plugin_facturation_clients;'));
|
||||
$tpl->assign('require_number', $require_number);
|
||||
$tpl->assign('number_pattern', PATTERNS_LIST[$plugin->getConfig('pattern')]);
|
||||
|
|
|
@ -29,7 +29,7 @@ $tpl->assign('www_url', \Paheko\WWW_URL);
|
|||
$tpl->assign('f_obj', $facture);
|
||||
|
||||
|
||||
$identite = implode( '', \Paheko\Users\DynamicFields::getNameFields());
|
||||
$identite = implode(',', \Paheko\Users\DynamicFields::getNameFields());
|
||||
|
||||
$tpl->register_function('money_fac', function (array $params)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue