openstamanager/templates/provvigione/top.php

71 lines
2.4 KiB
PHP
Raw Normal View History

<?php
/*
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
* Copyright (C) DevCode s.r.l.
*
* 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';
use Modules\Anagrafiche\Anagrafica;
$agente = Anagrafica::where([
['idanagrafica', '=', $id_record],
])->first();
2023-08-04 14:54:28 +02:00
if (get('is_parz_pagata') == 'true') {
2023-05-08 09:55:49 +02:00
$text[] = "'Parzialmente pagato'";
}
2023-08-04 14:54:28 +02:00
if (get('is_emessa') == 'true') {
2023-05-08 09:55:49 +02:00
$text[] = "'Emessa'";
}
echo '
<h4><b>'.tr('Liquidazione provvigioni agente _ANAG_', [
'_ANAG_' => $agente->ragione_sociale,
], ['upper' => true]).'</b></h4>';
2023-08-04 14:54:28 +02:00
if (!empty($date_start) and !empty($date_end)) {
echo '
<h4><b>'.tr('Provvigioni dal _START_ al _END_', [
'_START_' => Translator::dateToLocale($date_start),
'_END_' => Translator::dateToLocale($date_end),
2024-03-22 15:52:24 +01:00
], ['upper' => true]).'</b>
</h4>';
2023-08-04 14:54:28 +02:00
} else {
echo '
<h5><b>'.tr('Provvigioni').'</b>
</h5>';
}
echo '
2023-05-08 09:55:49 +02:00
<p style="color:#aaa; font-size:10px;" class="text-right">
2023-08-04 14:54:28 +02:00
'.tr('_TEXT_',
2024-01-15 15:30:45 +01:00
[
'_TEXT_' => (empty($text) ? 'Solo fatture con stato \'Pagato\'' : 'Include fatture con stato \'Pagato\', '.implode(', ', $text)),
]).'
2023-05-08 09:55:49 +02:00
</p>
<table class="table table-striped table-bordered" id="contents">
<thead>
<tr>
<th width="20%">'.tr('Documento', [], ['upper' => true]).'</th>
<th width="50%">'.tr('Anagrafica', [], ['upper' => true]).'</th>
<th width="10%" class="text-center">'.tr('Importo', [], ['upper' => true]).'</th>
<th width="10%" class="text-center">'.tr('Percentuale', [], ['upper' => true]).'</th>
<th width="10%" class="text-center">'.tr('Provvigione', [], ['upper' => true]).'</th>
</tr>
</thead>
<tbody>';