Compare commits
3 Commits
461cf05e89
...
996e9027fa
Author | SHA1 | Date |
---|---|---|
valentina | 996e9027fa | |
valentina | a9a2acffcd | |
valentina | 4b12da8a7b |
|
@ -389,7 +389,7 @@ switch ($resource) {
|
|||
$user = Auth::user();
|
||||
$id_azienda = setting('Azienda predefinita');
|
||||
|
||||
$query = "SELECT * FROM (SELECT '0' AS id, 'Sede legale' AS `nomesede`, CONCAT_WS(' - ', \"".tr('Sede legale')."\" , (SELECT CONCAT (`citta`, IF(`indirizzo`!='',CONCAT(' (', `indirizzo`, ')'), ''),' (', `ragione_sociale`,')') FROM `an_anagrafiche` |where|)) AS descrizione UNION SELECT `id`, `nomesede`, CONCAT_WS(' - ', `nomesede`, CONCAT(`citta`, IF(`indirizzo`!='',CONCAT(' (', `indirizzo`, ')'), '')) ) FROM `an_sedi`) AS tab |filter| ORDER BY descrizione";
|
||||
$query = "SELECT * FROM (SELECT '0' AS id, 'Sede legale' AS `nomesede`, CONCAT_WS(' - ', \"".tr('Sede legale')."\" , (SELECT CONCAT (`citta`, IF(`indirizzo`!='',CONCAT(' (', `indirizzo`, ')'), ''),' (', `ragione_sociale`,')') FROM `an_anagrafiche` |where|)) AS descrizione UNION SELECT `id`, `nomesede`, CONCAT_WS(' - ', `nomesede`, CONCAT(`citta`, IF(`indirizzo`!='',CONCAT(' (', `indirizzo`, ')'), '')) ) FROM `an_sedi` |where|) AS tab |filter| ORDER BY descrizione";
|
||||
|
||||
$where[] = '`idanagrafica`='.prepare($id_azienda);
|
||||
|
||||
|
|
|
@ -114,7 +114,7 @@ echo '
|
|||
|
||||
// Cliente
|
||||
echo '
|
||||
<h4><b>'.Modules::link('Anagrafiche', $anagrafica->idaangrafica, $anagrafica->ragione_sociale, $anagrafica->ragione_sociale).'</b></h4>
|
||||
<h4><b>'.Modules::link('Anagrafiche', $anagrafica->idanagrafica, $anagrafica->ragione_sociale, $anagrafica->ragione_sociale).'</b></h4>
|
||||
|
||||
<p>
|
||||
'.($sede['nomesede'] ? $sede['nomesede'].'<br>' : '').'
|
||||
|
|
|
@ -129,7 +129,7 @@ class ButtonManager implements ManagerInterface
|
|||
$query->orderBy('title');
|
||||
}])->get()->toArray();
|
||||
} elseif ($options['type'] == 'sms') {
|
||||
$results = TemplateSMS::where('id_module', $options['id_module'])->orderBy('title')->get()->toArray();
|
||||
$results = TemplateSMS::where('id_module', $options['id_module'])->orderBy('name')->get()->toArray();
|
||||
}
|
||||
|
||||
return $results;
|
||||
|
|
Loading…
Reference in New Issue