Compare commits

...

5 Commits

Author SHA1 Message Date
Dasc3er 4cf5fcddbe Fix impostazione sede legale 2021-09-21 17:18:00 +02:00
Dasc3er 0946c41c13 Fix inclusione cartella temp in release 2021-09-21 17:12:39 +02:00
Dasc3er 466322ba54 Correzione set JS per checkbox disabilitati 2021-09-21 15:44:47 +02:00
Dasc3er aae183c177 Merge remote-tracking branch 'origin/master' 2021-09-21 15:34:14 +02:00
Dasc3er dee3e9b3b5 Fix impostazione JS dinamica per checkbox 2021-09-21 15:34:07 +02:00
3 changed files with 10 additions and 0 deletions

View File

@ -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;

View File

@ -399,6 +399,7 @@ function release(done) {
'!include/custom/**',
'!backup/**',
'!files/**',
'files/temp/.gitkeep',
'!logs/**',
'!config.inc.php',
'!update/structure.php',

View File

@ -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'])) {