openstamanager/modules/primanota/edit.php

102 lines
4.3 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';
?><form action="" method="post" id="edit-form">
2019-07-31 18:22:35 +02:00
<input type="hidden" name="op" value="update">
<input type="hidden" name="backto" value="record-edit">
2018-02-18 19:53:23 +01:00
<input type="hidden" name="id_record" value="<?php echo $id_record; ?>">
2018-07-18 15:20:10 +02:00
<input type="hidden" name="idmastrino" value="<?php echo $record['idmastrino']; ?>">
<input type="hidden" name="iddocumento" value="<?php echo $record['iddocumento']; ?>">
<div class="row">
<?php
2019-04-12 09:20:23 +02:00
2019-04-15 11:35:09 +02:00
$rs_doc = $dbo->fetchArray('SELECT DISTINCT iddocumento, (SELECT IFNULL(numero_esterno, numero) FROM co_documenti WHERE id=co_movimenti.iddocumento) AS numero FROM co_movimenti WHERE idmastrino='.prepare($record['idmastrino']).' AND iddocumento!=0');
2019-04-12 09:20:23 +02:00
2019-04-15 11:35:09 +02:00
if (sizeof($rs_doc) > 0) {
if (sizeof($rs_doc) == 1) {
$rs = $dbo->fetchArray('SELECT dir FROM co_tipidocumento INNER JOIN co_documenti ON co_tipidocumento.id=co_documenti.idtipodocumento WHERE co_documenti.id='.prepare($rs_doc[0]['iddocumento']));
$modulo = ($rs[0]['dir'] == 'entrata') ? 'Fatture di vendita' : 'Fatture di acquisto'; ?>
2019-04-15 11:35:09 +02:00
<div class=" col-md-2">
<br>
2022-03-02 12:18:09 +01:00
<a href="<?php echo base_url(); ?>/editor.php?id_module=<?php echo module($modulo)['id']; ?>&id_record=<?php echo $rs_doc[0]['iddocumento']; ?>" class="btn btn-info"><i class="fa fa-chevron-left"></i> <?php echo tr('Vai alla fattura'); ?></a>
2019-04-12 09:20:23 +02:00
</div>
2019-04-15 11:35:09 +02:00
<?php
} else {
?>
<div class=" col-md-2">
<br>
<div class="dropdown">
<button class="btn btn-primary dropdown-toggle" type="button" data-toggle="dropdown" style="width:100%;">Fatture collegate
<span class="caret"></span></button>
<ul class="dropdown-menu">
<?php
for ($i = 0; $i < sizeof($rs_doc); ++$i) {
$rs = $dbo->fetchArray('SELECT dir FROM co_tipidocumento INNER JOIN co_documenti ON co_tipidocumento.id=co_documenti.idtipodocumento WHERE co_documenti.id='.prepare($rs_doc[$i]['iddocumento']));
$modulo = ($rs[0]['dir'] == 'entrata') ? 'Fatture di vendita' : 'Fatture di acquisto'; ?>
2022-03-02 12:18:09 +01:00
<li><a href="<?php echo base_url(); ?>/editor.php?id_module=<?php echo module($modulo)['id']; ?>&id_record=<?php echo $rs_doc[$i]['iddocumento']; ?>" class="dropdown-item"><?php echo tr('Vai alla fattura n. '.$rs_doc[$i]['numero']); ?></a></li>
2019-04-15 11:35:09 +02:00
<?php
} ?>
</ul>
</div>
</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>
2019-07-31 18:22:35 +02:00
<?php
$movimenti = $mastrino->movimenti->toArray();
2019-07-31 18:22:35 +02:00
include $structure->filepath('movimenti.php');
2019-07-31 18:22:35 +02:00
?>
2020-10-06 12:29:14 +02:00
<!-- Note -->
<div class="row">
<div class="col-md-12">
{[ "type": "textarea", "label": "<?php echo tr('Note'); ?>", "name": "note", "required": 0, "value": "$note$" ]}
</div>
2020-10-06 12:29:14 +02:00
</div>
2019-07-31 18:22:35 +02:00
</form>
2018-06-26 14:30:26 +02:00
2020-01-18 11:42:36 +01:00
{( "name": "filelist_and_upload", "id_module": "$id_module$", "id_record": "$id_record$" )}
2019-07-31 18:22:35 +02:00
<script>
$("#edit-form").submit(function(e) {
return controllaConti();
2019-07-31 18:22:35 +02:00
});
</script>
2018-07-18 15:20:10 +02:00
<a class="btn btn-danger ask" data-backto="record-list" data-idmastrino="<?php echo $record['idmastrino']; ?>">
<i class="fa fa-trash"></i> <?php echo tr('Elimina'); ?>
</a>