From 0029d93817c19e2f397f6baed3b10c141837deb8 Mon Sep 17 00:00:00 2001 From: Luca Date: Fri, 16 Feb 2018 18:15:36 +0100 Subject: [PATCH 1/4] Fix filtri dashboard --- modules/dashboard/edit.php | 139 ++++++--- modules/dashboard/edit__.php | 571 +++++++++++++++++++++++++++++++++++ 2 files changed, 661 insertions(+), 49 deletions(-) create mode 100644 modules/dashboard/edit__.php diff --git a/modules/dashboard/edit.php b/modules/dashboard/edit.php index 65e36d6d2..5b1dda892 100644 --- a/modules/dashboard/edit.php +++ b/modules/dashboard/edit.php @@ -61,8 +61,8 @@ for ($i = 0; $i < count($rs); ++$i) { ++$count; } } - - $checks .= "
  • \n"; + + $checks .= "
  • \n"; $allchecksstati .= "session_set_array( 'dashboard,idstatiintervento', '".$rs[$i]['id']."', 0 ); "; } @@ -115,8 +115,9 @@ for ($i = 0; $i < count($rs); ++$i) { ++$count; } } - - $checks .= "
  • \n"; + + + $checks .= "
  • \n"; $allcheckstipi .= "session_set_array( 'dashboard,idtipiintervento', '".$rs[$i]['id']."', 0 ); "; } @@ -173,7 +174,9 @@ for ($i = 0; $i < count($rs); ++$i) { } } - $checks .= "
  • \n"; + + + $checks .= "
  • \n"; $allchecktecnici .= "session_set_array( 'dashboard,idtecnici', '".$rs[$i]['id']."', 0 ); "; } @@ -195,8 +198,8 @@ if ($total > 0) { ++$count; } } - - $checks .= "
  • \n"; + + $checks .= "
  • \n"; $allchecktecnici .= "session_set_array( 'dashboard,idtecnici', '".$rs[$i]['id']."', 0 ); "; } // end for @@ -248,7 +251,7 @@ for ($i = 0; $i < count($rs); ++$i) { } } - $checks .= "
  • \n"; + $checks .= "
  • \n"; $allcheckzone .= "session_set_array( 'dashboard,idzone', '".$rs[$i]['id']."', 0 ); "; } @@ -324,80 +327,118 @@ if ($vista == 'mese') { $(document).ready(function() { // Comandi seleziona tutti $('#selectallstati').click(function(event) { - $(this).parent().parent().find('li input[type=checkbox]').each(function() { //loop through each checkbox - this.checked = true; + + $(this).parent().parent().find('li input[type=checkbox]').each(function(i) { //loop through each checkbox + this.checked = true; + $.when (session_set_array( 'dashboard,idstatiintervento', this.value, 0 )).promise().done(function() { + $('#calendar').fullCalendar('refetchEvents'); + }); + + i++; + update_counter( 'idstati_count',i); + }); - update_counter( 'idstati_count', $('#idstati_ul').find('input:checked').length ); - $('#calendar').fullCalendar('refetchEvents'); }); $('#selectalltipi').click(function(event) { - $(this).parent().parent().find('li input[type=checkbox]').each(function() { //loop through each checkbox - this.checked = true; - }); + + $(this).parent().parent().find('li input[type=checkbox]').each(function(i) { //loop through each checkbox + this.checked = true; + $.when (session_set_array( 'dashboard,idtipiintervento', this.value, 0 )).promise().done(function() { + $('#calendar').fullCalendar('refetchEvents'); + }); + i++; + update_counter( 'idtipi_count', i); - update_counter( 'idtipi_count', $('#idtipi_ul').find('input:checked').length ); - $('#calendar').fullCalendar('refetchEvents'); + }); + }); $('#selectalltecnici').click(function(event) { - $(this).parent().parent().find('li input[type=checkbox]').each(function() { //loop through each checkbox - this.checked = true; + + $(this).parent().parent().find('li input[type=checkbox]').each(function(i) { //loop through each checkbox + this.checked = true; + $.when (session_set_array( 'dashboard,idtecnici', this.value, 0 )).promise().done(function() { + $('#calendar').fullCalendar('refetchEvents'); + }); + i++; + update_counter( 'idtecnici_count', i); }); - - update_counter( 'idtecnici_count', $('#idtecnici_ul').find('input:checked').length ); - $('#calendar').fullCalendar('refetchEvents'); + }); $('#selectallzone').click(function(event) { - $(this).parent().parent().find('li input[type=checkbox]').each(function() { //loop through each checkbox - this.checked = true; - }); + + $(this).parent().parent().find('li input[type=checkbox]').each(function(i) { //loop through each checkbox + this.checked = true; + $.when (session_set_array( 'dashboard,idzone', this.value, 0 )).promise().done(function() { + $('#calendar').fullCalendar('refetchEvents'); + }); + + i++ + update_counter( 'idzone_count', i); - update_counter( 'idzone_count', $('#idzone_ul').find('input:checked').length ); - $('#calendar').fullCalendar('refetchEvents'); + }); + }); // Comandi deseleziona tutti $('#deselectallstati').click(function(event) { - $(this).parent().parent().find('li input[type=checkbox]').each(function() { //loop through each checkbox - if( this.checked == true ) session_set_array( 'dashboard,idstatiintervento', this.value, 1 ); - this.checked = false; - }); - update_counter( 'idstati_count', $('#idstati_ul').find('input:checked').length ); - $('#calendar').fullCalendar('refetchEvents'); + $(this).parent().parent().find('li input[type=checkbox]').each(function() { //loop through each checkbox + this.checked = false; + $.when (session_set_array( 'dashboard,idstatiintervento', this.value, 1 )).promise().done(function() { + $('#calendar').fullCalendar('refetchEvents'); + }); + + update_counter( 'idstati_count', 0); + + }); + }); $('#deselectalltipi').click(function(event) { - $(this).parent().parent().find('li input[type=checkbox]').each(function() { //loop through each checkbox - if( this.checked == true ) session_set_array( 'dashboard,idtipiintervento', this.value, 1 ); - this.checked = false; - }); + + $(this).parent().parent().find('li input[type=checkbox]').each(function() { //loop through each checkbox + this.checked = false; + $.when (session_set_array( 'dashboard,idtipiintervento', this.value, 1 )).promise().done(function() { + $('#calendar').fullCalendar('refetchEvents'); + }); + + + update_counter( 'idtipi_count', 0); - update_counter( 'idtipi_count', $('#idtipi_ul').find('input:checked').length ); - $('#calendar').fullCalendar('refetchEvents'); + }); + }); $('#deselectalltecnici').click(function(event) { - $(this).parent().parent().find('li input[type=checkbox]').each(function() { //loop through each checkbox - if( this.checked == true ) session_set_array( 'dashboard,idtecnici', this.value, 1 ); - this.checked = false; + + $(this).parent().parent().find('li input[type=checkbox]').each(function() { //loop through each checkbox + this.checked = false; + $.when (session_set_array( 'dashboard,idtecnici', this.value, 1 )).promise().done(function() { + $('#calendar').fullCalendar('refetchEvents'); + }); + + update_counter( 'idtecnici_count', 0); + }); - update_counter( 'idtecnici_count', $('#idtecnici_ul').find('input:checked').length ); - $('#calendar').fullCalendar('refetchEvents'); }); $('#deselectallzone').click(function(event) { - $(this).parent().parent().find('li input[type=checkbox]').each(function() { //loop through each checkbox - if( this.checked == true ) session_set_array( 'dashboard,idzone', this.value, 1 ); - this.checked = false; + + $(this).parent().parent().find('li input[type=checkbox]').each(function() { //loop through each checkbox + this.checked = false; + $.when (session_set_array( 'dashboard,idzone', this.value, 1 )).promise().done(function() { + $('#calendar').fullCalendar('refetchEvents'); + }); + + update_counter( 'idzone_count', 0); + }); - update_counter( 'idzone_count', $('#idzone_ul').find('input:checked').length ); - $('#calendar').fullCalendar('refetchEvents'); }); // Creazione del calendario diff --git a/modules/dashboard/edit__.php b/modules/dashboard/edit__.php new file mode 100644 index 000000000..65e36d6d2 --- /dev/null +++ b/modules/dashboard/edit__.php @@ -0,0 +1,571 @@ +fetchArray("SELECT an_anagrafiche.idanagrafica AS id FROM an_anagrafiche INNER JOIN (an_tipianagrafiche_anagrafiche INNER JOIN an_tipianagrafiche ON an_tipianagrafiche_anagrafiche.idtipoanagrafica=an_tipianagrafiche.idtipoanagrafica) ON an_anagrafiche.idanagrafica=an_tipianagrafiche_anagrafiche.idanagrafica WHERE deleted=0 AND descrizione='Tecnico'"); + + $_SESSION['dashboard']['idtecnici'] = ["'-1'"]; + + for ($i = 0; $i < count($rs); ++$i) { + $_SESSION['dashboard']['idtecnici'][] = "'".$rs[$i]['id']."'"; + } +} + +if (!isset($_SESSION['dashboard']['idstatiintervento'])) { + $rs = $dbo->fetchArray('SELECT idstatointervento AS id, descrizione FROM in_statiintervento'); + + $_SESSION['dashboard']['idstatiintervento'] = ["'-1'"]; + + for ($i = 0; $i < count($rs); ++$i) { + $_SESSION['dashboard']['idstatiintervento'][] = "'".$rs[$i]['id']."'"; + } +} + +if (!isset($_SESSION['dashboard']['idtipiintervento'])) { + $rs = $dbo->fetchArray('SELECT idtipointervento AS id, descrizione FROM in_tipiintervento'); + + $_SESSION['dashboard']['idtipiintervento'] = ["'-1'"]; + + for ($i = 0; $i < count($rs); ++$i) { + $_SESSION['dashboard']['idtipiintervento'][] = "'".$rs[$i]['id']."'"; + } +} + +if (!isset($_SESSION['dashboard']['idzone'])) { + $rs = $dbo->fetchArray('SELECT id, descrizione FROM an_zone'); + + $_SESSION['dashboard']['idzone'] = ["'-1'"]; + + for ($i = 0; $i < count($rs); ++$i) { + $_SESSION['dashboard']['idzone'][] = "'".$rs[$i]['id']."'"; + } +} + +// Stati intervento +$checks = ''; +$count = 0; +$total = 0; + +$rs = $dbo->fetchArray('SELECT idstatointervento AS id, descrizione, colore FROM in_statiintervento ORDER BY descrizione ASC'); +$total = count($rs); + +$allchecksstati = ''; +for ($i = 0; $i < count($rs); ++$i) { + $attr = ''; + + foreach ($_SESSION['dashboard']['idstatiintervento'] as $idx => $val) { + if ($val == "'".$rs[$i]['id']."'") { + $attr = 'checked="checked"'; + ++$count; + } + } + + $checks .= "
  • \n"; + + $allchecksstati .= "session_set_array( 'dashboard,idstatiintervento', '".$rs[$i]['id']."', 0 ); "; +} + +if ($count == $total) { + $class = 'btn-success'; +} elseif ($count == 0) { + $class = 'btn-danger'; +} else { + $class = 'btn-warning'; +} + +if ($total == 0) { + $class = 'btn-primary disabled'; +} +?> + + +
    + + + +fetchArray('SELECT idtipointervento AS id, descrizione FROM in_tipiintervento ORDER BY descrizione ASC'); +$total = count($rs); + +$allcheckstipi = ''; +for ($i = 0; $i < count($rs); ++$i) { + $attr = ''; + + foreach ($_SESSION['dashboard']['idtipiintervento'] as $idx => $val) { + if ($val == "'".$rs[$i]['id']."'") { + $attr = 'checked="checked"'; + ++$count; + } + } + + $checks .= "
  • \n"; + + $allcheckstipi .= "session_set_array( 'dashboard,idtipiintervento', '".$rs[$i]['id']."', 0 ); "; +} + +if ($count == $total) { + $class = 'btn-success'; +} elseif ($count == 0) { + $class = 'btn-danger'; +} else { + $class = 'btn-warning'; +} + +if ($total == 0) { + $class = 'btn-primary disabled'; +} +?> + + + +fetchArray("SELECT an_anagrafiche.idanagrafica AS id, ragione_sociale FROM an_anagrafiche INNER JOIN (an_tipianagrafiche_anagrafiche INNER JOIN an_tipianagrafiche ON an_tipianagrafiche_anagrafiche.idtipoanagrafica=an_tipianagrafiche.idtipoanagrafica) ON an_anagrafiche.idanagrafica=an_tipianagrafiche_anagrafiche.idanagrafica +LEFT OUTER JOIN in_interventi_tecnici ON in_interventi_tecnici.idtecnico = an_anagrafiche.idanagrafica INNER JOIN in_interventi ON in_interventi_tecnici.idintervento=in_interventi.id +WHERE an_anagrafiche.deleted=0 AND an_tipianagrafiche.descrizione='Tecnico' ".Modules::getAdditionalsQuery('Interventi')." GROUP BY an_anagrafiche.idanagrafica ORDER BY ragione_sociale ASC"); +$total = count($rs); + +$totale_tecnici += $total; + +$allchecktecnici = ''; +for ($i = 0; $i < count($rs); ++$i) { + $attr = ''; + + foreach ($_SESSION['dashboard']['idtecnici'] as $idx => $val) { + if ($val == "'".$rs[$i]['id']."'") { + $attr = 'checked="checked"'; + ++$count; + } + } + + $checks .= "
  • \n"; + + $allchecktecnici .= "session_set_array( 'dashboard,idtecnici', '".$rs[$i]['id']."', 0 ); "; +} + +// TECNICI ELIMINATI +$rs = $dbo->fetchArray("SELECT an_anagrafiche.idanagrafica AS id, ragione_sociale FROM an_anagrafiche INNER JOIN (an_tipianagrafiche_anagrafiche INNER JOIN an_tipianagrafiche ON an_tipianagrafiche_anagrafiche.idtipoanagrafica=an_tipianagrafiche.idtipoanagrafica) ON an_anagrafiche.idanagrafica=an_tipianagrafiche_anagrafiche.idanagrafica WHERE deleted=1 AND descrizione='Tecnico' ORDER BY ragione_sociale ASC"); +$total = count($rs); + +$totale_tecnici += $total; + +if ($total > 0) { + $checks .= "

  • Tecnici eliminati:
  • \n"; + for ($i = 0; $i < count($rs); ++$i) { + $attr = ''; + + foreach ($_SESSION['dashboard']['idtecnici'] as $idx => $val) { + if ($val == "'".$rs[$i]['id']."'") { + $attr = 'checked="checked"'; + ++$count; + } + } + + $checks .= "
  • \n"; + + $allchecktecnici .= "session_set_array( 'dashboard,idtecnici', '".$rs[$i]['id']."', 0 ); "; + } // end for +} // end if + +if ($count == $totale_tecnici) { + $class = 'btn-success'; +} elseif ($count == 0) { + $class = 'btn-danger'; +} else { + $class = 'btn-warning'; +} + +if ($totale_tecnici == 0) { + $class = 'btn-primary disabled'; +} + +?> + + + + +fetchArray('SELECT id, descrizione FROM an_zone ORDER BY descrizione ASC'); +$total = count($rs); + +for ($i = 0; $i < count($rs); ++$i) { + $attr = ''; + + foreach ($_SESSION['dashboard']['idzone'] as $idx => $val) { + if ($val == "'".$rs[$i]['id']."'") { + $attr = 'checked="checked"'; + ++$count; + } + } + + $checks .= "
  • \n"; + + $allcheckzone .= "session_set_array( 'dashboard,idzone', '".$rs[$i]['id']."', 0 ); "; +} + +if ($count == $total) { + $class = 'btn-success'; +} elseif ($count == 0) { + $class = 'btn-danger'; +} else { + $class = 'btn-warning'; +} + +if ($total == 0) { + $class = 'btn-primary disabled'; +} +?> + + +
    +
    +fetchArray($qp); + +if (!empty($rsp)) { + echo ' +
    +
    '; +} + +echo ' +
    '; + +if (!empty($rsp)) { + echo ' +
    + + +
    '; +} + +$vista = get_var('Vista dashboard'); +if ($vista == 'mese') { + $def = 'month'; +} elseif ($vista == 'giorno') { + $def = 'agendaDay'; +} else { + $def = 'agendaWeek'; +} +?> + + From 7a1e01f082497a12f39f0350577cb710970f9f30 Mon Sep 17 00:00:00 2001 From: Luca Date: Fri, 16 Feb 2018 18:16:17 +0100 Subject: [PATCH 2/4] Rimosso file caricato per errore --- modules/dashboard/edit__.php | 571 ----------------------------------- 1 file changed, 571 deletions(-) delete mode 100644 modules/dashboard/edit__.php diff --git a/modules/dashboard/edit__.php b/modules/dashboard/edit__.php deleted file mode 100644 index 65e36d6d2..000000000 --- a/modules/dashboard/edit__.php +++ /dev/null @@ -1,571 +0,0 @@ -fetchArray("SELECT an_anagrafiche.idanagrafica AS id FROM an_anagrafiche INNER JOIN (an_tipianagrafiche_anagrafiche INNER JOIN an_tipianagrafiche ON an_tipianagrafiche_anagrafiche.idtipoanagrafica=an_tipianagrafiche.idtipoanagrafica) ON an_anagrafiche.idanagrafica=an_tipianagrafiche_anagrafiche.idanagrafica WHERE deleted=0 AND descrizione='Tecnico'"); - - $_SESSION['dashboard']['idtecnici'] = ["'-1'"]; - - for ($i = 0; $i < count($rs); ++$i) { - $_SESSION['dashboard']['idtecnici'][] = "'".$rs[$i]['id']."'"; - } -} - -if (!isset($_SESSION['dashboard']['idstatiintervento'])) { - $rs = $dbo->fetchArray('SELECT idstatointervento AS id, descrizione FROM in_statiintervento'); - - $_SESSION['dashboard']['idstatiintervento'] = ["'-1'"]; - - for ($i = 0; $i < count($rs); ++$i) { - $_SESSION['dashboard']['idstatiintervento'][] = "'".$rs[$i]['id']."'"; - } -} - -if (!isset($_SESSION['dashboard']['idtipiintervento'])) { - $rs = $dbo->fetchArray('SELECT idtipointervento AS id, descrizione FROM in_tipiintervento'); - - $_SESSION['dashboard']['idtipiintervento'] = ["'-1'"]; - - for ($i = 0; $i < count($rs); ++$i) { - $_SESSION['dashboard']['idtipiintervento'][] = "'".$rs[$i]['id']."'"; - } -} - -if (!isset($_SESSION['dashboard']['idzone'])) { - $rs = $dbo->fetchArray('SELECT id, descrizione FROM an_zone'); - - $_SESSION['dashboard']['idzone'] = ["'-1'"]; - - for ($i = 0; $i < count($rs); ++$i) { - $_SESSION['dashboard']['idzone'][] = "'".$rs[$i]['id']."'"; - } -} - -// Stati intervento -$checks = ''; -$count = 0; -$total = 0; - -$rs = $dbo->fetchArray('SELECT idstatointervento AS id, descrizione, colore FROM in_statiintervento ORDER BY descrizione ASC'); -$total = count($rs); - -$allchecksstati = ''; -for ($i = 0; $i < count($rs); ++$i) { - $attr = ''; - - foreach ($_SESSION['dashboard']['idstatiintervento'] as $idx => $val) { - if ($val == "'".$rs[$i]['id']."'") { - $attr = 'checked="checked"'; - ++$count; - } - } - - $checks .= "
  • \n"; - - $allchecksstati .= "session_set_array( 'dashboard,idstatiintervento', '".$rs[$i]['id']."', 0 ); "; -} - -if ($count == $total) { - $class = 'btn-success'; -} elseif ($count == 0) { - $class = 'btn-danger'; -} else { - $class = 'btn-warning'; -} - -if ($total == 0) { - $class = 'btn-primary disabled'; -} -?> - - -
    - - - -fetchArray('SELECT idtipointervento AS id, descrizione FROM in_tipiintervento ORDER BY descrizione ASC'); -$total = count($rs); - -$allcheckstipi = ''; -for ($i = 0; $i < count($rs); ++$i) { - $attr = ''; - - foreach ($_SESSION['dashboard']['idtipiintervento'] as $idx => $val) { - if ($val == "'".$rs[$i]['id']."'") { - $attr = 'checked="checked"'; - ++$count; - } - } - - $checks .= "
  • \n"; - - $allcheckstipi .= "session_set_array( 'dashboard,idtipiintervento', '".$rs[$i]['id']."', 0 ); "; -} - -if ($count == $total) { - $class = 'btn-success'; -} elseif ($count == 0) { - $class = 'btn-danger'; -} else { - $class = 'btn-warning'; -} - -if ($total == 0) { - $class = 'btn-primary disabled'; -} -?> - - - -fetchArray("SELECT an_anagrafiche.idanagrafica AS id, ragione_sociale FROM an_anagrafiche INNER JOIN (an_tipianagrafiche_anagrafiche INNER JOIN an_tipianagrafiche ON an_tipianagrafiche_anagrafiche.idtipoanagrafica=an_tipianagrafiche.idtipoanagrafica) ON an_anagrafiche.idanagrafica=an_tipianagrafiche_anagrafiche.idanagrafica -LEFT OUTER JOIN in_interventi_tecnici ON in_interventi_tecnici.idtecnico = an_anagrafiche.idanagrafica INNER JOIN in_interventi ON in_interventi_tecnici.idintervento=in_interventi.id -WHERE an_anagrafiche.deleted=0 AND an_tipianagrafiche.descrizione='Tecnico' ".Modules::getAdditionalsQuery('Interventi')." GROUP BY an_anagrafiche.idanagrafica ORDER BY ragione_sociale ASC"); -$total = count($rs); - -$totale_tecnici += $total; - -$allchecktecnici = ''; -for ($i = 0; $i < count($rs); ++$i) { - $attr = ''; - - foreach ($_SESSION['dashboard']['idtecnici'] as $idx => $val) { - if ($val == "'".$rs[$i]['id']."'") { - $attr = 'checked="checked"'; - ++$count; - } - } - - $checks .= "
  • \n"; - - $allchecktecnici .= "session_set_array( 'dashboard,idtecnici', '".$rs[$i]['id']."', 0 ); "; -} - -// TECNICI ELIMINATI -$rs = $dbo->fetchArray("SELECT an_anagrafiche.idanagrafica AS id, ragione_sociale FROM an_anagrafiche INNER JOIN (an_tipianagrafiche_anagrafiche INNER JOIN an_tipianagrafiche ON an_tipianagrafiche_anagrafiche.idtipoanagrafica=an_tipianagrafiche.idtipoanagrafica) ON an_anagrafiche.idanagrafica=an_tipianagrafiche_anagrafiche.idanagrafica WHERE deleted=1 AND descrizione='Tecnico' ORDER BY ragione_sociale ASC"); -$total = count($rs); - -$totale_tecnici += $total; - -if ($total > 0) { - $checks .= "

  • Tecnici eliminati:
  • \n"; - for ($i = 0; $i < count($rs); ++$i) { - $attr = ''; - - foreach ($_SESSION['dashboard']['idtecnici'] as $idx => $val) { - if ($val == "'".$rs[$i]['id']."'") { - $attr = 'checked="checked"'; - ++$count; - } - } - - $checks .= "
  • \n"; - - $allchecktecnici .= "session_set_array( 'dashboard,idtecnici', '".$rs[$i]['id']."', 0 ); "; - } // end for -} // end if - -if ($count == $totale_tecnici) { - $class = 'btn-success'; -} elseif ($count == 0) { - $class = 'btn-danger'; -} else { - $class = 'btn-warning'; -} - -if ($totale_tecnici == 0) { - $class = 'btn-primary disabled'; -} - -?> - - - - -fetchArray('SELECT id, descrizione FROM an_zone ORDER BY descrizione ASC'); -$total = count($rs); - -for ($i = 0; $i < count($rs); ++$i) { - $attr = ''; - - foreach ($_SESSION['dashboard']['idzone'] as $idx => $val) { - if ($val == "'".$rs[$i]['id']."'") { - $attr = 'checked="checked"'; - ++$count; - } - } - - $checks .= "
  • \n"; - - $allcheckzone .= "session_set_array( 'dashboard,idzone', '".$rs[$i]['id']."', 0 ); "; -} - -if ($count == $total) { - $class = 'btn-success'; -} elseif ($count == 0) { - $class = 'btn-danger'; -} else { - $class = 'btn-warning'; -} - -if ($total == 0) { - $class = 'btn-primary disabled'; -} -?> - - -
    -
    -fetchArray($qp); - -if (!empty($rsp)) { - echo ' -
    -
    '; -} - -echo ' -
    '; - -if (!empty($rsp)) { - echo ' -
    - - -
    '; -} - -$vista = get_var('Vista dashboard'); -if ($vista == 'mese') { - $def = 'month'; -} elseif ($vista == 'giorno') { - $def = 'agendaDay'; -} else { - $def = 'agendaWeek'; -} -?> - - From fd87ab9f0a468e17b7ec3802d16d3b7efd445e9f Mon Sep 17 00:00:00 2001 From: Luca Date: Fri, 16 Feb 2018 18:27:15 +0100 Subject: [PATCH 3/4] Fix filtri dashboard --- modules/dashboard/edit.php | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/modules/dashboard/edit.php b/modules/dashboard/edit.php index 5b1dda892..a499cd391 100644 --- a/modules/dashboard/edit.php +++ b/modules/dashboard/edit.php @@ -62,7 +62,7 @@ for ($i = 0; $i < count($rs); ++$i) { } } - $checks .= "
  • \n"; + $checks .= "
  • \n"; $allchecksstati .= "session_set_array( 'dashboard,idstatiintervento', '".$rs[$i]['id']."', 0 ); "; } @@ -117,7 +117,7 @@ for ($i = 0; $i < count($rs); ++$i) { } - $checks .= "
  • \n"; + $checks .= "
  • \n"; $allcheckstipi .= "session_set_array( 'dashboard,idtipiintervento', '".$rs[$i]['id']."', 0 ); "; } @@ -176,7 +176,7 @@ for ($i = 0; $i < count($rs); ++$i) { - $checks .= "
  • \n"; + $checks .= "
  • \n"; $allchecktecnici .= "session_set_array( 'dashboard,idtecnici', '".$rs[$i]['id']."', 0 ); "; } @@ -199,7 +199,7 @@ if ($total > 0) { } } - $checks .= "
  • \n"; + $checks .= "
  • \n"; $allchecktecnici .= "session_set_array( 'dashboard,idtecnici', '".$rs[$i]['id']."', 0 ); "; } // end for @@ -330,7 +330,7 @@ if ($vista == 'mese') { $(this).parent().parent().find('li input[type=checkbox]').each(function(i) { //loop through each checkbox this.checked = true; - $.when (session_set_array( 'dashboard,idstatiintervento', this.value, 0 )).promise().done(function() { + $.when (session_set_array( 'dashboard,idstatiintervento', this.value, 0 )).promise().then(function() { $('#calendar').fullCalendar('refetchEvents'); }); @@ -345,7 +345,7 @@ if ($vista == 'mese') { $(this).parent().parent().find('li input[type=checkbox]').each(function(i) { //loop through each checkbox this.checked = true; - $.when (session_set_array( 'dashboard,idtipiintervento', this.value, 0 )).promise().done(function() { + $.when (session_set_array( 'dashboard,idtipiintervento', this.value, 0 )).promise().then(function() { $('#calendar').fullCalendar('refetchEvents'); }); i++; @@ -359,7 +359,7 @@ if ($vista == 'mese') { $(this).parent().parent().find('li input[type=checkbox]').each(function(i) { //loop through each checkbox this.checked = true; - $.when (session_set_array( 'dashboard,idtecnici', this.value, 0 )).promise().done(function() { + $.when (session_set_array( 'dashboard,idtecnici', this.value, 0 )).promise().then(function() { $('#calendar').fullCalendar('refetchEvents'); }); i++; @@ -372,7 +372,7 @@ if ($vista == 'mese') { $(this).parent().parent().find('li input[type=checkbox]').each(function(i) { //loop through each checkbox this.checked = true; - $.when (session_set_array( 'dashboard,idzone', this.value, 0 )).promise().done(function() { + $.when (session_set_array( 'dashboard,idzone', this.value, 0 )).promise().then(function() { $('#calendar').fullCalendar('refetchEvents'); }); @@ -388,7 +388,7 @@ if ($vista == 'mese') { $(this).parent().parent().find('li input[type=checkbox]').each(function() { //loop through each checkbox this.checked = false; - $.when (session_set_array( 'dashboard,idstatiintervento', this.value, 1 )).promise().done(function() { + $.when (session_set_array( 'dashboard,idstatiintervento', this.value, 1 )).promise().then(function() { $('#calendar').fullCalendar('refetchEvents'); }); @@ -402,7 +402,7 @@ if ($vista == 'mese') { $(this).parent().parent().find('li input[type=checkbox]').each(function() { //loop through each checkbox this.checked = false; - $.when (session_set_array( 'dashboard,idtipiintervento', this.value, 1 )).promise().done(function() { + $.when (session_set_array( 'dashboard,idtipiintervento', this.value, 1 )).promise().then(function() { $('#calendar').fullCalendar('refetchEvents'); }); @@ -417,7 +417,7 @@ if ($vista == 'mese') { $(this).parent().parent().find('li input[type=checkbox]').each(function() { //loop through each checkbox this.checked = false; - $.when (session_set_array( 'dashboard,idtecnici', this.value, 1 )).promise().done(function() { + $.when (session_set_array( 'dashboard,idtecnici', this.value, 1 )).promise().then(function() { $('#calendar').fullCalendar('refetchEvents'); }); @@ -431,7 +431,7 @@ if ($vista == 'mese') { $(this).parent().parent().find('li input[type=checkbox]').each(function() { //loop through each checkbox this.checked = false; - $.when (session_set_array( 'dashboard,idzone', this.value, 1 )).promise().done(function() { + $.when (session_set_array( 'dashboard,idzone', this.value, 1 )).promise().then(function() { $('#calendar').fullCalendar('refetchEvents'); }); From 940c8778f567c4ad026d825acbbc0e038d3c75f2 Mon Sep 17 00:00:00 2001 From: loviuz <1647128+loviuz@users.noreply.github.com> Date: Fri, 16 Feb 2018 18:43:21 +0100 Subject: [PATCH 4/4] Aggiornato Changelog --- CHANGELOG.md | 47 +++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 45 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 28546116c..3c28a4343 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,12 @@ Tutti i maggiori cambiamenti di questo progetto saranno documentati in questo fi Il formato utilizzato è basato sulle linee guida di [Keep a Changelog](http://keepachangelog.com/), e il progetto segue il [Semantic Versioning](http://semver.org/) per definire le versioni delle release. -- [2.3 (In sviluppo)](#23-in-sviluppo) +- [2.3.1 (2018-02-16)](#231) + - [Aggiunto (Added)](#aggiunto-added) + - [Modificato (Changed)](#modificato-changed) + - [Rimosso (Removed)](#rimosso-removed) + - [Fixed](#fixed) +- [2.3 (2018-01-27)](#23-in-sviluppo) - [Aggiunto (Added)](#aggiunto-added) - [Modificato (Changed)](#modificato-changed) - [Deprecato (Deprecated)](#deprecato-deprecated) @@ -19,7 +24,45 @@ Il formato utilizzato è basato sulle linee guida di [Keep a Changelog](http://k - [Modificato (Changed)](#modificato-changed) - [Fixed](#fixed) -## 2.3 (In sviluppo) + +## 2.3.1 (2018-02-16) + +### Aggiunto (Added) + - Aggiunti i seriali in stampa + - Aggiunta la zona nelle attività (in sola lettura dall'anagrafica) + - Aggiunta tramite flag la possibilità di inserire la descrizione dell'intervento in fattura + - Aggiunta esportazione bulk in zip dei pdf degli interventi selezionati + - Aggiunte informazioni del cliente e fornitore nelle relative stampe ordini + +### Modificato (Changed) + - Migliorati i widget di "Crediti da clienti" e "Debiti verso fornitori", con calcolo parziale del rimanente + - Disabilitato di default il modulo "Viste" + - Migliorata la gestione della pianificazione attività sui contratti, con la possibilità di eliminare tutte le pianificazioni + o di creare direttamente un intervento collegato + - Modificato l'inserimento di interventi in fattura raggruppando per costo orario nel caso ci siano più costi orari + - Spostato il conto "Perdite e profitti" nello stato patrimoniale + +### Fixed + - Corretti diversi problemi in fase di installazione + - Modifica e miglioramento dell'arrotondamento iva in fattura, sia a video che in stampa + - Corretto il caricamento di menu a tendina per gli utenti con permessi limitati + - Corretti i permessi per la stampa fattura per utenti con permessi limitati + - Corretto e migliorato il funzionamento delle viste + - Corretto il calcolo dello sconto incondizionato in percentuale nei principali moduli + - Corretta la stampa consuntivo del preventivo + - Corrette alcune funzioni dello scadenzario, in quanto sparivano delle scadenze in fase di modifica prima nota + - Corretto il cambio di stato automatico di ddt dopo la fatturazione + - Migliorato il caricamento dinamico del calendario via ajax in quanto a volte si bloccava + - Correzioni varie sulla gestione viste + - Corretto il piano dei conti per arrotondare gli importi come negli altri moduli + - Corretto il calcolo iva nei contratti + - Corretto il salvataggio delle sessioni tecnico nei propri interventi + - Corretto un problema nel salvataggio firma intervento su alcuni tablet + - Corretto ordinamento voci di menu laterale + - Altre correzioni minori e strutturali + + +## 2.3 (2018-02-16) ### Aggiunto (Added)