122 lines
3.4 KiB
PHP
122 lines
3.4 KiB
PHP
|
<?php
|
||
|
include_once(__DIR__."/../../core.php");
|
||
|
|
||
|
?><form action="" method="post" role="form">
|
||
|
<input type="hidden" name="backto" value="record-edit">
|
||
|
<input type="hidden" name="op" value="update">
|
||
|
<input type="hidden" name="id_record" value="<?php echo $id_record ?>">
|
||
|
<div class="panel panel-<?php echo $_SESSION['profilo_pannello'] ?>">
|
||
|
<div class="clearfix"></div>
|
||
|
</br>
|
||
|
<div class="col-md-4">
|
||
|
<div class="pull-left">
|
||
|
<button type="submit" class="btn-app btn-success"><i class="fa fa-check"></i> Salva </button>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="col-md-4">
|
||
|
<div class="pull-right">
|
||
|
<div class="pull-left showcase sweet">
|
||
|
<button type="button" class="btn-app btn-danger" aria-label="Show SweetAlert2 success message" ><i class="fa fa-trash-o"></i> Elimina</span></button>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<div class="col-md-4">
|
||
|
|
||
|
</div>
|
||
|
<div class="clearfix"></div>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
<div class="clearfix"></div>
|
||
|
|
||
|
<!-- DATI ARTICOLO -->
|
||
|
<div class="panel panel-<?php echo $_SESSION['profilo_pannello'] ?>">
|
||
|
<div class="panel-heading">
|
||
|
<h3 class="panel-title">Dettaglio</h3>
|
||
|
</div>
|
||
|
|
||
|
<div class="panel-body">
|
||
|
|
||
|
<div class="row">
|
||
|
<div class="col-md-6">
|
||
|
{[ "type": "text", "label": "<?php echo _("Nome"); ?>", "name": "nome", "required": 1, "class": "", "value": "$nome$", "extra": "" ]}
|
||
|
</div>
|
||
|
<div class="col-md-2">
|
||
|
{[ "type": "text", "label": "<?php echo _("Sigla"); ?>", "name": "sigla", "required": 1, "class": "", "value": "$sigla$", "extra": "" ]}
|
||
|
</div>
|
||
|
|
||
|
</div>
|
||
|
<div class="row">
|
||
|
<div class="col-md-12">
|
||
|
{[ "type": "text", "label": "<?php echo _("Descrizione"); ?>", "name": "descrizione", "required": 0, "class": "", "value": "$descrizione$", "extra": "" ]}
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</form>
|
||
|
|
||
|
<!-- TECNICI -->
|
||
|
<div class="panel panel-<?php echo $_SESSION['profilo_pannello'] ?>">
|
||
|
|
||
|
<div class="panel-heading">
|
||
|
<div class="row">
|
||
|
<div class="col-md-6">
|
||
|
<h3 class="panel-title">Magazzino </h3>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<div class="panel-body">
|
||
|
|
||
|
<div class="row">
|
||
|
|
||
|
|
||
|
|
||
|
<div class="col-md-6">
|
||
|
<table class="table table-striped table-hover table-condensed">
|
||
|
<tr>
|
||
|
<th>Articolo</th>
|
||
|
<th width="20%">Q.tà</th>
|
||
|
<th width="20%">prezzo di vendita</th>
|
||
|
<th width="5%"></th>
|
||
|
</tr>
|
||
|
|
||
|
<?php include($docroot."/modules/magazzini/row-list-articoli.php"); ?>
|
||
|
</table>
|
||
|
|
||
|
<div class="pull-left">
|
||
|
<a class="btn btn-sm btn-primary" data-href="<?php echo $rootdir ?>/modules/magazzini/add_articolo.php?idmagazzino=<?php echo $id_record ?>" data-toggle="modal" data-title="Aggiungi articoli" data-target="#bs-popup"><i class="fa fa-plus"></i> Sposta Articolo a magazzino</a><br>
|
||
|
</div>
|
||
|
<div class="clearfix"></div>
|
||
|
</div>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<form action="" method="post" role="form" id="form-delete">
|
||
|
<input type="hidden" name="backto" value="record-list">
|
||
|
<input type="hidden" name="op" value="delete">
|
||
|
<input type="hidden" name="id_record" value="<?php echo $id_record; ?>">
|
||
|
|
||
|
</form>
|
||
|
|
||
|
<script>
|
||
|
$('.showcase.sweet button').on('click', () => {
|
||
|
swal({
|
||
|
title: 'Sei sicuro?',
|
||
|
text: "Eliminare questo elemento!",
|
||
|
type: 'warning',
|
||
|
showCancelButton: true,
|
||
|
confirmButtonColor: '#3085d6',
|
||
|
cancelButtonColor: '#d33',
|
||
|
confirmButtonText: 'Conferma!'
|
||
|
}).then((result) => {
|
||
|
if (result.value) {
|
||
|
{ $('#form-delete').submit(); }
|
||
|
}
|
||
|
})
|
||
|
})
|
||
|
</script>
|