openstamanager/templates/prima_nota/body.php

64 lines
1.6 KiB
PHP
Raw Normal View History

<?php
/*
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
* Copyright (C) DevCode s.n.c.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
include_once __DIR__.'/../../core.php';
echo '
<div class="row">
<div class="col-md-12 text-center">
<h3><b>'.tr('Prima nota').'</b></h3>
</div>
</div>';
echo '
<table class="table table-bordered table-striped">
<tr>
<th>#</th>';
2023-08-04 14:54:28 +02:00
2024-01-15 15:30:45 +01:00
foreach ($campi as $campo) {
echo '
<th>'.$campo.'</th>';
2024-01-15 15:30:45 +01:00
}
echo '
</tr>';
2024-01-15 15:30:45 +01:00
$index = 0;
2024-01-15 15:30:45 +01:00
foreach ($records['results'] as $record) {
$record['Data'] = Translator::dateToLocale($record['Data']);
$record['Dare'] = Translator::numberToLocale($record['Dare'], 'qta');
$record['Avere'] = Translator::numberToLocale($record['Avere'], 'qta');
++$index;
2023-08-04 14:54:28 +02:00
2024-01-15 15:30:45 +01:00
echo '
<tr>
<td>'.$index.'</td>';
2024-01-15 15:30:45 +01:00
foreach ($campi as $campo) {
echo '
<td>'.$record[$campo].'</td>';
2024-01-15 15:30:45 +01:00
}
2023-08-04 14:54:28 +02:00
2024-01-15 15:30:45 +01:00
echo '
</tr>';
2024-01-15 15:30:45 +01:00
}
echo '
2023-08-04 14:54:28 +02:00
</table>';