openstamanager/modules/modelli_primanota/add.php

208 lines
6.1 KiB
PHP
Raw Normal View History

2018-05-04 17:57:46 +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/>.
*/
2018-05-04 17:57:46 +02:00
include_once __DIR__.'/../../core.php';
function renderRiga($id, $riga)
{
// Conto
echo '
<tr>
<td>
{[ "type": "select", "name": "idconto['.$id.']", "id": "conto'.$id.'", "value": "'.($riga['idconto'] ?: '').'", "ajax-source": "conti-modelliprimanota" ]}
</td>';
// Dare
echo '
<td>
{[ "type": "number", "name": "dare['.$id.']", "id": "dare'.$id.'", "value": "'.($riga['totale'] > 0 ? abs($riga['totale']) : 0).'" ]}
</td>';
// Avere
echo '
<td>
{[ "type": "number", "name": "avere['.$id.']", "id": "avere'.$id.'", "value": "'.($riga['totale'] < 0 ? abs($riga['totale']) : 0).'" ]}
</td>
</tr>';
}
// Nuova riga
echo '
<table class="hide">
<tbody id="template">';
renderRiga('-id-', null);
echo '
</tbody>
</table>';
2018-06-23 18:35:08 +02:00
?><form action="" method="post" id="add-form">
2018-05-04 17:57:46 +02:00
<input type="hidden" name="op" value="add">
<input type="hidden" name="backto" value="record-edit">
<div class="row">
<div class="col-md-5">
{[ "type": "text", "label": "<?php echo tr('Nome'); ?>", "name": "nome", "required": 1 ]}
</div>
<div class="col-md-7">
{[ "type": "text", "label": "<?php echo tr('Causale'); ?>", "name": "descrizione", "required": 1 ]}
2018-05-04 17:57:46 +02:00
</div>
</div>
<?php
// Salvo l'elenco conti in un array (per non fare il ciclo ad ogni riga)
/*
Form di aggiunta riga movimento
*/
echo '
<button class="btn btn-info btn-xs pull-right" type="button" id="addriga" onclick="addRiga(this)">
<i class="fa fa-plus"></i> '.tr('Aggiungi riga').'
</button>
<br><br>
2018-05-04 17:57:46 +02:00
<table class="table table-striped table-condensed table-hover table-bordered"
<tr>
<th width="60%">'.tr('Conto').'</th>
<th width="20%">'.tr('Dare').'</th>
<th width="20%">'.tr('Avere').'</th>
2018-05-04 17:57:46 +02:00
</tr>';
$counter = 0;
2018-06-23 18:35:08 +02:00
foreach ($rs as $r) {
renderRiga($counter++, $r);
}
2018-05-04 17:57:46 +02:00
echo '
</table>';
2019-04-12 01:11:32 +02:00
// Variabili utilizzabili
$variables = include Modules::filepath(Modules::get('Fatture di vendita')['id'], 'variables.php');
2019-04-12 01:11:32 +02:00
echo '
<!-- Istruzioni per il contenuto -->
<div class="box box-info">
<div class="box-body">';
2019-04-12 01:11:32 +02:00
if (!empty($variables)) {
echo '
<p>'.tr("Puoi utilizzare le seguenti sequenze di testo all'interno del campo causale, verranno sostituite in fase generazione prima nota dalla fattura.").':</p>
<ul>';
2019-04-12 01:11:32 +02:00
foreach ($variables as $variable => $value) {
echo '
<li><code>{'.$variable.'}</code></li>';
2019-04-12 01:11:32 +02:00
}
2019-04-12 01:11:32 +02:00
echo '
</ul>';
2019-04-12 01:11:32 +02:00
} else {
echo '
<p><i class="fa fa-warning"></i> '.tr('Non sono state definite variabili da utilizzare nel template').'.</p>';
2019-04-12 01:11:32 +02:00
}
2019-04-12 01:11:32 +02:00
echo '
</div>
</div>';
?>
2018-05-04 17:57:46 +02:00
<!-- PULSANTI -->
<div class="row">
<div class="col-md-12 text-right">
<button type="submit" class="btn btn-primary"><i class="fa fa-plus"></i> <?php echo tr('Aggiungi'); ?></button>
</div>
</div>
</form>
<script>
$(document).ready(function() {
// Fix per l\'inizializzazione degli input
$("input[id*=dare], input[id*=avere]").each(function() {
if (input(this).get() === 0) {
$(this).prop("disabled", true);
} else {
$(this).prop("disabled", false);
}
});
// 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();
});
// Creazione delle eventuali righe aggiuntive
let table = $("#modals table").first();
let button = table.parent().find("button").first();
let row_needed = $("#modals select").length;
let row_count = table.find("tr").length - 2;
while (row_count < row_needed) {
button.click();
row_count++;
}
});
$(document).on("change", "select", function() {
2022-09-12 17:00:58 +02:00
let row = $(this).parent().parent().parent();
if (row.find("input[disabled]").length > 1) {
row.find("input").prop("disabled", !$(this).val());
}
2022-09-12 17:00:58 +02:00
// 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();
});
$(document).on("keyup change", "input[id*=dare]", function() {
2022-09-12 17:00:58 +02:00
let row = $(this).parent().parent().parent();
if (!$(this).prop("disabled")) {
row.find("input[id*=avere]").prop("disabled", $(this).val().toEnglish());
}
});
$(document).on("keyup change", "input[id*=avere]", function() {
2022-09-12 17:00:58 +02:00
let row = $(this).parent().parent().parent();
if (!$(this).prop("disabled")) {
row.find("input[id*=dare]").prop("disabled", $(this).val().toEnglish());
}
});
var n = <?php echo $counter; ?>;
function addRiga(btn) {
var raggruppamento = $(btn).parent();
cleanup_inputs();
var tabella = raggruppamento.find("tbody");
var content = $("#template").html();
var text = replaceAll(content, "-id-", "" + n);
tabella.append(text);
restart_inputs();
n++;
}
$(document).ready(init);
</script>