Compare commits

...

3 Commits

Author SHA1 Message Date
valentina dead0b1db6 Fix minore 2024-09-25 12:02:08 +02:00
valentina e768709228 Fix minore duplicazione articolo 2024-09-25 10:15:26 +02:00
valentina 2db5054691 Fix minore stampa libro giornale 2024-09-25 09:45:50 +02:00
3 changed files with 4 additions and 3 deletions

View File

@ -266,6 +266,7 @@ switch (post('op')) {
$new->immagine = $nome_immagine;
$new->save();
$new->setTranslation('title', $articolo->getTranslation('title'));
$id_record = $new->id;
// Copia degli allegati

View File

@ -197,7 +197,7 @@ if (!empty($newsletters[0])) {
foreach ($newsletters as $newsletter) {
echo '
<li>'.Modules::link('Newsletter', $newsletter->id, $newsletter->getTranslation('title'), null, '').'</li>';
<li>'.Modules::link('Newsletter', $newsletter->id, $newsletter->name, null, '').'</li>';
}
echo '

View File

@ -22,8 +22,8 @@ include_once __DIR__.'/../../core.php';
echo '
<tr>
<th colspan="4" class="text-right">TOTALE GENERALE</th>
<th class="text-right">'.moneyFormat(abs($totale_dare), 2).'</th>
<th class="text-right">'.moneyFormat(abs($totale_avere), 2).'</th>
<th class="text-right">'.moneyFormat(abs($totale_dare?:0), 2).'</th>
<th class="text-right">'.moneyFormat(abs($totale_avere?:0), 2).'</th>
</tr>
</tbody>
</table>';