541 lines
20 KiB
PHP
Executable File
541 lines
20 KiB
PHP
Executable File
<?php
|
|
/*
|
|
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
|
|
* Copyright (C) DevCode s.r.l.
|
|
*
|
|
* 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/>.
|
|
*/
|
|
|
|
include_once __DIR__.'/core.php';
|
|
|
|
use Carbon\Carbon;
|
|
|
|
// Disabilitazione dei campi
|
|
$read_only = $structure->permission == 'r';
|
|
|
|
if (empty($id_record) && !empty($id_module) && empty($id_plugin)) {
|
|
redirect(base_path().'/controller.php?id_module='.$id_module);
|
|
} elseif (empty($id_record) && empty($id_module) && empty($id_plugin)) {
|
|
redirect(base_path().'/index.php');
|
|
}
|
|
|
|
include_once App::filepath('include|custom|', 'top.php');
|
|
|
|
if (!empty($id_record)) {
|
|
Util\Query::setSegments(false);
|
|
$query = Util\Query::getQuery($structure, [
|
|
'id' => $id_record,
|
|
]);
|
|
Util\Query::setSegments(true);
|
|
}
|
|
// Rimozione della condizione deleted_at IS NULL per visualizzare anche i record eliminati
|
|
if (preg_match('/[`]*([a-z0-9_]*)[`]*[\.]*([`]*deleted_at[`]* IS NULL)/i', $query, $m)) {
|
|
$conditions_to_remove = [];
|
|
|
|
$condition = trim($m[0]);
|
|
|
|
if (!empty($table_name)) {
|
|
$condition = $table_name.'.'.$condition;
|
|
}
|
|
|
|
$conditions_to_remove[] = ' AND '.$condition;
|
|
$conditions_to_remove[] = $condition.' AND ';
|
|
|
|
$query = str_replace($conditions_to_remove, '', $query);
|
|
$query = str_replace($condition, '', $query);
|
|
}
|
|
|
|
$has_access = !empty($query) ? $dbo->fetchNum($query) !== 0 : true;
|
|
|
|
if ($has_access) {
|
|
// Inclusione gli elementi fondamentali
|
|
include_once base_dir().'/actions.php';
|
|
}
|
|
|
|
if (empty($record) || !$has_access) {
|
|
echo '
|
|
<div class="text-center">
|
|
<h3 class="text-muted">'.
|
|
'<i class="fa fa-question-circle"></i> '.tr('Record non trovato').'
|
|
<br><br>
|
|
<small class="help-block">'.tr('Stai cercando di accedere ad un record eliminato o non presente').'.</small>
|
|
</h3>
|
|
<br>
|
|
|
|
<a class="btn btn-default" href="'.base_path().'/controller.php?id_module='.$id_module.'">
|
|
<i class="fa fa-chevron-left"></i> '.tr('Indietro').'
|
|
</a>
|
|
</div>';
|
|
} else {
|
|
// Widget in alto
|
|
echo '{( "name": "widgets", "id_module": "'.$id_module.'", "id_record": "'.$id_record.'", "position": "top", "place": "editor" )}';
|
|
|
|
$advanced_sessions = setting('Attiva notifica di presenza utenti sul record');
|
|
if (!empty($advanced_sessions)) {
|
|
$dbo->query('DELETE FROM zz_semaphores WHERE id_utente='.prepare(Auth::user()['id']).' AND posizione='.prepare($id_module.', '.$id_record));
|
|
|
|
$dbo->query('INSERT INTO zz_semaphores (id_utente, posizione, updated) VALUES ('.prepare(Auth::user()['id']).', '.prepare($id_module.', '.$id_record).', NOW())');
|
|
|
|
echo '
|
|
<div class="box box-warning box-solid text-center info-active hide">
|
|
<div class="box-header with-border">
|
|
<h3 class="box-title"><i class="fa fa-warning"></i> '.tr('Attenzione!').'</h3>
|
|
</div>
|
|
<div class="box-body">
|
|
<p>'.tr('I seguenti utenti stanno visualizzando questa pagina').':</p>
|
|
<ul class="list">
|
|
</ul>
|
|
<p>'.tr('Prestare attenzione prima di effettuare modifiche, poichè queste potrebbero essere perse a causa di multipli salvataggi contemporanei').'.</p>
|
|
</div>
|
|
</div>';
|
|
}
|
|
|
|
echo '
|
|
|
|
<div class="nav-tabs-custom">
|
|
<ul class="nav nav-tabs pull-right" id="tabs" role="tablist">
|
|
<li class="pull-left active header">
|
|
<a data-toggle="tab" href="#tab_0">
|
|
<i class="'.$structure['icon'].'"></i> '.$structure['title'];
|
|
|
|
// Pulsante "Aggiungi" solo se il modulo è di tipo "table" e se esiste il template per la popup
|
|
if ($structure->hasAddFile() && $structure->permission == 'rw') {
|
|
echo '
|
|
<button type="button" class="btn btn-primary" data-toggle="modal" data-title="'.tr('Aggiungi').'..." data-href="add.php?id_module='.$id_module.'&id_plugin='.$id_plugin.'"><i class="fa fa-plus"></i></button>';
|
|
}
|
|
|
|
echo '
|
|
</a>
|
|
</li>';
|
|
|
|
echo '
|
|
|
|
<li class="control-sidebar-toggle">
|
|
<a style="cursor: pointer">'.tr('Plugin').'</a>
|
|
</li>
|
|
</ul>
|
|
|
|
<div class="tab-content">
|
|
<div id="tab_0" class="tab-pane active">';
|
|
|
|
if (!empty($record['deleted_at'])) {
|
|
$operation = $dbo->fetchOne("SELECT zz_operations.created_at, username FROM zz_operations INNER JOIN zz_users ON zz_operations.id_utente = zz_users.id WHERE op='delete' AND id_module=".prepare($id_module).' AND id_record='.prepare($id_record).' ORDER BY zz_operations.created_at DESC');
|
|
|
|
$info = tr('Il record è stato eliminato il <b>_DATE_</b> da <b>_USER_</b>', [
|
|
'_DATE_' => (($operation['created_at']) ? Translator::timestampToLocale($operation['created_at']) : Translator::timestampToLocale($record['deleted_at'])),
|
|
'_USER_' => ((!empty($operation['username'])) ? $operation['username'] : 'N.D.'),
|
|
]).'. ';
|
|
|
|
echo '
|
|
<div class="alert alert-warning">
|
|
<div class="row" >
|
|
<div class="col-md-8">
|
|
<i class="fa fa-warning"></i> '.$info.'
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
$(document).ready(function(){
|
|
$("#restore, #restore-close").click(function(){
|
|
$("input[name=op]").attr("value", "restore");
|
|
$("#submit").trigger("click");
|
|
})
|
|
});
|
|
</script>';
|
|
}
|
|
|
|
// Pulsanti di default
|
|
echo '
|
|
<div id="pulsanti">
|
|
<a class="btn btn-warning" href="'.base_path().'/controller.php?id_module='.$id_module.'">
|
|
<i class="fa fa-chevron-left"></i> '.tr("Torna all'elenco").'
|
|
</a>
|
|
|
|
<div class="pull-right">
|
|
{( "name": "button", "type": "print", "id_module": "'.$id_module.'", "id_plugin": "'.$id_plugin.'", "id_record": "'.$id_record.'" )}
|
|
|
|
{( "name": "button", "type": "email", "id_module": "'.$id_module.'", "id_plugin": "'.$id_plugin.'", "id_record": "'.$id_record.'" )}
|
|
|
|
<div class="btn-group" id="save-buttons">
|
|
<a class="btn btn-success" id="'.(!empty($record['deleted_at']) ? 'restore' : 'save').'">
|
|
<i class="fa fa-'.(!empty($record['deleted_at']) ? 'undo' : 'check').'"></i> '.(!empty($record['deleted_at']) ? tr('Salva e ripristina') : tr('Salva')).'
|
|
</a>
|
|
<a type="button" class="btn btn-success dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
<span class="caret"></span>
|
|
<span class="sr-only">Toggle Dropdown</span>
|
|
</a>
|
|
<ul class="dropdown-menu dropdown-menu-right">
|
|
<li><a href="#" id="'.(!empty($record['deleted_at']) ? 'restore' : 'save').'-close">
|
|
<i class="fa fa-'.(!empty($record['deleted_at']) ? 'undo' : 'check-square-o').'"></i>
|
|
'.(!empty($record['deleted_at']) ? tr('Ripristina e chiudi') : tr('Salva e chiudi')).'
|
|
</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
$(document).ready(function(){
|
|
var form = $("#module-edit").find("form").first();
|
|
|
|
// Aggiunta del submit
|
|
form.prepend(\'<button type="submit" id="submit" class="hide"></button>\');
|
|
|
|
$("#save").click(function(){
|
|
//submitAjax(form);
|
|
|
|
$("#submit").trigger("click");
|
|
});
|
|
|
|
$("#save-close").on("click", function (){
|
|
form.find("[name=backto]").val("record-list");
|
|
$("#submit").trigger("click");
|
|
});';
|
|
|
|
// Pulsanti dinamici
|
|
if (!isMobile()) {
|
|
echo '
|
|
$("#pulsanti").affix({
|
|
offset: {
|
|
top: 200
|
|
}
|
|
});
|
|
|
|
if ($("#pulsanti").hasClass("affix")) {
|
|
$("#pulsanti").css("width", $("#tab_0").css("width"));
|
|
}
|
|
|
|
$("#pulsanti").on("affix.bs.affix", function(){
|
|
$("#pulsanti").css("width", $("#tab_0").css("width"));
|
|
});
|
|
|
|
$("#pulsanti").on("affix-top.bs.affix", function(){
|
|
$("#pulsanti").css("width", "100%");
|
|
});';
|
|
}
|
|
|
|
echo '
|
|
});
|
|
</script>
|
|
|
|
<div class="clearfix"></div>
|
|
<br>';
|
|
|
|
// Pulsanti personalizzati
|
|
$buttons = $structure->filepath('buttons.php');
|
|
if (!empty($buttons)) {
|
|
ob_start();
|
|
include $buttons;
|
|
$buttons = ob_get_clean();
|
|
|
|
echo '
|
|
<div class="pull-right" id="pulsanti-modulo">
|
|
'.$buttons.'
|
|
</div>
|
|
|
|
<div class="clearfix"></div>
|
|
<br>';
|
|
}
|
|
|
|
// Contenuti del modulo
|
|
echo '
|
|
|
|
<div id="module-edit">';
|
|
|
|
$path = $structure->getEditFile();
|
|
if (!empty($path)) {
|
|
include $path;
|
|
}
|
|
|
|
echo '
|
|
</div>
|
|
</div>';
|
|
|
|
// Campi personalizzati
|
|
echo '
|
|
|
|
<div class="hide" id="custom_fields_top-edit">
|
|
{( "name": "custom_fields", "id_module": "'.$id_module.'", "id_record": "'.$id_record.'", "position": "top" )}
|
|
</div>
|
|
|
|
<div class="hide" id="custom_fields_bottom-edit">
|
|
{( "name": "custom_fields", "id_module": "'.$id_module.'", "id_record": "'.$id_record.'" )}
|
|
</div>
|
|
|
|
<script>
|
|
$(document).ready(function(){
|
|
let form = $("#module-edit").parent().find("form").first();
|
|
|
|
// Ultima sezione/campo del form
|
|
let last = form.find(".panel").last();
|
|
|
|
if (!last.length) {
|
|
last = form.find(".box").last();
|
|
}
|
|
|
|
if (!last.length) {
|
|
last = form.find(".row").eq(-2);
|
|
}
|
|
|
|
// Campi a inizio form
|
|
aggiungiContenuto(form, "#custom_fields_top-edit", {}, true);
|
|
|
|
// Campi a fine form
|
|
aggiungiContenuto(last, "#custom_fields_bottom-edit", {});
|
|
});
|
|
</script>';
|
|
|
|
if ($structure->permission != '-' && $structure->use_notes && $user->gruppo != 'Clienti') {
|
|
echo '
|
|
<div id="tab_note" class="tab-pane">';
|
|
|
|
include base_dir().'/plugins/notes.php';
|
|
|
|
echo '
|
|
</div>';
|
|
}
|
|
|
|
if ($structure->permission != '-' && $structure->use_checklists) {
|
|
echo '
|
|
<div id="tab_checks" class="tab-pane">';
|
|
|
|
include base_dir().'/plugins/checks.php';
|
|
|
|
echo '
|
|
</div>';
|
|
}
|
|
|
|
// Informazioni sulle operazioni
|
|
if (Auth::admin()) {
|
|
echo '
|
|
<div id="tab_info" class="tab-pane">';
|
|
|
|
$operations = $dbo->fetchArray('SELECT `zz_operations`.*, `zz_users`.`username` FROM `zz_operations` JOIN `zz_users` ON `zz_operations`.`id_utente` = `zz_users`.`id` WHERE id_module = '.prepare($id_module).' AND id_record = '.prepare($id_record).' ORDER BY `created_at` DESC LIMIT 200');
|
|
|
|
if (!empty($operations)) {
|
|
echo '
|
|
<ul class="timeline">';
|
|
|
|
foreach ($operations as $operation) {
|
|
$description = $operation['op'];
|
|
$icon = 'pencil-square-o';
|
|
$color = null;
|
|
$timeline_class = null;
|
|
|
|
switch ($operation['op']) {
|
|
case 'add':
|
|
$description = tr('Creazione');
|
|
$icon = 'plus';
|
|
$color = 'success';
|
|
break;
|
|
|
|
case 'update':
|
|
$description = tr('Modifica');
|
|
$icon = 'pencil';
|
|
$color = 'info';
|
|
break;
|
|
|
|
case 'delete':
|
|
$description = tr('Eliminazione');
|
|
$icon = 'times';
|
|
$color = 'danger';
|
|
break;
|
|
|
|
case 'copy':
|
|
$description = tr('Duplicato');
|
|
$icon = 'clone';
|
|
$color = 'info';
|
|
break;
|
|
|
|
default:
|
|
$timeline_class = ' class="timeline-inverted"';
|
|
break;
|
|
}
|
|
|
|
echo '
|
|
<li '.$timeline_class.'>
|
|
<div class="timeline-badge '.$color.'"><i class="fa fa-'.$icon.'"></i></div>
|
|
<div class="timeline-panel">
|
|
<div class="timeline-heading">
|
|
<div class="row">
|
|
<div class="col-md-8">
|
|
<h4 class="timeline-title">'.$description.'</h4>
|
|
</div>
|
|
<div class="col-md-4 text-right">
|
|
<p><small class="label label-default tip" title="'.Translator::timestampToLocale($operation['created_at']).'"><i class="fa fa-clock-o"></i> '.Carbon::parse($operation['created_at'])->diffForHumans().'</small></p>
|
|
<p><small class="label label-default"><i class="fa fa-user"></i> '.$operation['username'].'</small></p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="timeline-body">
|
|
|
|
</div>
|
|
<div class="timeline-footer">
|
|
|
|
</div>
|
|
</div>
|
|
</li>';
|
|
}
|
|
|
|
echo '
|
|
</ul>';
|
|
} else {
|
|
echo '
|
|
<div class="alert alert-info">
|
|
<i class="fa fa-info-circle"></i>
|
|
<b>'.tr('Informazione:').'</b> '.tr('Nessun log disponibile per questa scheda').'.
|
|
</div>';
|
|
}
|
|
|
|
echo '
|
|
</div>';
|
|
}
|
|
|
|
// Plugin
|
|
$module_record = $record;
|
|
foreach ($plugins as $plugin) {
|
|
$record = $module_record;
|
|
|
|
echo '
|
|
<div id="tab_'.$plugin['id'].'" class="tab-pane">';
|
|
|
|
$id_plugin = $plugin['id'];
|
|
|
|
include base_dir().'/include/manager.php';
|
|
|
|
echo '
|
|
</div>';
|
|
}
|
|
|
|
$record = $module_record;
|
|
|
|
echo '
|
|
</div>
|
|
</div>';
|
|
}
|
|
|
|
redirectOperation($id_module, isset($id_parent) ? $id_parent : $id_record);
|
|
|
|
// Widget in basso
|
|
echo '{( "name": "widgets", "id_module": "'.$id_module.'", "id_record": "'.$id_record.'", "position": "right", "place": "editor" )}';
|
|
|
|
if (!empty($record)) {
|
|
echo '
|
|
<hr>
|
|
<a class="btn btn-default" href="'.base_path().'/controller.php?id_module='.$id_module.'">
|
|
<i class="fa fa-chevron-left"></i> '.tr('Indietro').'
|
|
</a>';
|
|
}
|
|
|
|
echo '
|
|
<script>';
|
|
|
|
// Se l'utente ha i permessi in sola lettura per il modulo, converto tutti i campi di testo in span
|
|
if ($read_only || !empty($block_edit)) {
|
|
$not = $read_only ? '' : '.not(".unblockable")';
|
|
|
|
echo '
|
|
$(document).ready(function(){
|
|
$("input, textarea, select", "section.content")'.$not.'.attr("readonly", "true");
|
|
$("select, input[type=checkbox]", "section.content")'.$not.'.prop("disabled", true);
|
|
$(".checkbox-buttons label", "section.content")'.$not.'.addClass("disabled");
|
|
';
|
|
|
|
// Nascondo il plugin Note interne ai clienti
|
|
if ($user->gruppo == 'Clienti') {
|
|
echo '
|
|
$("#link-tab_note").hide();';
|
|
}
|
|
|
|
if ($read_only) {
|
|
echo '
|
|
$("a.btn, button, input[type=button], input[type=submit]", "section.content").hide();
|
|
$("a.btn-info, button.btn-info, input[type=button].btn-info", "section.content").show();';
|
|
}
|
|
|
|
echo '
|
|
});';
|
|
}
|
|
?>
|
|
|
|
var content_was_modified = false;
|
|
|
|
// Controllo se digito qualche valore o cambio qualche select
|
|
$(".content input, .content textarea, .content select").bind("change paste keyup", function(event) {
|
|
if (event.keyCode >= 32) {
|
|
content_was_modified = true;
|
|
}
|
|
});
|
|
|
|
$(".content .superselect, .content .superselectajax").on("change", function (e) {
|
|
content_was_modified = true;
|
|
});
|
|
|
|
// Tolgo il controllo se sto salvando
|
|
$(".content .btn-success, .content button[type=submit]").bind("click", function() {
|
|
content_was_modified = false;
|
|
});
|
|
|
|
$("form").bind("submit", function() {
|
|
content_was_modified = false;
|
|
});
|
|
|
|
// questo controllo blocca il modulo vendita al banco, dopo la lettura con barcode, appare il messaggio di conferma
|
|
window.onbeforeunload = function(e) {
|
|
if(content_was_modified) {
|
|
var dialogText = "Uscire senza salvare?";
|
|
e.returnValue = dialogText;
|
|
$("#main_loading").fadeOut();
|
|
return dialogText;
|
|
}
|
|
};
|
|
|
|
window.addEventListener("unload", function(e) {
|
|
$("#main_loading").show();
|
|
});
|
|
|
|
|
|
<?php
|
|
if (!empty($advanced_sessions)) {
|
|
?>
|
|
|
|
function getActiveUsers(){
|
|
$.getJSON('<?php echo base_path(); ?>/ajax.php?op=active_users', {
|
|
id_module: <?php echo $id_module; ?>,
|
|
id_record: <?php echo $id_record; ?>
|
|
},
|
|
function(data) {
|
|
if (data.length != 0) {
|
|
$(".info-active").removeClass("hide");
|
|
$(".info-active .list").html("");
|
|
$.each( data, function( key, val ) {
|
|
$(".info-active .list").append("<li>"+val.username+"</li>");
|
|
});
|
|
}
|
|
else $(".info-active").addClass("hide");
|
|
});
|
|
}
|
|
|
|
getActiveUsers();
|
|
|
|
setInterval(getActiveUsers, <?php echo setting('Timeout notifica di presenza (minuti)') * 60 * 1000; ?>);
|
|
<?php
|
|
}
|
|
?>
|
|
</script>
|
|
<?php
|
|
|
|
include_once App::filepath('include|custom|', 'bottom.php');
|