2020-08-06 10:41:21 +02:00
|
|
|
<?php
|
2020-09-07 15:04:06 +02:00
|
|
|
/*
|
|
|
|
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
|
2021-01-20 15:08:51 +01:00
|
|
|
* Copyright (C) DevCode s.r.l.
|
2020-09-07 15:04:06 +02:00
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
2020-08-06 10:41:21 +02:00
|
|
|
|
|
|
|
include_once __DIR__.'/../../core.php';
|
|
|
|
|
|
|
|
$id_conto = get('id');
|
|
|
|
|
|
|
|
// Informazioni sul conto
|
|
|
|
$query = 'SELECT *, idpianodeiconti2 AS idpianodeiconti FROM co_pianodeiconti3 WHERE id='.prepare($id_conto);
|
|
|
|
$conto = $dbo->fetchOne($query);
|
|
|
|
|
|
|
|
echo '
|
2020-08-11 17:23:25 +02:00
|
|
|
<p>'.tr('Seleziona il periodo temporale per il quale desideri aggiornare la percentuale di deducibilità del conto "_DESC_". La nuova percentuale è: _PERC_%', [
|
2020-08-06 10:41:21 +02:00
|
|
|
'_DESC_' => $conto['descrizione'],
|
2020-08-11 17:23:25 +02:00
|
|
|
'_PERC_' => numberFormat($conto['percentuale_deducibile'], 0),
|
2020-08-06 10:41:21 +02:00
|
|
|
]).'.</p>
|
|
|
|
<form action="" method="post">
|
|
|
|
<input type="hidden" name="op" value="aggiorna_reddito">
|
|
|
|
<input type="hidden" name="backto" value="record-list">
|
|
|
|
<input type="hidden" name="id_conto" value="'.$conto['id'].'">
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-6">
|
|
|
|
{[ "type": "date", "label": "'.tr('Inizio del periodo').'", "name": "start", "required": 1, "value": "'.$_SESSION['period_start'].'" ]}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="col-md-6">
|
|
|
|
{[ "type": "date", "label": "'.tr('Fine del periodo').'", "name": "end", "required": 1, "value": "'.$_SESSION['period_end'].'" ]}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="pull-right">
|
|
|
|
<button type="submit" class="btn btn-primary">
|
|
|
|
<i class="fa fa-refresh"></i> '.tr('Aggiorna').'
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
<div class="clearfix"></div>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
<script>$(document).ready(init)</script>';
|