Compare commits
4 Commits
d9bb35c33c
...
0e1fabb99a
Author | SHA1 | Date |
---|---|---|
Dasc3er | 0e1fabb99a | |
Dasc3er | 921d357b9d | |
MatteoPistorello | b9c3f22eb7 | |
MatteoPistorello | 333b7bf072 |
|
@ -35,6 +35,15 @@ Il formato utilizzato è basato sulle linee guida di [Keep a Changelog](http://k
|
|||
- [2.2 (2016-11-10)](#22-2016-11-10)
|
||||
- [2.1 (2015-04-02)](#21-2015-04-02)
|
||||
|
||||
## 2.4.25 (2021-00-00)
|
||||
|
||||
### Aggiunto (Added)
|
||||
- Aggiunta percentuale di imponibilità nel modulo **Piano dei conti** sezione **Ricavi** per il calcolo del **Totale reddito**.
|
||||
|
||||
### Modificato (Changed)
|
||||
|
||||
### Fixed
|
||||
|
||||
## 2.4.24 (2021-07-28)
|
||||
|
||||
### Aggiunto (Added)
|
||||
|
|
|
@ -27,7 +27,7 @@ $rs = $dbo->fetchArray('SELECT *,
|
|||
giorni_preavviso_rinnovo,
|
||||
(SELECT ragione_sociale FROM an_anagrafiche WHERE idanagrafica=co_contratti.idanagrafica) AS ragione_sociale
|
||||
FROM co_contratti WHERE
|
||||
idstato IN (SELECT id FROM co_staticontratti WHERE is_fatturabile = 1) AND
|
||||
idstato IN (SELECT id FROM co_staticontratti WHERE is_pianificabile = 1) AND
|
||||
rinnovabile = 1 AND
|
||||
YEAR(data_conclusione) > 1970 AND
|
||||
(SELECT id FROM co_contratti contratti WHERE contratti.idcontratto_prev = co_contratti.id) IS NULL
|
||||
|
|
|
@ -167,12 +167,10 @@ foreach ($primo_livello as $conto_primo) {
|
|||
}
|
||||
|
||||
// Pulsante per aggiornare il totale reddito del conto di livello 3
|
||||
if ($conto_secondo['dir'] == 'uscita') {
|
||||
echo '
|
||||
<button type="button" class="btn btn-info btn-xs" onclick="aggiornaReddito('.$conto_terzo['id'].')">
|
||||
<i class="fa fa-refresh"></i>
|
||||
</button>';
|
||||
}
|
||||
echo '
|
||||
<button type="button" class="btn btn-info btn-xs" onclick="aggiornaReddito('.$conto_terzo['id'].')">
|
||||
<i class="fa fa-refresh"></i>
|
||||
</button>';
|
||||
|
||||
// Pulsante per modificare il nome del conto di livello 3
|
||||
echo '
|
||||
|
|
|
@ -49,7 +49,7 @@ $info = $dbo->fetchOne($query);
|
|||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-4 <?php echo intval($lvl != 3 || $info['dir'] != 'uscita') ? 'hidden' : ''; ?>">
|
||||
<div class="col-md-4 <?php echo intval($lvl != 3) ? 'hidden' : ''; ?>">
|
||||
{[ "type": "number", "decimals": 0, "label": "<?php echo tr('Percentuale deducibile'); ?>", "name": "percentuale_deducibile", "value": "<?php echo $info['percentuale_deducibile']; ?>", "icon-after": "<i class=\"fa fa-percent\"></i>", "max-value": "100", "min-value": "0" ]}
|
||||
</div>
|
||||
|
||||
|
|
|
@ -87,13 +87,6 @@ class AllegatiInterventi extends AppResource
|
|||
return $record;
|
||||
}
|
||||
|
||||
public static function getTempDirectory()
|
||||
{
|
||||
return DIRECTORY_SEPARATOR.
|
||||
trim(sys_get_temp_dir(), DIRECTORY_SEPARATOR).
|
||||
DIRECTORY_SEPARATOR;
|
||||
}
|
||||
|
||||
public function createRecord($data)
|
||||
{
|
||||
$module = Modules::get('Interventi');
|
||||
|
@ -104,8 +97,7 @@ class AllegatiInterventi extends AppResource
|
|||
throw new InternalError();
|
||||
}
|
||||
|
||||
$file = self::getTempDirectory().$data['nome'];
|
||||
//$path = stream_get_meta_data($file)['uri'];
|
||||
$file = temp_file($data['nome']);
|
||||
file_put_contents($file, base64_decode($content[1]));
|
||||
|
||||
// Salvataggio del file come allegato
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
-- Aggiornato widget Contratti in scadenza (sostituito fatturabile con pianificabile)
|
||||
UPDATE `zz_widgets` SET `query` = 'SELECT COUNT(dati.id) AS dato FROM(SELECT id, ((SELECT SUM(co_righe_contratti.qta) FROM co_righe_contratti WHERE co_righe_contratti.um=\'ore\' AND co_righe_contratti.idcontratto=co_contratti.id) - IFNULL( (SELECT SUM(in_interventi_tecnici.ore) FROM in_interventi_tecnici INNER JOIN in_interventi ON in_interventi_tecnici.idintervento=in_interventi.id WHERE in_interventi.id_contratto=co_contratti.id AND in_interventi.idstatointervento IN (SELECT in_statiintervento.idstatointervento FROM in_statiintervento WHERE in_statiintervento.is_completato = 1)), 0) ) AS ore_rimanenti, DATEDIFF(data_conclusione, NOW()) AS giorni_rimanenti, data_conclusione, ore_preavviso_rinnovo, giorni_preavviso_rinnovo, (SELECT ragione_sociale FROM an_anagrafiche WHERE idanagrafica=co_contratti.idanagrafica) AS ragione_sociale FROM co_contratti WHERE idstato IN (SELECT id FROM co_staticontratti WHERE is_pianificabile = 1) AND rinnovabile = 1 AND YEAR(data_conclusione) > 1970 AND (SELECT id FROM co_contratti contratti WHERE contratti.idcontratto_prev = co_contratti.id) IS NULL HAVING (ore_rimanenti < ore_preavviso_rinnovo OR DATEDIFF(data_conclusione, NOW()) < ABS(giorni_preavviso_rinnovo)) ORDER BY giorni_rimanenti ASC, ore_rimanenti ASC) dati' WHERE `zz_widgets`.`name` = 'Contratti in scadenza';
|
Loading…
Reference in New Issue