2017-08-04 16:28:16 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
include_once __DIR__.'/../../core.php';
|
|
|
|
|
|
|
|
// Se lo stato intervento è uno di quelli di default, non lo lascio modificare
|
|
|
|
if ($records[0]['default']) {
|
|
|
|
$attr = "readonly='true'";
|
2017-09-04 12:02:29 +02:00
|
|
|
$warning_text = '<div class="alert alert-warning">'.tr('Non puoi modificare questo tipo di anagrafica!').'</div>';
|
2017-08-04 16:28:16 +02:00
|
|
|
} else {
|
|
|
|
$attr = '';
|
|
|
|
$warning_text = '';
|
|
|
|
}
|
|
|
|
|
|
|
|
echo $warning_text;
|
|
|
|
?>
|
|
|
|
|
|
|
|
<form action="" method="post">
|
|
|
|
<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 ?>">
|
|
|
|
|
|
|
|
<?php
|
|
|
|
// Se il tipo di anagrafica è uno di quelli di default, non lo lascio modificare
|
|
|
|
if (!$records[0]['default']) {
|
|
|
|
?>
|
|
|
|
<div class="pull-right">
|
2017-09-04 12:02:29 +02:00
|
|
|
<button type="submit" class="btn btn-success"><i class="fa fa-check"></i> <?php echo tr('Salva modifiche'); ?></button>
|
2017-08-04 16:28:16 +02:00
|
|
|
</div>
|
|
|
|
<div class="clearfix"></div>
|
|
|
|
<?php
|
|
|
|
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
|
|
|
|
<div class="col-md-6">
|
2017-09-04 12:02:29 +02:00
|
|
|
{[ "type": "text", "label": "<?php echo tr('Descrizione'); ?>", "name": "descrizione", "required": 1, "value": "$descrizione$", "extra": "<?php echo $attr ?>" ]}
|
2017-08-04 16:28:16 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
<?php
|
|
|
|
// Se il tipo di anagrafica è uno di quelli di default, non lo lascio modificare
|
|
|
|
if (!$records[0]['default']) {
|
|
|
|
?>
|
|
|
|
<a class="btn btn-danger ask" data-backto="record-list">
|
2017-09-04 12:02:29 +02:00
|
|
|
<i class="fa fa-trash"></i> <?php echo tr('Elimina') ?>
|
2017-08-04 16:28:16 +02:00
|
|
|
</a>
|
|
|
|
|
|
|
|
<?php
|
|
|
|
|
|
|
|
}
|