Aggiunta vista "N. utenti" per il modulo "Utenti e permessi"
Migliorie minori
This commit is contained in:
parent
3fe8553de6
commit
5cfd218ae8
|
@ -195,15 +195,15 @@ if (!empty($sessioni)) {
|
||||||
if (!$is_completato) {
|
if (!$is_completato) {
|
||||||
echo '
|
echo '
|
||||||
<td class="text-center">
|
<td class="text-center">
|
||||||
<button type="button" class="btn btn-xs btn-primary" onclick="copySessione(this)">
|
<button type="button" class="btn btn-xs btn-primary tip" title="'.tr('Salva e duplica sessione').'" onclick="copySessione(this)">
|
||||||
<i class="fa fa-files-o"></i>
|
<i class="fa fa-files-o"></i>
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
<button type="button" class="btn btn-xs btn-warning tip" title="'.tr('Modifica sessione').'" onclick="modificaSessione(this)">
|
<button type="button" class="btn btn-xs btn-warning tip" title="'.tr('Salva e modifica sessione').'" onclick="modificaSessione(this)">
|
||||||
<i class="fa fa-edit"></i>
|
<i class="fa fa-edit"></i>
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
<button type="button" class="btn btn-xs btn-danger" id="delbtn_'.$sessione['id'].'" onclick="elimina_sessione(\''.$sessione['id'].'\');" title="Elimina riga" class="only_rw"><i class="fa fa-trash"></i></button>
|
<button type="button" class="btn btn-xs btn-danger tip" id="delbtn_'.$sessione['id'].'" onclick="elimina_sessione(\''.$sessione['id'].'\');" title="'.tr('Elimina sessione').'" class="only_rw"><i class="fa fa-trash"></i></button>
|
||||||
</td>';
|
</td>';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -328,7 +328,13 @@ function add_tecnici(id_tecnico) {
|
||||||
* Rimuove la sessione di lavoro dall\'intervento.
|
* Rimuove la sessione di lavoro dall\'intervento.
|
||||||
*/
|
*/
|
||||||
function elimina_sessione(id_sessione) {
|
function elimina_sessione(id_sessione) {
|
||||||
if (confirm("Eliminare sessione di lavoro?")) {
|
|
||||||
|
swal({
|
||||||
|
title: "'.tr('Eliminare la sessione di lavoro?').'",
|
||||||
|
type: "warning",
|
||||||
|
showCancelButton: true,
|
||||||
|
confirmButtonText: "'.tr('Elimina').'"
|
||||||
|
}).then(function (result) {
|
||||||
$.ajax({
|
$.ajax({
|
||||||
url: globals.rootdir + "/actions.php",
|
url: globals.rootdir + "/actions.php",
|
||||||
data: {
|
data: {
|
||||||
|
@ -341,11 +347,11 @@ function elimina_sessione(id_sessione) {
|
||||||
success: function() {
|
success: function() {
|
||||||
caricaTecnici();
|
caricaTecnici();
|
||||||
caricaCosti();
|
caricaCosti();
|
||||||
|
|
||||||
calcolaConflittiTecnici();
|
calcolaConflittiTecnici();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}).catch(swal.noop);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async function copySessione(button) {
|
async function copySessione(button) {
|
||||||
|
|
|
@ -350,7 +350,7 @@ foreach ($tecnici as $tecnico) {
|
||||||
$sessioni = Stats::monthly($sessioni, $start, $end);
|
$sessioni = Stats::monthly($sessioni, $start, $end);
|
||||||
|
|
||||||
//Colore tecnico
|
//Colore tecnico
|
||||||
$background = $tecnico['colore'];
|
$background = strtoupper($tecnico['colore']);
|
||||||
if (empty($background) || $background == '#FFFFFF') {
|
if (empty($background) || $background == '#FFFFFF') {
|
||||||
//Random color
|
//Random color
|
||||||
$background = '#'.dechex(rand(256, 16777215));
|
$background = '#'.dechex(rand(256, 16777215));
|
||||||
|
@ -403,7 +403,7 @@ $(document).ready(function() {
|
||||||
// Include a dollar sign in the ticks
|
// Include a dollar sign in the ticks
|
||||||
callback: function(value, index, values) {
|
callback: function(value, index, values) {
|
||||||
var text = "";
|
var text = "";
|
||||||
if (value<=1){
|
if (value<=1 && value!=0){
|
||||||
text = " ora";
|
text = " ora";
|
||||||
}else{
|
}else{
|
||||||
text = " ore";
|
text = " ore";
|
||||||
|
@ -424,7 +424,15 @@ $(document).ready(function() {
|
||||||
label += ": ";
|
label += ": ";
|
||||||
}
|
}
|
||||||
|
|
||||||
label += tooltipItem.xLabel+" ore (attività completate)";
|
label += tooltipItem.xLabel;
|
||||||
|
|
||||||
|
if (tooltipItem.xLabel<=1) {
|
||||||
|
label += " ora ";
|
||||||
|
}else{
|
||||||
|
label += " ore ";
|
||||||
|
}
|
||||||
|
|
||||||
|
label += "(in attività completate)";
|
||||||
|
|
||||||
return label;
|
return label;
|
||||||
}
|
}
|
||||||
|
|
|
@ -37,6 +37,7 @@ if (!empty($utenti)) {
|
||||||
<table class="table table-hover table-condensed table-striped">
|
<table class="table table-hover table-condensed table-striped">
|
||||||
<tr>
|
<tr>
|
||||||
<th>'.tr('Nome utente').'</th>
|
<th>'.tr('Nome utente').'</th>
|
||||||
|
<th>'.tr('Email').'</th>
|
||||||
<th>'.tr('Ragione sociale').'</th>
|
<th>'.tr('Ragione sociale').'</th>
|
||||||
<th>'.tr('Tipo di anagrafica').'</th>
|
<th>'.tr('Tipo di anagrafica').'</th>
|
||||||
<th>'.tr('Sedi').'</th>
|
<th>'.tr('Sedi').'</th>
|
||||||
|
@ -50,6 +51,14 @@ if (!empty($utenti)) {
|
||||||
<i class="fa fa-user"></i> '.$utente['username'].'
|
<i class="fa fa-user"></i> '.$utente['username'].'
|
||||||
</td>';
|
</td>';
|
||||||
|
|
||||||
|
if (!empty($utente['email'])) {
|
||||||
|
echo '
|
||||||
|
<td>'.$utente['email'].'</td>';
|
||||||
|
} else {
|
||||||
|
echo '
|
||||||
|
<td>-</td>';
|
||||||
|
}
|
||||||
|
|
||||||
if (!empty($utente['idanagrafica'])) {
|
if (!empty($utente['idanagrafica'])) {
|
||||||
echo '
|
echo '
|
||||||
<td>'.Modules::link('Anagrafiche', $utente['idanagrafica'], $utente['ragione_sociale']).'</td>
|
<td>'.Modules::link('Anagrafiche', $utente['idanagrafica'], $utente['ragione_sociale']).'</td>
|
||||||
|
@ -71,7 +80,7 @@ if (!empty($utenti)) {
|
||||||
// Disabilitazione utente, se diverso da id_utente #1 (admin)
|
// Disabilitazione utente, se diverso da id_utente #1 (admin)
|
||||||
if ($utente['id'] == '1') {
|
if ($utente['id'] == '1') {
|
||||||
echo '
|
echo '
|
||||||
<div data-toggle="tooltip" class="tip" title="'.tr("Non è possibile disabilitare l'utente admin").'" ><span class="btn btn-xs btn-default disabled">
|
<div data-toggle="tooltip" class="tip" title="'.tr("Non è possibile disabilitare l'utente admin").'" ><span class="btn btn-xs btn-danger disabled">
|
||||||
<i class="fa fa-eye-slash"></i>
|
<i class="fa fa-eye-slash"></i>
|
||||||
</span></div>';
|
</span></div>';
|
||||||
} elseif ($utente['enabled'] == 1) {
|
} elseif ($utente['enabled'] == 1) {
|
||||||
|
@ -95,7 +104,7 @@ if (!empty($utenti)) {
|
||||||
|
|
||||||
if ($utente['id'] == '1') {
|
if ($utente['id'] == '1') {
|
||||||
echo '
|
echo '
|
||||||
<div data-toggle="tooltip" class="tip" title="'.tr("Non è possibile gestire l'accesso API per l'utente admin").'" ><span class="btn btn-xs btn-default disabled">
|
<div data-toggle="tooltip" class="tip" title="'.tr("Non è possibile gestire l'accesso API per l'utente admin").'" ><span class="btn btn-xs btn-danger disabled">
|
||||||
<i class="fa fa-key "></i>
|
<i class="fa fa-key "></i>
|
||||||
</span></div>';
|
</span></div>';
|
||||||
} elseif (!empty($token)) {
|
} elseif (!empty($token)) {
|
||||||
|
@ -113,7 +122,7 @@ if (!empty($utenti)) {
|
||||||
// Eliminazione utente, se diverso da id_utente #1 (admin)
|
// Eliminazione utente, se diverso da id_utente #1 (admin)
|
||||||
if ($utente['id'] == '1') {
|
if ($utente['id'] == '1') {
|
||||||
echo '
|
echo '
|
||||||
<div data-toggle="tooltip" class="tip" title="'.tr("Non è possibile eliminare l'utente admin").'" ><span class="btn btn-xs btn-default disabled">
|
<div data-toggle="tooltip" class="tip" title="'.tr("Non è possibile eliminare l'utente admin").'" ><span class="btn btn-xs btn-danger disabled">
|
||||||
<i class="fa fa-trash"></i>
|
<i class="fa fa-trash"></i>
|
||||||
</span></div>';
|
</span></div>';
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -43,3 +43,7 @@ CREATE TABLE `my_componenti_articoli` ( `id` INT NOT NULL AUTO_INCREMENT, `id_im
|
||||||
|
|
||||||
-- Aggiunta vista referente in modulo attività
|
-- Aggiunta vista referente in modulo attività
|
||||||
INSERT INTO `zz_views` (`id`, `id_module`, `name`, `query`, `order`, `search`, `slow`, `format`, `search_inside`, `order_by`, `visible`, `summable`, `default`) VALUES (NULL, (SELECT `zz_modules`.`id` FROM `zz_modules` WHERE `zz_modules`.`name`='Interventi' ), 'Referente', '(SELECT an_referenti.nome FROM an_referenti WHERE an_referenti.id=in_interventi.idreferente)', '7', '1', '0', '0', '', '', '1', '0', '0');
|
INSERT INTO `zz_views` (`id`, `id_module`, `name`, `query`, `order`, `search`, `slow`, `format`, `search_inside`, `order_by`, `visible`, `summable`, `default`) VALUES (NULL, (SELECT `zz_modules`.`id` FROM `zz_modules` WHERE `zz_modules`.`name`='Interventi' ), 'Referente', '(SELECT an_referenti.nome FROM an_referenti WHERE an_referenti.id=in_interventi.idreferente)', '7', '1', '0', '0', '', '', '1', '0', '0');
|
||||||
|
|
||||||
|
-- Aggiunta vista "N. utenti" per il modulo "Utenti e permessi"
|
||||||
|
INSERT INTO `zz_views` (`id`, `id_module`, `name`, `query`, `order`, `search`, `slow`, `format`, `search_inside`, `order_by`, `visible`, `summable`, `default`) VALUES
|
||||||
|
(NULL, (SELECT `zz_modules`.`id` FROM `zz_modules` WHERE `zz_modules`.`name`='Utenti e permessi'), 'N. utenti', '(SELECT COUNT(`id`) FROM `zz_users` WHERE `idgruppo` = `zz_groups`.`id`)', 3, 1, 0, 0, '', '', 1, 0, 0);
|
||||||
|
|
Loading…
Reference in New Issue