242 lines
8.4 KiB
PHP
242 lines
8.4 KiB
PHP
<?php
|
|
|
|
include_once __DIR__.'/../../core.php';
|
|
|
|
?><form action="" method="post" id="edit-form">
|
|
<input type="hidden" name="op" value="editriga">
|
|
<input type="hidden" name="backto" value="record-edit">
|
|
<input type="hidden" name="id_record" value="<?php echo $id_record; ?>">
|
|
<input type="hidden" name="idmastrino" value="<?php echo $records[0]['idmastrino']; ?>">
|
|
<input type="hidden" name="iddocumento" value="<?php echo $records[0]['iddocumento']; ?>">
|
|
|
|
|
|
<div class="row">
|
|
<?php
|
|
if (!empty($records[0]['iddocumento'])) {
|
|
$rs = $dbo->fetchArray('SELECT dir FROM co_tipidocumento INNER JOIN co_documenti ON co_tipidocumento.id=co_documenti.idtipodocumento WHERE co_documenti.id='.prepare($records[0]['iddocumento']));
|
|
$modulo = ($rs[0]['dir'] == 'entrata') ? 'Fatture di vendita' : 'Fatture di acquisto'; ?>
|
|
<div class=" col-md-2">
|
|
<br>
|
|
<a href="<?php echo $rootdir; ?>/editor.php?id_module=<?php echo Modules::get($modulo)['id']; ?>&id_record=<?php echo $records[0]['iddocumento']; ?>" class="btn btn-info"><i class="fa fa-chevron-left"></i> <?php echo tr('Torna alla fattura'); ?></a>
|
|
</div>
|
|
<?php
|
|
}
|
|
?>
|
|
|
|
<div class="col-md-3">
|
|
{[ "type": "date", "label": "<?php echo tr('Data movimento'); ?>", "name": "data", "required": 1, "value": "$data$" ]}
|
|
</div>
|
|
|
|
<div class="col-md-7">
|
|
{[ "type": "text", "label": "<?php echo tr('Causale'); ?>", "name": "descrizione", "required": 1, "value": "$descrizione$" ]}
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<?php
|
|
$conti3 = []; // contenitore conti di terzo livello
|
|
$totale_dare = 0.00;
|
|
$totale_avere = 0.00;
|
|
$idmastrino = $records[0]['idmastrino'];
|
|
|
|
// Salvo l'elenco conti in un array (per non fare il ciclo ad ogni riga)
|
|
$query2 = 'SELECT * FROM co_pianodeiconti2';
|
|
$conti2 = $dbo->fetchArray($query2);
|
|
for ($x = 0; $x < sizeof($conti2); ++$x) {
|
|
$query3 = 'SELECT * FROM co_pianodeiconti3 WHERE idpianodeiconti2='.prepare($conti2[$x]['id']);
|
|
$rs3 = $dbo->fetchArray($query3);
|
|
for ($y = 0; $y < sizeof($rs3); ++$y) {
|
|
// Creo un array con le descrizioni dei conti di livello 3 che ha come indice l'id del livello2 e del livello3
|
|
$conti3[$rs3[$y]['idpianodeiconti2']][$y]['id'] = $rs3[$y]['id'];
|
|
$conti3[$rs3[$y]['idpianodeiconti2']][$y]['descrizione'] = $conti2[$x]['numero'].'.'.$rs3[$y]['numero'].' '.$rs3[$y]['descrizione'];
|
|
}
|
|
}
|
|
|
|
/*
|
|
Form di modifica riga movimento
|
|
*/
|
|
// Lettura movimenti del mastrino selezionato
|
|
$query = 'SELECT * FROM co_movimenti WHERE idmastrino='.prepare($records[0]['idmastrino']).' AND iddocumento='.prepare($records[0]['iddocumento']).' AND primanota='.prepare($records[0]['primanota']);
|
|
$rs = $dbo->fetchArray($query);
|
|
$n = sizeof($rs);
|
|
$iddocumento = $rs[0]['iddocumento'];
|
|
|
|
echo '
|
|
<table class="table table-striped table-condensed table-hover table-bordered"
|
|
<tr>
|
|
<th>'.tr('Conto').'</th>
|
|
<th width="20%">'.tr('Dare').'</th>
|
|
<th width="20%">'.tr('Avere').'</th>
|
|
</tr>';
|
|
|
|
for ($i = 0; $i < 10; ++$i) {
|
|
|
|
($i<=1) ? $required = 1 : $required = 0;
|
|
|
|
// Conto
|
|
echo '
|
|
<tr>
|
|
<td>
|
|
{[ "type": "select", "name": "idconto['.$i.']", "value": "'.$rs[$i]['idconto'].'", "ajax-source": "conti", "required": "'.$required.'" ]}
|
|
</td>';
|
|
|
|
// Importo dare e avere
|
|
if ($rs[$i]['totale'] > 0) {
|
|
$value_dare = $rs[$i]['totale'];
|
|
$value_avere = '';
|
|
} elseif ($rs[$i]['totale'] < 0) {
|
|
$value_dare = '';
|
|
$value_avere = -$rs[$i]['totale'];
|
|
} else {
|
|
$value_dare = '';
|
|
$value_avere = '';
|
|
}
|
|
|
|
// Dare
|
|
echo '
|
|
<td>
|
|
{[ "type": "number", "name": "dare['.$i.']", "value": "'.$value_dare.'", "disabled": 1 ]}
|
|
</td>';
|
|
|
|
// Avere
|
|
echo '
|
|
<td>
|
|
{[ "type": "number", "name": "avere['.$i.']", "value": "'.$value_avere.'", "disabled": 1 ]}
|
|
</td>
|
|
</tr>';
|
|
}
|
|
|
|
// Totale per controllare sbilancio
|
|
echo '
|
|
<tr>
|
|
<td align="right"><b>Totale:</b></td>';
|
|
|
|
if ($totale_dare != $totale_avere) {
|
|
$class = 'text-danger';
|
|
$txt = 'sbilancio di '.Translator::numberToLocale($totale_dare - $totale_avere).' €';
|
|
} else {
|
|
$class = '';
|
|
$txt = '';
|
|
}
|
|
|
|
// Totale dare
|
|
echo '
|
|
<td align="right">
|
|
<span><span class="'.$class.'" id="totale_dare">'.Translator::numberToLocale($totale_dare).'</span> €</span>
|
|
</td>';
|
|
|
|
// Totale avere
|
|
echo '
|
|
<td align="right">
|
|
<span><span class="'.$class.'" id="totale_avere">'.Translator::numberToLocale($totale_avere).'</span> €</span>
|
|
</td>
|
|
</tr>';
|
|
|
|
// Verifica sbilancio
|
|
echo '
|
|
<tr>
|
|
<td align="right"></td>
|
|
<td colspan="2" align="center">
|
|
<span id="testo_aggiuntivo">'.$txt.'</span>
|
|
</td>
|
|
</tr>
|
|
</table>';
|
|
?>
|
|
|
|
|
|
<script type="text/javascript">
|
|
$(document).ready( function(){
|
|
$('input[id*=dare], input[id*=avere]').each(function(){
|
|
if($(this).val() != "<?php echo Translator::numberToLocale(0); ?>") $(this).prop("disabled", false);
|
|
});
|
|
|
|
$('select').on('change', function(){
|
|
if($(this).parent().parent().find('input[disabled]').length != 1){
|
|
if($(this).val()) {
|
|
$(this).parent().parent().find('input').prop("disabled", false);
|
|
}
|
|
else{
|
|
$(this).parent().parent().find('input').prop("disabled", true);
|
|
$(this).parent().parent().find('input').val("");
|
|
}
|
|
}
|
|
});
|
|
|
|
$('input[id*=dare]').on('keyup change', function(){
|
|
if(!$(this).prop('disabled')){
|
|
if($(this).val()) {
|
|
$(this).parent().parent().find('input[id*=avere]').prop("disabled", true);
|
|
}
|
|
else {
|
|
$(this).parent().parent().find('input[id*=avere]').prop("disabled", false);
|
|
}
|
|
|
|
calcolaBilancio();
|
|
}
|
|
});
|
|
|
|
$('input[id*=avere]').on('keyup change', function(){
|
|
if(!$(this).prop('disabled')){
|
|
if($(this).val()) {
|
|
$(this).parent().parent().find('input[id*=dare]').prop("disabled", true);
|
|
}
|
|
else {
|
|
$(this).parent().parent().find('input[id*=dare]').prop("disabled", false);
|
|
}
|
|
|
|
calcolaBilancio();
|
|
}
|
|
});
|
|
|
|
// Ad ogni modifica dell'importo verifica che siano stati selezionati: il conto, la causale, la data. Inoltre aggiorna lo sbilancio
|
|
function calcolaBilancio(){
|
|
bilancio = 0.00;
|
|
totale_dare = 0.00;
|
|
totale_avere = 0.00;
|
|
|
|
// Calcolo il totale dare e totale avere
|
|
$('input[id*=dare]').each( function(){
|
|
if( $(this).val() == '' ) valore = 0;
|
|
else valore = $(this).val().toEnglish();
|
|
totale_dare += valore;
|
|
});
|
|
|
|
$('input[id*=avere]').each( function(){
|
|
if( $(this).val() == '' ) valore = 0;
|
|
else valore = $(this).val().toEnglish();
|
|
totale_avere += valore;
|
|
});
|
|
|
|
$('#totale_dare').text(totale_dare.toLocale());
|
|
$('#totale_avere').text(totale_avere.toLocale());
|
|
|
|
bilancio = totale_dare-totale_avere;
|
|
|
|
if( bilancio == 0 ){
|
|
$("#testo_aggiuntivo").removeClass('text-danger').html("");
|
|
//$("button[type=submit]").removeClass('hide');
|
|
$("#save").removeClass('hide');
|
|
|
|
}
|
|
else{
|
|
$("#testo_aggiuntivo").addClass('text-danger').html("sbilancio di " + bilancio.toLocale() + " €" );
|
|
|
|
//$("button[type=submit]").addClass('hide');
|
|
$("#save").addClass('hide');
|
|
}
|
|
}
|
|
|
|
// Trigger dell'evento keyup() per la prima volta, per eseguire i dovuti controlli nel caso siano predisposte delle righe in prima nota
|
|
$("input[id*=dare][value!=''], input[id*=avere][value!='']").keyup();
|
|
|
|
$("select[id*=idconto]").click( function(){
|
|
$("input[id*=dare][value!=''], input[id*=avere][value!='']").keyup();
|
|
});
|
|
});
|
|
</script>
|
|
</form>
|
|
|
|
<a class="btn btn-danger ask" data-backto="record-list" data-idmastrino="<?php echo $records[0]['idmastrino']; ?>">
|
|
<i class="fa fa-trash"></i> <?php echo tr('Elimina'); ?>
|
|
</a>
|