mirror of
https://github.com/devcode-it/openstamanager.git
synced 2024-12-29 01:00:00 +01:00
Fix minori
This commit is contained in:
parent
6bf644e45d
commit
6c6fb4fd24
@ -242,9 +242,13 @@ switch (post('op')) {
|
|||||||
echo json_encode(['id' => $id_record, 'text' => $anagrafica->ragione_sociale]);
|
echo json_encode(['id' => $id_record, 'text' => $anagrafica->ragione_sociale]);
|
||||||
}
|
}
|
||||||
|
|
||||||
$descrizioni_tipi = $anagrafica->tipi()->get()->pluck('name')->toArray();
|
$descrizioni_tipi = $anagrafica->tipi()->get();
|
||||||
|
foreach ($descrizioni_tipi as $tipo) {
|
||||||
|
$tipi[] = $tipo->getTranslation('name');
|
||||||
|
}
|
||||||
|
|
||||||
flash()->info(tr('Aggiunta nuova anagrafica di tipo _TYPE_', [
|
flash()->info(tr('Aggiunta nuova anagrafica di tipo _TYPE_', [
|
||||||
'_TYPE_' => '"'.implode(', ', $descrizioni_tipi).'"',
|
'_TYPE_' => '"'.implode(', ', $tipi).'"',
|
||||||
]));
|
]));
|
||||||
|
|
||||||
// Controllo che il Codice Fiscale non sia già presente
|
// Controllo che il Codice Fiscale non sia già presente
|
||||||
|
@ -64,7 +64,7 @@ foreach ($gruppi as $modulo => $hooks) {
|
|||||||
</td>
|
</td>
|
||||||
|
|
||||||
<td class="text-center">
|
<td class="text-center">
|
||||||
'.Translator::timestampToLocale($hook->processing_at).'
|
'.!empty($hook->processing_at) ? Translator::timestampToLocale($hook->processing_at) : ''.'
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
<td class="text-center">';
|
<td class="text-center">';
|
||||||
|
Loading…
Reference in New Issue
Block a user