1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-01-22 03:55:36 +01:00

Fix prima nota con nuova struttura pulsanti fissi + action fisso in add

This commit is contained in:
Luca 2018-04-04 01:04:55 +02:00
parent 0203fbf689
commit b5d437fc63
2 changed files with 11 additions and 7 deletions

View File

@ -2,7 +2,7 @@
include_once __DIR__.'/../../core.php'; include_once __DIR__.'/../../core.php';
?><form action="" method="post" id="add-form"> ?><form action="<?php echo ROOTDIR ?>/editor.php?id_module=<?php echo Modules::get('Prima nota')['id']; ?>" method="post" id="add-form">
<input type="hidden" name="op" value="add"> <input type="hidden" name="op" value="add">
<input type="hidden" name="backto" value="record-edit"> <input type="hidden" name="backto" value="record-edit">
<input type="hidden" name="iddocumento" value="<?php echo get('iddocumento'); ?>"> <input type="hidden" name="iddocumento" value="<?php echo get('iddocumento'); ?>">

View File

@ -10,23 +10,24 @@ include_once __DIR__.'/../../core.php';
<input type="hidden" name="iddocumento" value="<?php echo $records[0]['iddocumento']; ?>"> <input type="hidden" name="iddocumento" value="<?php echo $records[0]['iddocumento']; ?>">
<div class="row">
<?php <?php
if (!empty($records[0]['iddocumento'])) { 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'])); $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'; ?> $modulo = ($rs[0]['dir'] == 'entrata') ? 'Fatture di vendita' : 'Fatture di acquisto'; ?>
<div class="pull-left"> <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> <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> </div>
<?php <?php
} }
?> ?>
<div class="row"> <div class="col-md-3">
<div class="col-md-4">
{[ "type": "date", "label": "<?php echo tr('Data movimento'); ?>", "name": "data", "required": 1, "value": "$data$" ]} {[ "type": "date", "label": "<?php echo tr('Data movimento'); ?>", "name": "data", "required": 1, "value": "$data$" ]}
</div> </div>
<div class="col-md-8"> <div class="col-md-7">
{[ "type": "text", "label": "<?php echo tr('Causale'); ?>", "name": "descrizione", "required": 1, "value": "$descrizione$" ]} {[ "type": "text", "label": "<?php echo tr('Causale'); ?>", "name": "descrizione", "required": 1, "value": "$descrizione$" ]}
</div> </div>
</div> </div>
@ -210,12 +211,15 @@ include_once __DIR__.'/../../core.php';
if( bilancio == 0 ){ if( bilancio == 0 ){
$("#testo_aggiuntivo").removeClass('text-danger').html(""); $("#testo_aggiuntivo").removeClass('text-danger').html("");
$("button[type=submit]").removeClass('hide'); //$("button[type=submit]").removeClass('hide');
$("#save").removeClass('hide');
} }
else{ else{
$("#testo_aggiuntivo").addClass('text-danger').html("sbilancio di " + bilancio.toLocale() + " &euro;" ); $("#testo_aggiuntivo").addClass('text-danger').html("sbilancio di " + bilancio.toLocale() + " &euro;" );
$("button[type=submit]").addClass('hide'); //$("button[type=submit]").addClass('hide');
$("#save").addClass('hide');
} }
} }