2017-09-14 16:20:11 +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/>.
|
|
|
|
*/
|
2017-09-14 16:20:11 +02:00
|
|
|
|
|
|
|
include_once __DIR__.'/../../core.php';
|
|
|
|
|
|
|
|
echo '
|
2017-11-07 19:19:52 +01:00
|
|
|
|
|
|
|
<div class="alert alert-warning">
|
2017-11-11 10:23:02 +01:00
|
|
|
<i class="fa fa-warning"></i> <b>'.tr('Attenzione', [], ['upper']).':</b> '.tr('le suddette stampe contabili non sono da considerarsi valide ai fini fiscali').'.
|
2017-11-07 19:19:52 +01:00
|
|
|
</div>
|
|
|
|
|
2017-09-15 12:50:59 +02:00
|
|
|
<div class="row">
|
2018-02-20 16:46:23 +01:00
|
|
|
<div class="col-md-4">
|
2017-09-15 12:50:59 +02:00
|
|
|
<div class="panel panel-primary">
|
|
|
|
<div class="panel-heading">
|
2020-07-02 17:30:09 +02:00
|
|
|
<h3 class="panel-title">'.tr('Registri IVA').'</h3>
|
2020-11-30 10:32:16 +01:00
|
|
|
<br>
|
2017-09-15 12:50:59 +02:00
|
|
|
</div>
|
2017-09-14 16:20:11 +02:00
|
|
|
|
2020-12-02 11:31:52 +01:00
|
|
|
<div class="panel-body">
|
2020-12-31 16:13:28 +01:00
|
|
|
<button type="button" class="btn btn-primary col-md-3" data-toggle="modal" data-title="'.tr('Stampa registro IVA vendite').'" data-href="'.base_url().'/modules/stampe_contabili/stampe_contabili.php?dir=entrata&nome_stampa=Registro IVA&id_record='.$id_record.'" ><i class="fa fa-print fa-2x"></i><br>'.tr('Registro').'<br>'.tr('IVA vendite').'</button>
|
2020-07-01 18:10:00 +02:00
|
|
|
|
2020-12-31 16:13:28 +01:00
|
|
|
<button type="button" class="btn btn-primary col-md-3 col-md-push-1" data-toggle="modal" data-title="'.tr('Stampa registro IVA acquisti').'" data-href="'.base_url().'/modules/stampe_contabili/stampe_contabili.php?dir=uscita&nome_stampa=Registro IVA&id_record='.$id_record.'" ><i class="fa fa-print fa-2x"></i><br>'.tr('Registro').'<br>'.tr('IVA acquisti').'</button>
|
2020-07-01 18:10:00 +02:00
|
|
|
|
2020-12-31 16:13:28 +01:00
|
|
|
<button type="button" class="btn btn-primary col-md-4 col-md-push-2" data-toggle="modal" data-title="'.tr('Stampa liquidazione IVA').'" data-href="'.base_url().'/modules/stampe_contabili/stampe_contabili.php?nome_stampa=Liquidazione IVA&id_record='.$id_record.'" ><i class="fa fa-print fa-2x"></i><br>'.tr('Liquidazione').'<br>'.tr('IVA').'</button>
|
2017-09-14 16:20:11 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2017-09-15 12:50:59 +02:00
|
|
|
|
2018-02-20 16:46:23 +01:00
|
|
|
<div class="col-md-4">
|
2017-09-15 12:50:59 +02:00
|
|
|
<div class="panel panel-primary">
|
|
|
|
<div class="panel-heading">
|
2020-07-01 18:10:00 +02:00
|
|
|
<h3 class="panel-title">'.tr('Comunicazione dati fatture (ex-spesometro)<br> dal _START_ al _END_', [
|
2021-01-04 18:54:23 +01:00
|
|
|
'_START_' => dateFormat(session('period_start')),
|
|
|
|
'_END_' => dateFormat(session('period_end')),
|
2017-09-15 12:50:59 +02:00
|
|
|
]).'</h3>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="panel-body">
|
2021-11-12 11:53:42 +01:00
|
|
|
'.Prints::getLink('Spesometro', $id_record, 'btn-primary col-md-5', '<br>'.tr('Dati fatture').'<br>'.tr(' vendite e acquisti'), '|default| fa-2x', 'dir=uscita').'
|
2017-09-21 16:09:48 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2018-02-20 16:46:23 +01:00
|
|
|
<div class="col-md-4">
|
2017-09-21 16:09:48 +02:00
|
|
|
<div class="panel panel-primary">
|
|
|
|
<div class="panel-heading">
|
2021-11-12 11:53:42 +01:00
|
|
|
<h3 class="panel-title">'.tr('Dati economici<br> dal _START_ al _END_', [
|
2021-01-04 18:54:23 +01:00
|
|
|
'_START_' => dateFormat($_SESSION['period_start']),
|
|
|
|
'_END_' => dateFormat($_SESSION['period_end']),
|
2017-09-21 16:09:48 +02:00
|
|
|
]).'</h3>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="panel-body">
|
2021-11-12 11:53:42 +01:00
|
|
|
'.Prints::getLink('Fatturato', $id_record, 'btn-primary col-md-5', '<br>'.tr('Stampa').'<br>'.tr('Fatturato'), '|default| fa-2x', 'dir=entrata').'
|
2017-09-21 16:09:48 +02:00
|
|
|
|
2021-11-12 11:53:42 +01:00
|
|
|
'.Prints::getLink('Fatturato', $id_record, 'btn-primary col-md-5 col-md-push-2', '<br>'.tr('Stampa').'<br>'.tr('Acquisti').'<br>', '|default| fa-2x', 'dir=uscita').'
|
2017-09-15 12:50:59 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-10-25 14:30:31 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-4">
|
|
|
|
<div class="panel panel-primary">
|
|
|
|
<div class="panel-heading">
|
2021-11-12 11:53:42 +01:00
|
|
|
<h3 class="panel-title">'.tr('Contabilità').'</h3>
|
2021-10-25 14:30:31 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="panel-body">
|
2020-12-31 16:13:28 +01:00
|
|
|
<button type="button" class="btn btn-primary col-md-3" data-toggle="modal" data-title="'.tr('Stampa Bilancio').'" data-href="'.base_url().'/modules/stampe_contabili/stampa_bilancio.php" ><i class="fa fa-print fa-2x"></i> <br>'.tr('Stampa').'<br>'.tr('Bilancio').'<br></button>
|
2021-10-25 14:30:31 +02:00
|
|
|
|
2021-11-12 11:53:42 +01:00
|
|
|
'.Prints::getLink('Mastrino', 1, 'btn-primary col-md-3 col-md-push-1', '<br>'.tr('Situazione').'<br>'.tr('patrimoniale'), '|default| fa-2x', 'lev=1').'
|
2021-10-25 14:30:31 +02:00
|
|
|
|
2021-11-12 11:53:42 +01:00
|
|
|
'.Prints::getLink('Mastrino', 2, 'btn-primary col-md-3 col-md-push-2', '<br>'.tr('Situazione').'<br>'.tr('economica'), '|default| fa-2x', 'lev=1').'
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="col-md-4">
|
|
|
|
<div class="panel panel-primary">
|
|
|
|
<div class="panel-heading">
|
|
|
|
<h3 class="panel-title">'.tr('Libro giornale').'</h3>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="panel-body">
|
|
|
|
'.Prints::getLink('Libro giornale', 2, 'btn-primary col-md-4', '<br>'.tr('Libro').'<br>'.tr('giornale'), '|default| fa-2x').'
|
2021-10-25 14:30:31 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2017-09-14 16:20:11 +02:00
|
|
|
</div>';
|