Aggiunto raggruppamento righe preventivi
This commit is contained in:
parent
bdfec7c2eb
commit
b94d4e4dd3
|
@ -31,3 +31,12 @@ echo '
|
||||||
{[ "type": "textarea", "label": "'.tr('Note interne').'", "name": "note", "value": '.json_encode($result['note']).', "help": "'.tr('Queste note saranno utilizzate solo a scopo interno').'", "extra": "rows=\"2\"" ]}
|
{[ "type": "textarea", "label": "'.tr('Note interne').'", "name": "note", "value": '.json_encode($result['note']).', "help": "'.tr('Queste note saranno utilizzate solo a scopo interno').'", "extra": "rows=\"2\"" ]}
|
||||||
</div>
|
</div>
|
||||||
</div>';
|
</div>';
|
||||||
|
|
||||||
|
if ($module['name'] == 'Preventivi' && $options['op'] == 'manage_descrizione') {
|
||||||
|
echo '
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-6">
|
||||||
|
{[ "type": "checkbox", "label": "'.tr('Utilizza come titolo del gruppo').'", "name": "is_titolo", "value": '.json_encode($result['is_titolo']).', "help": "'.tr('').'" ]}
|
||||||
|
</div>
|
||||||
|
</div>';
|
||||||
|
}
|
|
@ -324,6 +324,7 @@ switch (post('op')) {
|
||||||
|
|
||||||
$riga->descrizione = post('descrizione');
|
$riga->descrizione = post('descrizione');
|
||||||
$riga->note = post('note');
|
$riga->note = post('note');
|
||||||
|
$riga->is_titolo = post('is_titolo');
|
||||||
$riga->save();
|
$riga->save();
|
||||||
|
|
||||||
if (post('idriga') != null) {
|
if (post('idriga') != null) {
|
||||||
|
|
|
@ -55,11 +55,27 @@ echo '
|
||||||
$today = new Carbon\Carbon();
|
$today = new Carbon\Carbon();
|
||||||
$today = $today->startOfDay();
|
$today = $today->startOfDay();
|
||||||
$num = 0;
|
$num = 0;
|
||||||
foreach ($righe as $riga) {
|
$has_gruppo = false;
|
||||||
|
$subtotale_gruppo = 0;
|
||||||
|
$iva_gruppo = 0;
|
||||||
|
$color_gruppo = '#BDDEE1;';
|
||||||
|
foreach ($righe as $key => $riga) {
|
||||||
|
// Gestione gruppo
|
||||||
|
$style_titolo = '';
|
||||||
|
$colspan_titolo = '';
|
||||||
|
if ($riga->is_titolo) {
|
||||||
|
$subtotale_gruppo = 0;
|
||||||
|
$iva_gruppo = 0;
|
||||||
|
$has_gruppo = true;
|
||||||
|
$style_titolo = 'style="background-color:'.$color_gruppo.'"';
|
||||||
|
$colspan_titolo = 'colspan="6"';
|
||||||
|
}
|
||||||
|
$subtotale_gruppo += $riga->totale_imponibile;
|
||||||
|
$iva_gruppo += $riga->iva;
|
||||||
++$num;
|
++$num;
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
<tr data-id="'.$riga->id.'" data-type="'.get_class($riga).'">
|
<tr data-id="'.$riga->id.'" data-type="'.get_class($riga).'" '.$style_titolo.'>
|
||||||
<td class="text-center">';
|
<td class="text-center">';
|
||||||
if (!$block_edit) {
|
if (!$block_edit) {
|
||||||
echo '
|
echo '
|
||||||
|
@ -72,7 +88,7 @@ foreach ($righe as $riga) {
|
||||||
'.$num.'
|
'.$num.'
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
<td>';
|
<td '.$colspan_titolo.'>';
|
||||||
|
|
||||||
// Aggiunta dei riferimenti ai documenti
|
// Aggiunta dei riferimenti ai documenti
|
||||||
if ($riga->hasOriginalComponent()) {
|
if ($riga->hasOriginalComponent()) {
|
||||||
|
@ -132,18 +148,21 @@ foreach ($righe as $riga) {
|
||||||
$info_evasione = '<span class="tip" title="'.$evasione_help.'"><i class="'.$evasione_icon.'"></i> '.Translator::dateToLocale($riga->data_evasione).$ora_evasione.'</span>';
|
$info_evasione = '<span class="tip" title="'.$evasione_help.'"><i class="'.$evasione_icon.'"></i> '.Translator::dateToLocale($riga->data_evasione).$ora_evasione.'</span>';
|
||||||
}
|
}
|
||||||
|
|
||||||
echo '
|
if (!$riga->is_titolo) {
|
||||||
<td class="text-center">
|
|
||||||
'.$info_evasione.'
|
|
||||||
</td>';
|
|
||||||
|
|
||||||
if ($riga->isDescrizione()) {
|
if ($riga->isDescrizione()) {
|
||||||
echo '
|
echo '
|
||||||
<td></td>
|
<td></td>
|
||||||
<td></td>
|
<td></td>
|
||||||
<td></td>
|
<td></td>
|
||||||
|
<td></td>
|
||||||
<td></td>';
|
<td></td>';
|
||||||
} else {
|
} else {
|
||||||
|
// Info evasione
|
||||||
|
echo '
|
||||||
|
<td class="text-center">
|
||||||
|
'.$info_evasione.'
|
||||||
|
</td>';
|
||||||
|
|
||||||
// Quantità e unità di misura
|
// Quantità e unità di misura
|
||||||
echo '
|
echo '
|
||||||
<td class="text-center">
|
<td class="text-center">
|
||||||
|
@ -205,6 +224,7 @@ foreach ($righe as $riga) {
|
||||||
<br><small class="'.(($riga->aliquota->deleted_at) ? 'text-red' : '').' text-muted">'.$riga->aliquota->descrizione.(($riga->aliquota->esente) ? ' ('.$riga->aliquota->codice_natura_fe.')' : null).'</small>
|
<br><small class="'.(($riga->aliquota->deleted_at) ? 'text-red' : '').' text-muted">'.$riga->aliquota->descrizione.(($riga->aliquota->esente) ? ' ('.$riga->aliquota->codice_natura_fe.')' : null).'</small>
|
||||||
</td>';
|
</td>';
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Possibilità di rimuovere una riga solo se il preventivo non è stato pagato
|
// Possibilità di rimuovere una riga solo se il preventivo non è stato pagato
|
||||||
echo '
|
echo '
|
||||||
|
@ -230,6 +250,40 @@ foreach ($righe as $riga) {
|
||||||
echo '
|
echo '
|
||||||
</td>
|
</td>
|
||||||
</tr>';
|
</tr>';
|
||||||
|
|
||||||
|
$next = $righe->flatten()[$num];
|
||||||
|
if ($has_gruppo && ($next->is_titolo || $next == null)) {
|
||||||
|
echo '
|
||||||
|
<tr>
|
||||||
|
<td style="background-color:'.$color_gruppo.'" colspan="'.$colspan.'" class="text-right">
|
||||||
|
<b>'.tr('Subtotale', [], ['upper' => true]).':</b>
|
||||||
|
</td>
|
||||||
|
<td style="background-color:'.$color_gruppo.'" class="text-right">
|
||||||
|
'.moneyFormat($subtotale_gruppo, 2).'
|
||||||
|
</td>
|
||||||
|
<td style="background-color:'.$color_gruppo.'"></td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td style="background-color:'.$color_gruppo.'" colspan="'.$colspan.'" class="text-right">
|
||||||
|
<b>'.tr('Iva', [], ['upper' => true]).':</b>
|
||||||
|
</td>
|
||||||
|
<td style="background-color:'.$color_gruppo.'" class="text-right">
|
||||||
|
'.moneyFormat($iva_gruppo, 2).'
|
||||||
|
</td>
|
||||||
|
<td style="background-color:'.$color_gruppo.'"></td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td style="background-color:'.$color_gruppo.'" colspan="'.$colspan.'" class="text-right">
|
||||||
|
<b>'.tr('Subtotale ivato', [], ['upper' => true]).':</b>
|
||||||
|
</td>
|
||||||
|
<td style="background-color:'.$color_gruppo.'" class="text-right">
|
||||||
|
'.moneyFormat($subtotale_gruppo + $iva_gruppo, 2).'
|
||||||
|
</td>
|
||||||
|
<td style="background-color:'.$color_gruppo.'"></td>
|
||||||
|
</tr>';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
|
|
|
@ -171,8 +171,8 @@ echo "
|
||||||
if ($options['pricing']) {
|
if ($options['pricing']) {
|
||||||
echo "
|
echo "
|
||||||
<th class='text-center' style='width:15%'>".tr('Prezzo unitario', [], ['upper' => true])."</th>
|
<th class='text-center' style='width:15%'>".tr('Prezzo unitario', [], ['upper' => true])."</th>
|
||||||
<th class='text-center' style='width:15%'>".($options['hide-total'] ? tr('Importo ivato', [], ['upper' => true]) : tr('Importo', [], ['upper' => true]))."</th>
|
<th class='text-center' style='width:10%'>".tr('IVA', [], ['upper' => true])." (%)</th>
|
||||||
<th class='text-center' style='width:10%'>".tr('IVA', [], ['upper' => true]).' (%)</th>';
|
<th class='text-center' style='width:15%'>".($options['hide-total'] ? tr('Importo ivato', [], ['upper' => true]) : tr('Importo', [], ['upper' => true]))."</th>";
|
||||||
}
|
}
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
|
@ -182,10 +182,28 @@ echo '
|
||||||
<tbody>';
|
<tbody>';
|
||||||
|
|
||||||
$num = 0;
|
$num = 0;
|
||||||
foreach ($righe as $riga) {
|
$has_gruppo = false;
|
||||||
|
$subtotale_gruppo = 0;
|
||||||
|
$iva_gruppo = 0;
|
||||||
|
foreach ($righe as $key => $riga) {
|
||||||
++$num;
|
++$num;
|
||||||
$r = $riga->toArray();
|
$r = $riga->toArray();
|
||||||
|
|
||||||
|
// Gestione gruppo
|
||||||
|
$style_titolo = '';
|
||||||
|
$colspan_titolo = '';
|
||||||
|
if ($riga->is_titolo) {
|
||||||
|
$subtotale_gruppo = 0;
|
||||||
|
$iva_gruppo = 0;
|
||||||
|
$has_gruppo = true;
|
||||||
|
$colspan_titolo = $options['pricing'] ? 'colspan="5"' : 'colspan="2"';
|
||||||
|
$descrizione = '<b>'.nl2br($r['descrizione']).'</b>';
|
||||||
|
} else {
|
||||||
|
$descrizione = nl2br($r['descrizione']);
|
||||||
|
}
|
||||||
|
$subtotale_gruppo += $riga->totale_imponibile;
|
||||||
|
$iva_gruppo += $riga->iva;
|
||||||
|
|
||||||
$autofill->count($r['descrizione']);
|
$autofill->count($r['descrizione']);
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
|
@ -209,8 +227,8 @@ foreach ($righe as $riga) {
|
||||||
}
|
}
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
<td style="vertical-align: middle">
|
<td style="vertical-align: middle" '.$colspan_titolo.'>
|
||||||
'.nl2br($r['descrizione']);
|
'.$descrizione;
|
||||||
|
|
||||||
if ($riga->isArticolo()) {
|
if ($riga->isArticolo()) {
|
||||||
if ($options['hide-item-number']) {
|
if ($options['hide-item-number']) {
|
||||||
|
@ -231,6 +249,7 @@ foreach ($righe as $riga) {
|
||||||
echo '
|
echo '
|
||||||
</td>';
|
</td>';
|
||||||
|
|
||||||
|
if (!$riga->is_titolo) {
|
||||||
if (!$riga->isDescrizione()) {
|
if (!$riga->isDescrizione()) {
|
||||||
echo '
|
echo '
|
||||||
<td class="text-center" style="vertical-align: middle" >
|
<td class="text-center" style="vertical-align: middle" >
|
||||||
|
@ -255,17 +274,17 @@ foreach ($righe as $riga) {
|
||||||
echo '
|
echo '
|
||||||
</td>';
|
</td>';
|
||||||
|
|
||||||
// Imponibile
|
|
||||||
echo '
|
|
||||||
<td class="text-right" style="vertical-align: middle" >
|
|
||||||
'.(($options['hide-total'] || $prezzi_ivati) ? moneyFormat($riga->totale) : moneyFormat($riga->totale_imponibile)).'
|
|
||||||
</td>';
|
|
||||||
|
|
||||||
// Iva
|
// Iva
|
||||||
echo '
|
echo '
|
||||||
<td class="text-center" style="vertical-align: middle">
|
<td class="text-center" style="vertical-align: middle">
|
||||||
'.Translator::numberToLocale($riga->aliquota->percentuale, 2).'
|
'.Translator::numberToLocale($riga->aliquota->percentuale, 2).'
|
||||||
</td>';
|
</td>';
|
||||||
|
|
||||||
|
// Imponibile
|
||||||
|
echo '
|
||||||
|
<td class="text-right" style="vertical-align: middle" >
|
||||||
|
'.(($options['hide-total'] || $prezzi_ivati) ? moneyFormat($riga->totale) : moneyFormat($riga->totale_imponibile)).'
|
||||||
|
</td>';
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
echo '
|
echo '
|
||||||
|
@ -278,11 +297,47 @@ foreach ($righe as $riga) {
|
||||||
<td></td>';
|
<td></td>';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
</tr>';
|
</tr>';
|
||||||
|
|
||||||
$autofill->next();
|
$autofill->next();
|
||||||
|
|
||||||
|
$next = $righe->flatten()[$num];
|
||||||
|
if ($has_gruppo && ($next->is_titolo || $next == null)) {
|
||||||
|
echo '
|
||||||
|
<tr>
|
||||||
|
<td colspan="'.($options['show-only-total'] ? 2 : 5).'" class="text-right">
|
||||||
|
<b>'.tr('Subtotale', [], ['upper' => true]).':</b>
|
||||||
|
</td>
|
||||||
|
<td colspan="'.($options['show-only-total'] ? (($has_image) ? 2 : 1) : (($has_image) ? 3 : 2)).'" class="text-right">
|
||||||
|
'.moneyFormat($subtotale_gruppo, 2).'
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td colspan="'.($options['show-only-total'] ? 2 : 5).'" class="text-right">
|
||||||
|
<b>'.tr('Iva', [], ['upper' => true]).':</b>
|
||||||
|
</td>
|
||||||
|
<td colspan="'.($options['show-only-total'] ? (($has_image) ? 2 : 1) : (($has_image) ? 3 : 2)).'" class="text-right">
|
||||||
|
'.moneyFormat($iva_gruppo, 2).'
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td colspan="'.($options['show-only-total'] ? 2 : 5).'" class="text-right">
|
||||||
|
<b>'.tr('Subtotale ivato', [], ['upper' => true]).':</b>
|
||||||
|
</td>
|
||||||
|
<td colspan="'.($options['show-only-total'] ? (($has_image) ? 2 : 1) : (($has_image) ? 3 : 2)).'" class="text-right">
|
||||||
|
'.moneyFormat($subtotale_gruppo + $iva_gruppo, 2).'
|
||||||
|
</td>
|
||||||
|
</tr>';
|
||||||
|
|
||||||
|
$autofill->next();
|
||||||
|
$autofill->next();
|
||||||
|
$autofill->next();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
|
|
|
@ -65,3 +65,6 @@ UPDATE `zz_widgets` SET `text` = 'Listini disattivati' WHERE `zz_widgets`.`name`
|
||||||
INSERT INTO `zz_widgets` (`id`, `name`, `type`, `id_module`, `location`, `class`, `query`, `bgcolor`, `icon`, `print_link`, `more_link`, `more_link_type`, `php_include`, `text`, `enabled`, `help`) VALUES (NULL, 'Preventivi da fatturare', 'stats', '1', 'controller_top', NULL, 'SELECT COUNT(id) AS dato FROM co_preventivi WHERE idstato IN (SELECT id FROM co_statipreventivi WHERE is_fatturabile=1) AND default_revision=1', '#44aae4', 'fa fa-file', '', './modules/preventivi/widgets/preventivi.fatturare.dashboard.php', 'popup', '', 'Preventivi da fatturare', 0, NULL);
|
INSERT INTO `zz_widgets` (`id`, `name`, `type`, `id_module`, `location`, `class`, `query`, `bgcolor`, `icon`, `print_link`, `more_link`, `more_link_type`, `php_include`, `text`, `enabled`, `help`) VALUES (NULL, 'Preventivi da fatturare', 'stats', '1', 'controller_top', NULL, 'SELECT COUNT(id) AS dato FROM co_preventivi WHERE idstato IN (SELECT id FROM co_statipreventivi WHERE is_fatturabile=1) AND default_revision=1', '#44aae4', 'fa fa-file', '', './modules/preventivi/widgets/preventivi.fatturare.dashboard.php', 'popup', '', 'Preventivi da fatturare', 0, NULL);
|
||||||
|
|
||||||
INSERT INTO `zz_views` (`id_module`, `name`, `query`, `order`, `search`, `slow`, `format`, `html_format`, `search_inside`, `order_by`, `visible`, `summable`, `default`) VALUES ((SELECT `id` FROM `zz_modules` WHERE `name` = 'Articoli'), '_bg_', 'IF(threshold_qta!=0, IF(mg_articoli.qta>threshold_qta, \'#CCFFCC\', \'#FFCCEB\'), \'\')', '14', '0', '0', '0', '0', '', '', '0', '0', '0');
|
INSERT INTO `zz_views` (`id_module`, `name`, `query`, `order`, `search`, `slow`, `format`, `html_format`, `search_inside`, `order_by`, `visible`, `summable`, `default`) VALUES ((SELECT `id` FROM `zz_modules` WHERE `name` = 'Articoli'), '_bg_', 'IF(threshold_qta!=0, IF(mg_articoli.qta>threshold_qta, \'#CCFFCC\', \'#FFCCEB\'), \'\')', '14', '0', '0', '0', '0', '', '', '0', '0', '0');
|
||||||
|
|
||||||
|
-- Aggiunto titolo righe preventivi
|
||||||
|
ALTER TABLE `co_righe_preventivi` ADD `is_titolo` BOOLEAN NOT NULL AFTER `confermato`;
|
Loading…
Reference in New Issue