Aggiunto raggruppamento righe preventivi

This commit is contained in:
MatteoPistorello 2023-09-15 17:18:44 +02:00
parent bdfec7c2eb
commit b94d4e4dd3
5 changed files with 230 additions and 108 deletions

View File

@ -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>';
}

View File

@ -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) {

View File

@ -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,78 +148,82 @@ 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"> if ($riga->isDescrizione()) {
'.$info_evasione.' echo '
</td>'; <td></td>
<td></td>
<td></td>
<td></td>
<td></td>';
} else {
// Info evasione
echo '
<td class="text-center">
'.$info_evasione.'
</td>';
if ($riga->isDescrizione()) { // Quantità e unità di misura
echo ' echo '
<td></td> <td class="text-center">
<td></td> {[ "type": "number", "name": "qta_'.$riga->id.'", "value": "'.$riga->qta.'", "min-value": "0", "onchange": "aggiornaInline($(this).closest(\'tr\').data(\'id\'))", "icon-before": "<span class=\'tip\' title=\''.($riga->confermato ? tr('Articolo confermato') : tr('Articolo non confermato')).'\'><i class=\''.($riga->confermato ? 'fa fa-check text-success' : 'fa fa-clock-o text-warning').'\'></i></span>", "icon-after": "<span class=\'tip\' title=\''.tr('Quantità evasa').' / '.tr('totale').': '.tr('_QTA_ / _TOT_', ['_QTA_' => numberFormat($riga->qta_evasa, 'qta'), '_TOT_' => numberFormat($riga->qta, 'qta')]).'\'>'.$riga->um.' <small><i class=\'text-muted fa fa-info-circle\'></i></small></span>", "disabled": "'.($riga->isSconto() ? 1 : 0).'", "disabled": "'.$block_edit.'" ]}
<td></td> <div class="progress" style="height:4px;">';
<td></td>'; // Visualizzazione evasione righe per documento
} else { $evasione_bar = [];
// Quantità e unità di misura $evasione_bar['dt_righe_ddt'] = 'info';
echo ' $evasione_bar['co_righe_documenti'] = 'primary';
<td class="text-center"> $evasione_bar['in_righe_interventi'] = 'warning';
{[ "type": "number", "name": "qta_'.$riga->id.'", "value": "'.$riga->qta.'", "min-value": "0", "onchange": "aggiornaInline($(this).closest(\'tr\').data(\'id\'))", "icon-before": "<span class=\'tip\' title=\''.($riga->confermato ? tr('Articolo confermato') : tr('Articolo non confermato')).'\'><i class=\''.($riga->confermato ? 'fa fa-check text-success' : 'fa fa-clock-o text-warning').'\'></i></span>", "icon-after": "<span class=\'tip\' title=\''.tr('Quantità evasa').' / '.tr('totale').': '.tr('_QTA_ / _TOT_', ['_QTA_' => numberFormat($riga->qta_evasa, 'qta'), '_TOT_' => numberFormat($riga->qta, 'qta')]).'\'>'.$riga->um.' <small><i class=\'text-muted fa fa-info-circle\'></i></small></span>", "disabled": "'.($riga->isSconto() ? 1 : 0).'", "disabled": "'.$block_edit.'" ]} $evasione_bar['or_righe_ordini'] = 'success';
<div class="progress" style="height:4px;">'; foreach ($evasione_bar as $table => $color) {
// Visualizzazione evasione righe per documento $righe_ev = $dbo->table($table)->where('original_id', $riga->id)->where('original_type', get_class($riga))->get();
$evasione_bar = []; $perc_ev = $righe_ev->sum('qta') * 100 / $riga->qta;
$evasione_bar['dt_righe_ddt'] = 'info'; if ($perc_ev > 0) {
$evasione_bar['co_righe_documenti'] = 'primary'; echo '
$evasione_bar['in_righe_interventi'] = 'warning'; <div class="progress-bar progress-bar-'.$color.'" style="width:'.$perc_ev.'%"></div>';
$evasione_bar['or_righe_ordini'] = 'success'; }
foreach ($evasione_bar as $table => $color) {
$righe_ev = $dbo->table($table)->where('original_id', $riga->id)->where('original_type', get_class($riga))->get();
$perc_ev = $righe_ev->sum('qta') * 100 / $riga->qta;
if ($perc_ev > 0) {
echo '
<div class="progress-bar progress-bar-'.$color.'" style="width:'.$perc_ev.'%"></div>';
} }
} echo '
echo ' </div>
</div> </td>';
</td>';
// Prezzi unitari // Prezzi unitari
echo ' echo '
<td class="text-right">'; <td class="text-right">';
// Provvigione riga // Provvigione riga
if (abs($riga->provvigione_unitaria) > 0) { if (abs($riga->provvigione_unitaria) > 0) {
$text = provvigioneInfo($riga); $text = provvigioneInfo($riga);
echo '<span class="pull-left text-info" title="'.$text.'"><i class="fa fa-handshake-o"></i></span>'; echo '<span class="pull-left text-info" title="'.$text.'"><i class="fa fa-handshake-o"></i></span>';
} }
echo moneyFormat($riga->prezzo_unitario_corrente); echo moneyFormat($riga->prezzo_unitario_corrente);
if (abs($riga->sconto_unitario) > 0) { if (abs($riga->sconto_unitario) > 0) {
$text = discountInfo($riga); $text = discountInfo($riga);
echo '
<br><small class="label label-danger">'.$text.'</small>';
}
echo ' echo '
<br><small class="label label-danger">'.$text.'</small>'; </td>';
}
echo ' // Sconto unitario
</td>'; if (!$block_edit) {
echo '
<td class="text-center">
{[ "type": "number", "name": "sconto_'.$riga->id.'", "value": "'.($riga->sconto_percentuale ?: $riga->sconto_unitario_corrente).'", "min-value": "0", "onchange": "aggiornaInline($(this).closest(\'tr\').data(\'id\'))", "icon-after": "choice|untprc|'.$riga->tipo_sconto.'" ]}
</td>';
}
// Sconto unitario // Importo
if (!$block_edit) {
echo ' echo '
<td class="text-center"> <td class="text-right">
{[ "type": "number", "name": "sconto_'.$riga->id.'", "value": "'.($riga->sconto_percentuale ?: $riga->sconto_unitario_corrente).'", "min-value": "0", "onchange": "aggiornaInline($(this).closest(\'tr\').data(\'id\'))", "icon-after": "choice|untprc|'.$riga->tipo_sconto.'" ]} '.moneyFormat($riga->importo);
</td>';
// Iva
echo '
<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>';
} }
// Importo
echo '
<td class="text-right">
'.moneyFormat($riga->importo);
// Iva
echo '
<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>';
} }
// Possibilità di rimuovere una riga solo se il preventivo non è stato pagato // Possibilità di rimuovere una riga solo se il preventivo non è stato pagato
@ -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 '

View File

@ -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,51 +249,53 @@ foreach ($righe as $riga) {
echo ' echo '
</td>'; </td>';
if (!$riga->isDescrizione()) { if (!$riga->is_titolo) {
echo ' if (!$riga->isDescrizione()) {
<td class="text-center" style="vertical-align: middle" >
'.Translator::numberToLocale(abs($riga->qta), 'qta').' '.$r['um'].'
</td>';
if ($options['pricing']) {
// Prezzo unitario
echo ' echo '
<td class="text-right" style="vertical-align: middle"> <td class="text-center" style="vertical-align: middle" >
'.moneyFormat($prezzi_ivati ? $riga->prezzo_unitario_ivato : $riga->prezzo_unitario); '.Translator::numberToLocale(abs($riga->qta), 'qta').' '.$r['um'].'
</td>';
if ($riga->sconto > 0) { if ($options['pricing']) {
$text = discountInfo($riga, false); // Prezzo unitario
echo '
<td class="text-right" style="vertical-align: middle">
'.moneyFormat($prezzi_ivati ? $riga->prezzo_unitario_ivato : $riga->prezzo_unitario);
if ($riga->sconto > 0) {
$text = discountInfo($riga, false);
echo '
<br><small class="text-muted">'.$text.'</small>';
$autofill->count($text, true);
}
echo ' echo '
<br><small class="text-muted">'.$text.'</small>'; </td>';
$autofill->count($text, true); // Iva
echo '
<td class="text-center" style="vertical-align: middle">
'.Translator::numberToLocale($riga->aliquota->percentuale, 2).'
</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 {
echo ' echo '
</td>'; <td></td>';
// Imponibile if ($options['pricing']) {
echo ' echo '
<td class="text-right" style="vertical-align: middle" > <td></td>
'.(($options['hide-total'] || $prezzi_ivati) ? moneyFormat($riga->totale) : moneyFormat($riga->totale_imponibile)).' <td></td>
</td>'; <td></td>';
}
// Iva
echo '
<td class="text-center" style="vertical-align: middle">
'.Translator::numberToLocale($riga->aliquota->percentuale, 2).'
</td>';
}
} else {
echo '
<td></td>';
if ($options['pricing']) {
echo '
<td></td>
<td></td>
<td></td>';
} }
} }
@ -283,6 +303,41 @@ foreach ($righe as $riga) {
</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 '

View File

@ -64,4 +64,7 @@ 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`;