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';
|
|
|
|
|
2018-07-18 16:12:25 +02:00
|
|
|
// Inclusione elementi fondamentali del modulo
|
2020-09-23 13:36:37 +02:00
|
|
|
include base_dir().'/actions.php';
|
2017-08-04 16:28:16 +02:00
|
|
|
|
2018-07-18 16:12:25 +02:00
|
|
|
// Controllo dei permessi
|
|
|
|
if (empty($id_plugin)) {
|
2017-08-04 16:28:16 +02:00
|
|
|
Permissions::check('rw');
|
|
|
|
}
|
|
|
|
|
2018-07-18 16:12:25 +02:00
|
|
|
// Caricamento template
|
2017-08-04 16:28:16 +02:00
|
|
|
echo '
|
|
|
|
<div id="form_'.$id_module.'-'.$id_plugin.'">
|
|
|
|
';
|
|
|
|
|
2018-09-19 10:44:32 +02:00
|
|
|
include !empty(get('edit')) ? $structure->getEditFile() : $structure->getAddFile();
|
2017-08-04 16:28:16 +02:00
|
|
|
|
|
|
|
echo '
|
|
|
|
</div>';
|
|
|
|
|
2018-02-10 17:24:16 +01:00
|
|
|
// Campi personalizzati
|
|
|
|
echo '
|
|
|
|
|
2018-02-14 18:39:41 +01:00
|
|
|
<div class="hide" id="custom_fields_top-add">
|
2018-07-03 12:24:29 +02:00
|
|
|
<input type="hidden" name="id_module" value="'.$id_module.'">
|
|
|
|
<input type="hidden" name="id_plugin" value="'.$id_plugin.'">
|
|
|
|
|
2018-02-15 17:30:42 +01:00
|
|
|
{( "name": "custom_fields", "id_module": "'.$id_module.'", "id_plugin": "'.$id_plugin.'", "position": "top", "place": "add" )}
|
2018-02-10 17:24:16 +01:00
|
|
|
</div>
|
|
|
|
|
2018-02-14 18:39:41 +01:00
|
|
|
<div class="hide" id="custom_fields_bottom-add">
|
2018-02-15 17:30:42 +01:00
|
|
|
{( "name": "custom_fields", "id_module": "'.$id_module.'", "id_plugin": "'.$id_plugin.'", "position": "bottom", "place": "add" )}
|
2018-02-10 17:24:16 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
$(document).ready(function(){
|
2021-02-23 15:47:25 +01:00
|
|
|
let form = $("#custom_fields_top-add").parent().find("form").first();
|
2019-07-26 17:40:52 +02:00
|
|
|
|
2021-02-23 15:47:25 +01:00
|
|
|
// Ultima sezione/campo del form
|
|
|
|
let last = form.find(".panel").last();
|
2018-09-24 10:51:48 +02:00
|
|
|
|
|
|
|
if (!last.length) {
|
|
|
|
last = form.find(".box").last();
|
|
|
|
}
|
|
|
|
|
2018-02-15 17:30:42 +01:00
|
|
|
if (!last.length) {
|
|
|
|
last = form.find(".row").eq(-2);
|
|
|
|
}
|
2020-02-23 15:58:30 +01:00
|
|
|
|
2021-02-23 15:47:25 +01:00
|
|
|
// Campi a inizio form
|
|
|
|
aggiungiContenuto(form, "#custom_fields_top-add", {}, true);
|
|
|
|
|
|
|
|
// Campi a fine form
|
|
|
|
aggiungiContenuto(last, "#custom_fields_bottom-add", {});
|
2018-02-10 17:24:16 +01:00
|
|
|
});
|
|
|
|
</script>';
|
|
|
|
|
2017-08-04 16:28:16 +02:00
|
|
|
if (isAjaxRequest()) {
|
|
|
|
echo '
|
|
|
|
<script>
|
|
|
|
$(document).ready(function(){
|
2019-07-05 17:10:20 +02:00
|
|
|
$("#form_'.$id_module.'-'.$id_plugin.'").find("form").submit(function () {
|
2022-02-06 10:06:48 +01:00
|
|
|
var form = input(this);
|
2020-02-05 12:40:44 +01:00
|
|
|
|
2021-03-29 18:31:23 +02:00
|
|
|
salvaForm(this, {
|
|
|
|
id_module: "'.$id_module.'",
|
|
|
|
id_plugin: "'.$id_plugin.'",
|
|
|
|
}).then(function(response) {
|
2019-07-05 17:10:20 +02:00
|
|
|
// Selezione automatica nuovo valore per il select
|
2022-02-06 10:06:48 +01:00
|
|
|
var select = input("'.get('select').'");
|
|
|
|
if (select) {
|
|
|
|
select.getElement().selectSetNew(response.id, response.text, response.data);
|
|
|
|
//select.change();
|
2017-09-13 17:08:27 +02:00
|
|
|
}
|
|
|
|
|
2022-02-06 10:06:48 +01:00
|
|
|
form.getElement().closest("div[id^=bs-popup").modal("hide");
|
2021-03-29 18:31:23 +02:00
|
|
|
})
|
2020-02-23 15:58:30 +01:00
|
|
|
|
2019-07-05 17:10:20 +02:00
|
|
|
return false;
|
|
|
|
})
|
2017-08-04 16:28:16 +02:00
|
|
|
});
|
|
|
|
</script>';
|
|
|
|
}
|
|
|
|
|
|
|
|
echo '
|
2019-07-26 17:40:52 +02:00
|
|
|
<script>$(document).ready(init)</script>';
|