Compare commits
5 Commits
17bed5c5a9
...
4cf5fcddbe
Author | SHA1 | Date |
---|---|---|
Dasc3er | 4cf5fcddbe | |
Dasc3er | 0946c41c13 | |
Dasc3er | 466322ba54 | |
Dasc3er | aae183c177 | |
Dasc3er | dee3e9b3b5 |
|
@ -293,6 +293,14 @@ Input.prototype.set = function (value) {
|
|||
CKEDITOR.instances[name].setData(value);
|
||||
} else {
|
||||
this.element.val(value).trigger("change");
|
||||
|
||||
// Impostazione valore per checkbox
|
||||
let group = this.element.closest(".form-group");
|
||||
if (group.find("input[type=checkbox]").length) {
|
||||
value = value === true || parseInt(value) !== 1;
|
||||
group.find("[type=hidden]").val(+value).trigger('change')
|
||||
group.find("[type=checkbox]").prop("checked", value);
|
||||
}
|
||||
}
|
||||
|
||||
return this;
|
||||
|
|
|
@ -399,6 +399,7 @@ function release(done) {
|
|||
'!include/custom/**',
|
||||
'!backup/**',
|
||||
'!files/**',
|
||||
'files/temp/.gitkeep',
|
||||
'!logs/**',
|
||||
'!config.inc.php',
|
||||
'!update/structure.php',
|
||||
|
|
|
@ -216,6 +216,7 @@ class Interventi extends AppResource
|
|||
$record->richiesta = $data['richiesta'];
|
||||
$record->descrizione = $data['descrizione'];
|
||||
$record->informazioniaggiuntive = $data['informazioni_aggiuntive'];
|
||||
$record->idsede_destinazione = $data['id_sede'] ?: 0;
|
||||
|
||||
// Salvataggio firma eventuale
|
||||
if (empty($record->firma_nome) && !empty($data['firma_nome'])) {
|
||||
|
|
Loading…
Reference in New Issue