openstamanager/modules/scadenzario/edit.php

304 lines
12 KiB
PHP
Raw Normal View History

<?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/>.
*/
include_once __DIR__.'/../../core.php';
2019-09-28 11:12:11 +02:00
$dir = $documento->direzione;
$numero = $documento->numero_esterno ?: $documento->numero;
echo '
<form action="" method="post" id="edit-form">
<input type="hidden" name="op" value="update">
<input type="hidden" name="backto" value="record-edit">
<input type="hidden" name="id_record" value="'.$id_record.'">
2019-07-25 18:05:47 +02:00
<input type="hidden" name="tipo" value="'.$record['tipo'].'">
<input type="hidden" name="descrizione" value="'.$record['descrizione'].'">
<input type="hidden" name="iddocumento" value="'.$record['iddocumento'].'">
2022-10-10 11:23:17 +02:00
<input type="hidden" name="idanagrafica" value="'.$record['idanagrafica'].'">
<div class="panel panel-primary">
<div class="panel-heading">
2019-07-25 18:05:47 +02:00
<h3 class="panel-title">
'.tr('Dettagli scadenza').'
<button type="button" class="btn btn-xs btn-info pull-right tip" id="add-scadenza" '.(empty($documento) ? 'disabled' : '').' title="'.tr('È possibile aggiungere scadenze solo se è presente il collegamento a un documento, in caso contrario è consigliato creare più scadenze con la stessa descrizione').'">
2019-07-25 18:05:47 +02:00
<i class="fa fa-plus"></i> '.tr('Aggiungi scadenza').'
</button>
</h3>
</div>
<div class="panel-body">
<div class="row">
<!-- Info scadenza -->
<div class="col-md-6">
2019-09-28 11:12:11 +02:00
<table class="table table-striped table-hover table-condensed table-bordered">
<tr>
<th width="125">'.($dir == 'entrata' ? tr('Cliente') : ($dir == 'uscita' ? tr('Fornitore') : tr('Anagrafica'))).':</th>
<td>
'.Modules::link('Anagrafiche', $record['idanagrafica'], $record['ragione_sociale']).'
</td>
</tr>';
if (!empty($documento)) {
echo '
<tr>
<th>'.tr('Documento').':</th>
2019-09-28 11:12:11 +02:00
<td>'.$documento->tipo->descrizione.'</td>
</tr>
<tr>
<th>'.tr('Numero').':</th>
<td>'.$numero.'</td>
</tr>
<tr>
<th>'.tr('Data').':</th>
2019-09-28 11:12:11 +02:00
<td>'.Translator::dateToLocale($documento->data).'</td>
</tr>
<tr>
<th>'.tr('Netto a pagare').':</th>
<td>'.moneyFormat($documento->netto).'</td>
</tr>';
} else {
$scadenza = $dbo->fetchOne('SELECT * FROM co_scadenziario WHERE id = '.prepare($id_record));
echo '
<tr>
<th>'.tr('Descrizione').':</th>
<td>
{[ "type": "textarea", "name": "descrizione", "value": "'.$record['descrizione'].'" ]}
</td>
</tr>';
}
echo '
2020-01-28 14:20:14 +01:00
<tr>
<th>'.tr('Note').':</th>
<td>
{[ "type": "textarea", "name": "note", "value": "'.$record['note'].'" ]}
</td>
</tr>
<tr>
<th>'.tr('Info distinta').' <span class="tip" title="'.tr("Informazioni/Note sulla distinta associata alla scadenza (es. numero)").'" ><i class="fa fa-question-circle-o" ></i></span>:</th>
<td>
{[ "type": "text", "name": "distinta", "value": "'.$record['distinta'].'" ]}
</td>
</tr>';
if( !empty($record['presentazioni_exported_at']) ){
$export_riba = '<i class="fa fa-check text-success"></i> '.tr('Esportata il _DATA_',[
'_DATA_' => Translator::timestampToLocale($record['presentazioni_exported_at']),
]).'';
}else{
$export_riba = '<i class="fa fa-clock-o text-warning"></i> '.tr('Non ancora esportata');
}
echo '
</table>';
if (!empty($documento)) {
echo Modules::link($documento->module, $record['iddocumento'], '<i class="fa fa-folder-open"></i> '.tr('Apri documento'), null, 'class="btn btn-primary"');
}
echo '
</div>
<!-- Elenco scadenze -->
<div class="col-md-6">
<table class="table table-hover table-condensed table-bordered">
2019-07-25 18:05:47 +02:00
<thead>
<tr>
<th width="150">'.tr('Data').'</th>
<th width="150">'.tr('Importo').'</th>
<th width="150">'.tr('Pagato').'</th>
<th width="150">'.tr('Data concordata').'</th>
</tr>
</thead>
2019-09-28 11:12:11 +02:00
2019-07-25 18:05:47 +02:00
<tbody id="scadenze">';
2020-09-07 14:52:46 +02:00
foreach ($scadenze as $i => $scadenza) {
2019-09-28 11:12:11 +02:00
if ($scadenza['da_pagare'] == $scadenza['pagato']) {
$class = 'success';
2019-09-28 11:12:11 +02:00
} elseif (abs($scadenza['pagato']) == 0) {
$class = 'danger';
2019-09-28 11:12:11 +02:00
} elseif (abs($scadenza['pagato']) <= abs($scadenza['da_pagare'])) {
$class = 'warning';
} else {
$class = 'danger';
}
echo '
<tr class="'.$class.'">
2019-09-28 11:12:11 +02:00
<input type="hidden" name="id_scadenza['.$i.']" value="'.$scadenza['id'].'">
<td align="center">
2019-09-28 11:12:11 +02:00
{[ "type": "date", "name": "scadenza['.$i.']", "value": "'.$scadenza['scadenza'].'" ]}
</td>
<td class="text-right">
2020-10-06 12:29:14 +02:00
{[ "type": "number", "name": "da_pagare['.$i.']", "decimals": 2, "value": "'.numberFormat($scadenza['da_pagare'], 2).'", "onchange": "controlloTotale()" ]}
</td>
<td class="text-right">
2020-10-06 12:29:14 +02:00
{[ "type": "number", "name": "pagato['.$i.']", "decimals": 2, "value": "'.numberFormat($scadenza['pagato']).'" ]}
</td>
2019-09-28 11:12:11 +02:00
2019-07-25 18:05:47 +02:00
<td align="center">
2019-09-28 11:12:11 +02:00
{[ "type": "date", "name": "data_concordata['.$i.']", "value": "'.$scadenza['data_concordata'].'" ]}
2019-07-25 18:05:47 +02:00
</td>
</tr>';
}
2019-07-25 18:05:47 +02:00
echo '
2019-07-25 18:05:47 +02:00
</tbody>
<tfoot>
<tr>
<td class="text-right"><b>'.tr('Totale').'</b></td>
2020-10-06 12:29:14 +02:00
<td class="text-right" id="totale_utente">'.numberFormat($totale_da_pagare).'</td>
<td class="text-right"></td>
<td class="text-right"></td>
2019-07-25 18:05:47 +02:00
</tr>
</tfoot>
</table>';
if ($totale_da_pagare != 0) {
echo '
<div class="pull-right">
<a onclick="launch_modal(\''.tr('Registra contabile pagamento').'\', \''.base_path().'/add.php?id_module='.Modules::get('Prima nota')['id'].'&'.(!empty($record['iddocumento']) ? 'id_documenti='.$record['iddocumento'].'&single=1' : 'id_scadenze='.$id_record).'\');" class="btn btn-sm btn-primary">
<i class="fa fa-euro"></i> '.tr('Registra contabile pagamento...').'
</a>
</div>
2019-07-26 17:40:52 +02:00
2018-10-19 16:19:49 +02:00
<div class="clearfix"></div>
<br>';
}
?>
<div class="alert alert-warning hide" id="totale"><?php echo tr('Il totale da pagare non corrisponde con il totale della fattura che è pari a _MONEY_', [
'_MONEY_' => '<b>'.moneyFormat($totale_da_pagare).'</b>',
]); ?>.<br><?php echo tr('Differenza di _TOT_ _CURRENCY_', [
'_TOT_' => '<span id="diff"></span>',
'_CURRENCY_' => currency(),
]); ?>.
2018-10-19 16:19:49 +02:00
</div>
2020-10-06 12:29:14 +02:00
<input type="hidden" id="totale_da_pagare" value="<?php echo round($totale_da_pagare, 2); ?>">
</div>
</div>
</div>
</div>
</form>
{( "name": "filelist_and_upload", "id_module": "$id_module$", "id_record": "<?php echo $id_record; ?>" )}
2019-02-21 12:24:57 +01:00
{( "name": "log_email", "id_module": "$id_module$", "id_record": "$id_record$" )}
<?php
if (empty($documento)) {
2021-02-18 18:48:44 +01:00
echo '
<a class="btn btn-danger ask" data-backto="record-list">
<i class="fa fa-trash"></i> '.tr('Elimina').'
</a>';
2021-02-18 18:48:44 +01:00
}
2019-07-25 18:05:47 +02:00
echo '
<table class="hide">
<tbody id="scadenza-template">
<tr class="danger">
2019-09-28 11:12:11 +02:00
<input type="hidden" name="id_scadenza[-id-]" value="">
2019-07-25 18:05:47 +02:00
<td align="center">
{[ "type": "date", "name": "scadenza[-id-]" ]}
</td>
<td class="text-right">
2019-07-25 18:05:47 +02:00
{[ "type": "number", "name": "da_pagare[-id-]", "decimals": 2, "onchange": "controlloTotale()" ]}
</td>
<td class="text-right">
2019-07-25 18:05:47 +02:00
{[ "type": "number", "name": "pagato[-id-]", "decimals": 2 ]}
</td>
2019-07-25 18:05:47 +02:00
<td align="center">
{[ "type": "date", "name": "data_concordata[-id-]" ]}
</td>
</tr>
</tbody>
</table>
<script>
var i = '.$i.';
$(document).on("click", "#add-scadenza", function() {
2019-07-26 17:40:52 +02:00
cleanup_inputs();
2019-07-26 17:40:52 +02:00
i++;
2019-07-25 18:05:47 +02:00
var text = replaceAll($("#scadenza-template").html(), "-id-", "" + i);
2019-07-25 18:05:47 +02:00
$("#scadenze").append(text);
2019-07-26 17:40:52 +02:00
restart_inputs();
2019-07-25 18:05:47 +02:00
});
</script>';
// Abilitazione dei controlli solo per Scadenze collegate a documenti
if (!empty($documento)) {
echo '
<script>
2019-05-02 10:03:57 +02:00
globals.cifre_decimali = 2;
2019-07-26 17:40:52 +02:00
$(document).ready(function() {
controlloTotale();';
2019-07-26 17:40:52 +02:00
if ($dir == 'uscita') {
echo '
$("#email-button").remove();
$("#allega-fattura").remove();';
}
echo '
});
2019-07-25 18:05:47 +02:00
function controlloTotale() {
2020-10-06 12:29:14 +02:00
let totale_da_pagare = parseFloat($("#totale_da_pagare").val());
let totale_utente = 0;
$("input[name*=da_pagare]").each(function() {
2020-10-06 12:29:14 +02:00
totale_utente += input(this).get();
2019-07-25 18:05:47 +02:00
});
2019-07-25 18:05:47 +02:00
if (isNaN(totale_utente)) {
totale_utente = 0;
}
2019-07-25 18:05:47 +02:00
totale_utente = Math.round(totale_utente * 100) / 100;
totale_da_pagare = Math.round(totale_da_pagare * 100) / 100;
2020-10-06 12:29:14 +02:00
let diff = Math.abs(totale_da_pagare) - Math.abs(totale_utente);
2019-07-25 18:05:47 +02:00
if (diff == 0) {
$("#totale").addClass("hide");
2019-07-25 18:05:47 +02:00
} else {
$("#totale").removeClass("hide");
2019-07-25 18:05:47 +02:00
}
$("#diff").html(diff.toLocale());
$("#totale_utente").html(totale_utente.toLocale());
2019-07-25 18:05:47 +02:00
}
</script>';
}