Compare commits
3 Commits
721503f7a5
...
dead0b1db6
Author | SHA1 | Date |
---|---|---|
valentina | dead0b1db6 | |
valentina | e768709228 | |
valentina | 2db5054691 |
|
@ -266,6 +266,7 @@ switch (post('op')) {
|
||||||
$new->immagine = $nome_immagine;
|
$new->immagine = $nome_immagine;
|
||||||
$new->save();
|
$new->save();
|
||||||
|
|
||||||
|
$new->setTranslation('title', $articolo->getTranslation('title'));
|
||||||
$id_record = $new->id;
|
$id_record = $new->id;
|
||||||
|
|
||||||
// Copia degli allegati
|
// Copia degli allegati
|
||||||
|
|
|
@ -197,7 +197,7 @@ if (!empty($newsletters[0])) {
|
||||||
|
|
||||||
foreach ($newsletters as $newsletter) {
|
foreach ($newsletters as $newsletter) {
|
||||||
echo '
|
echo '
|
||||||
<li>'.Modules::link('Newsletter', $newsletter->id, $newsletter->getTranslation('title'), null, '').'</li>';
|
<li>'.Modules::link('Newsletter', $newsletter->id, $newsletter->name, null, '').'</li>';
|
||||||
}
|
}
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
|
|
|
@ -22,8 +22,8 @@ include_once __DIR__.'/../../core.php';
|
||||||
echo '
|
echo '
|
||||||
<tr>
|
<tr>
|
||||||
<th colspan="4" class="text-right">TOTALE GENERALE</th>
|
<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_dare?:0), 2).'</th>
|
||||||
<th class="text-right">'.moneyFormat(abs($totale_avere), 2).'</th>
|
<th class="text-right">'.moneyFormat(abs($totale_avere?:0), 2).'</th>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>';
|
</table>';
|
||||||
|
|
Loading…
Reference in New Issue