2017-08-04 16:28:16 +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/>.
|
|
|
|
*/
|
2017-08-04 16:28:16 +02:00
|
|
|
|
|
|
|
include_once __DIR__.'/../../core.php';
|
|
|
|
|
|
|
|
// Se lo stato intervento è uno di quelli di default, non lo lascio modificare
|
2018-07-18 15:20:10 +02:00
|
|
|
if ($record['default']) {
|
2017-08-04 16:28:16 +02:00
|
|
|
$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 = '';
|
|
|
|
}
|
|
|
|
|
2018-02-22 11:07:52 +01:00
|
|
|
// Se il tipo di anagrafica è uno di quelli di default, non lo lascio modificare
|
2018-07-18 15:20:10 +02:00
|
|
|
if (!empty($record['default'])) {
|
2018-02-22 11:07:52 +01:00
|
|
|
// Disabilito il pulsante di salvataggio
|
|
|
|
echo '
|
|
|
|
<script>
|
2020-07-31 14:25:50 +02:00
|
|
|
$(document).ready(function() {
|
2021-03-15 11:10:46 +01:00
|
|
|
$("#save-buttons").hide();
|
2018-02-22 11:07:52 +01:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
'.$warning_text;
|
|
|
|
}
|
|
|
|
|
2017-08-04 16:28:16 +02:00
|
|
|
?>
|
|
|
|
|
|
|
|
<form action="" method="post">
|
|
|
|
<input type="hidden" name="backto" value="record-edit">
|
|
|
|
<input type="hidden" name="op" value="update">
|
2018-02-18 19:53:23 +01:00
|
|
|
<input type="hidden" name="id_record" value="<?php echo $id_record; ?>">
|
2017-08-04 16:28:16 +02:00
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
|
|
|
|
<div class="col-md-6">
|
2018-02-18 19:53:23 +01: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
|
|
|
|
|
2018-02-22 11:07:52 +01:00
|
|
|
// Se il tipo di anagrafica è uno di quelli di default, non lo lascio modificare
|
2018-07-18 15:20:10 +02:00
|
|
|
if (empty($record['default'])) {
|
2018-02-22 11:07:52 +01:00
|
|
|
echo '
|
|
|
|
<a class="btn btn-danger ask" data-backto="record-list">
|
|
|
|
<i class="fa fa-trash"></i> '.tr('Elimina').'
|
|
|
|
</a>';
|
2017-08-04 16:28:16 +02:00
|
|
|
}
|