Aggiunta confronta prezzo PR #1267

This commit is contained in:
Pek5892 2023-04-27 14:35:02 +02:00
parent 0f5c7da93f
commit b1635d09a2
18 changed files with 1070 additions and 0 deletions

View File

@ -663,5 +663,20 @@ switch (post('op')) {
flash()->info(tr('Quantità aggiornata!'));
}
break;
case 'edit-price':
$righe = $post['righe'];
foreach ($righe as $riga) {
$dbo->query(
'UPDATE co_righe_contratti
SET prezzo_unitario = '.$riga['price'].'
WHERE id = '.$riga['id']
);
}
flash()->info(tr('Prezzi aggiornati!'));
break;
}

View File

@ -0,0 +1,155 @@
<?php
/*
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
* Copyright (C) DevCode s.r.l.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
include_once __DIR__.'/../../../core.php';
use Carbon\Carbon;
use Modules\Contratti\Contratto;
$contratto = Contratto::find($id_record);
$id_anagrafica = $contratto->idanagrafica;
$direzione = $contratto->direzione;
$righe = $_GET['righe'];
$righe = $dbo->fetchArray(
'SELECT mg_articoli.descrizione, mg_articoli.codice, co_righe_contratti.*
FROM co_righe_contratti
JOIN mg_articoli ON mg_articoli.id = co_righe_contratti.idarticolo
WHERE co_righe_contratti.id IN ('.$righe.')'
);
?>
<form action="" method="post" id="add-form">
<table class="table table-striped table-hover table-condensed table-bordered m-3">
<thead>
<tr>
<th width="35" class="text-center" ><?php echo tr('Codice'); ?></th>
<th><?php echo tr('Descrizione'); ?></th>
<th class="text-center" width="150"><?php echo tr('Prezzo corrente'); ?></th>
<th class="text-center" width="150"><?php echo tr('Ultimo preventivo'); ?></th>
<th class="text-center" width="150"><?php echo tr('Ultima vendita'); ?></th>
</tr>
</thead>
<tbody>
<?php foreach ($righe as $riga) { ?>
<?php
$prezzi_ivati = setting('Utilizza prezzi di vendita comprensivi di IVA');
$ultimo_prezzo_preventivo = $dbo->fetchArray(
'SELECT
co_righe_contratti.idarticolo,
co_righe_preventivi.prezzo_unitario,
DATE(co_righe_preventivi.updated_at) AS updated_at
FROM
co_preventivi
INNER JOIN co_righe_preventivi ON co_righe_preventivi.idpreventivo = co_preventivi.id
INNER JOIN mg_articoli ON mg_articoli.id = co_righe_preventivi.idarticolo
INNER JOIN co_righe_contratti ON co_righe_contratti.idarticolo = mg_articoli.id
WHERE
co_preventivi.idanagrafica ='.prepare($id_anagrafica).' AND co_righe_contratti.idarticolo ='.prepare($riga['idarticolo']).' AND co_preventivi.idstato NOT IN (SELECT id FROM co_statipreventivi WHERE descrizione = "Bozza" OR descrizione = "In attesa di conferma" OR descrizione = "Rifiutato")
GROUP BY
mg_articoli.id, co_righe_preventivi.id
ORDER BY
updated_at DESC'
)[0];
$ultimo_prezzo_vendita = $dbo->fetchArray(
'SELECT
co_righe_contratti.idarticolo,
co_righe_documenti.prezzo_unitario,
DATE(co_righe_documenti.updated_at) AS updated_at
FROM
co_documenti
INNER JOIN co_righe_documenti ON co_righe_documenti.iddocumento = co_documenti.id
INNER JOIN mg_articoli ON mg_articoli.id = co_righe_documenti.idarticolo
INNER JOIN co_righe_contratti ON co_righe_contratti.idarticolo = mg_articoli.id
WHERE
co_documenti.idanagrafica ='.prepare($id_anagrafica).' AND co_righe_documenti.idarticolo ='.prepare($riga['idarticolo']).' AND co_documenti.idstatodocumento IN (SELECT id FROM co_statidocumento WHERE descrizione = "Emessa" OR descrizione = "Pagato" OR descrizione = "Parzialmente pagato")
GROUP BY
mg_articoli.id, co_righe_documenti.id
ORDER BY
updated_at DESC'
)[0];
?>
<tr>
<td><?= $riga['codice'] ?></td>
<td><?= $riga['descrizione'] ?></td>
<td>
<div>
{[ "type": "number", "label": "", "data-id":"<?php echo $riga['id']; ?>","name": "nuovo_prezzo_unitario[]", "value": "<?php echo numberFormat($riga['prezzo_unitario'], 2); ?>"]}
</div>
</td>
<td class="text-center"><?php
if (isset($ultimo_prezzo_preventivo)) {
echo moneyFormat($ultimo_prezzo_preventivo['prezzo_unitario'], 2) . (!empty($ultimo_prezzo_preventivo['updated_at']) ? ' <br><small class="help-block tip" title="'.dateFormat($ultimo_prezzo_preventivo['updated_at']).'">' . (new Carbon($ultimo_prezzo_preventivo['updated_at']))->diffForHumans().'</small>' : '');
} else {
echo 'n.d.';
}
?></td>
<td class="text-center"><?php
if (isset($ultimo_prezzo_vendita)) {
echo moneyFormat($ultimo_prezzo_vendita['prezzo_unitario'], 2) . (!empty($ultimo_prezzo_vendita['updated_at']) ? ' <br><small class="help-block tip" title="'.dateFormat($ultimo_prezzo_vendita['updated_at']).'">' . (new Carbon($ultimo_prezzo_vendita['updated_at']))->diffForHumans().'</small>' : '');
} else {
echo 'n.d.';
}
?></td>
</tr>
<?php } ?>
</tbody>
</table>
<a class="btn btn-primary btn-edit">
<i class="fa fa-edit"></i> <?php echo tr('Modifica'); ?>
</a>
</form>
<script>
$(document).ready(function() {
init();
$('.btn-edit').on('click', function() {
var id = [];
$('input[name^="nuovo_prezzo_unitario"]').each(function() {
id.push({
'id': $(this).data('id'),
'price': $(this).val(),
});
});
$.ajax({
url: globals.rootdir + "/actions.php",
type: "POST",
dataType: "json",
data: {
id_module: globals.id_module,
id_record: globals.id_record,
op: "edit-price",
backto: "record-edit",
righe: id,
},
success: function (response) {
location.reload();
},
error: function() {
location.reload();
}
});
});
});
</script>

View File

@ -326,6 +326,10 @@ if (!$block_edit && sizeof($righe) > 0) {
<button type="button" class="btn btn-xs btn-default disabled" id="elimina_righe" onclick="rimuoviRiga(getSelectData());">
<i class="fa fa-trash"></i>
</button>
<button type="button" class="btn btn-xs btn-default disabled" id="confronta_righe" onclick="confrontaRighe(getSelectData());">
Confronta prezzi
</button>
</div>';
}
echo '
@ -359,6 +363,11 @@ function getSelectData() {
return data;
}
function confrontaRighe(id) {
openModal("'.tr('Confronta prezzi').'", "'.$module->fileurl('modals/confronta_righe.php').'?id_module=" + globals.id_module + "&id_record=" + globals.id_record + "&righe=" + id + "&id_anagrafica='.$ordine->idanagrafica.'&direzione='.$dir.'");
}
function rimuoviRiga(id) {
swal({
title: "'.tr('Rimuovere queste righe?').'",
@ -446,9 +455,11 @@ $(".check").on("change", function() {
if (checked) {
$("#elimina_righe").removeClass("disabled");
$("#duplica_righe").removeClass("disabled");
$("#confronta_righe").removeClass("disabled");
} else {
$("#elimina_righe").addClass("disabled");
$("#duplica_righe").addClass("disabled");
$("#confronta_righe").addClass("disabled");
}
});

View File

@ -689,6 +689,20 @@ switch (filter('op')) {
}
break;
case 'edit-price':
$righe = $post['righe'];
foreach ($righe as $riga) {
$dbo->query(
'UPDATE dt_righe_ddt
SET prezzo_unitario = '.$riga['price'].'
WHERE id = '.$riga['id']
);
}
flash()->info(tr('Prezzi aggiornati!'));
break;
}
// Aggiornamento stato degli ordini presenti in questa fattura in base alle quantità totali evase

View File

@ -0,0 +1,154 @@
<?php
/*
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
* Copyright (C) DevCode s.r.l.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
include_once __DIR__.'/../../../core.php';
use Carbon\Carbon;
use Modules\DDT\DDT;
$ddt = DDT::find($id_record);
$id_anagrafica = $ddt->idanagrafica;
$direzione = $ddt->direzione;
$righe = $_GET['righe'];
$righe = $dbo->fetchArray(
'SELECT mg_articoli.descrizione, mg_articoli.codice, dt_righe_ddt.*
FROM dt_righe_ddt
JOIN mg_articoli ON mg_articoli.id = dt_righe_ddt.idarticolo
WHERE dt_righe_ddt.id IN ('.$righe.')'
);
?>
<form action="" method="post" id="add-form">
<table class="table table-striped table-hover table-condensed table-bordered m-3">
<thead>
<tr>
<th width="35" class="text-center" ><?php echo tr('Codice'); ?></th>
<th><?php echo tr('Descrizione'); ?></th>
<th class="text-center" width="150"><?php echo tr('Prezzo corrente'); ?></th>
<th class="text-center" width="150"><?php echo tr('Ultimo preventivo'); ?></th>
<th class="text-center" width="150"><?php echo tr('Ultima vendita'); ?></th>
</tr>
</thead>
<tbody>
<?php foreach ($righe as $riga) { ?>
<?php
$prezzi_ivati = setting('Utilizza prezzi di vendita comprensivi di IVA');
$ultimo_prezzo_preventivo = $dbo->fetchArray(
'SELECT
dt_righe_ddt.idarticolo,
co_righe_preventivi.prezzo_unitario,
DATE(co_righe_preventivi.updated_at) AS updated_at
FROM
co_preventivi
INNER JOIN co_righe_preventivi ON co_righe_preventivi.idpreventivo = co_preventivi.id
INNER JOIN mg_articoli ON mg_articoli.id = co_righe_preventivi.idarticolo
INNER JOIN dt_righe_ddt ON dt_righe_ddt.idarticolo = mg_articoli.id
WHERE
co_preventivi.idanagrafica = '.prepare($id_anagrafica).' AND dt_righe_ddt.idarticolo = '.prepare($riga['idarticolo']).' AND co_preventivi.idstato NOT IN (SELECT id FROM co_statipreventivi WHERE descrizione = "Bozza" OR descrizione = "In attesa di conferma" OR descrizione = "Rifiutato")
GROUP BY
mg_articoli.id, co_righe_preventivi.id
ORDER BY
updated_at DESC'
)[0];
$ultimo_prezzo_vendita = $dbo->fetchArray(
'SELECT
dt_righe_ddt.idarticolo,
co_righe_documenti.prezzo_unitario,
DATE(co_righe_documenti.updated_at) AS updated_at
FROM
co_documenti
INNER JOIN co_righe_documenti ON co_righe_documenti.iddocumento = co_documenti.id
INNER JOIN mg_articoli ON mg_articoli.id = co_righe_documenti.idarticolo
INNER JOIN dt_righe_ddt ON dt_righe_ddt.idarticolo = mg_articoli.id
WHERE
co_documenti.idanagrafica ='.prepare($id_anagrafica).' AND co_righe_documenti.idarticolo ='.prepare($riga['idarticolo']).' AND co_documenti.idstatodocumento IN (SELECT id FROM co_statidocumento WHERE descrizione = "Emessa" OR descrizione = "Pagato" OR descrizione = "Parzialmente pagato")
GROUP BY
mg_articoli.id, co_righe_documenti.id
ORDER BY
updated_at DESC'
)[0];
?>
<tr>
<td><?= $riga['codice'] ?></td>
<td><?= $riga['descrizione'] ?></td>
<td>
<div>
{[ "type": "number", "label": "", "data-id":"<?php echo $riga['id']; ?>","name": "nuovo_prezzo_unitario[]", "value": "<?php echo numberFormat($riga['prezzo_unitario'], 2); ?>"]}
</div>
</td>
<td class="text-center"><?php
if (isset($ultimo_prezzo_preventivo)) {
echo moneyFormat($ultimo_prezzo_preventivo['prezzo_unitario'], 2) . (!empty($ultimo_prezzo_preventivo['updated_at']) ? ' <br><small class="help-block tip" title="'.dateFormat($ultimo_prezzo_preventivo['updated_at']).'">' . (new Carbon($ultimo_prezzo_preventivo['updated_at']))->diffForHumans().'</small>' : '');
} else {
echo 'n.d.';
}
?></td>
<td class="text-center"><?php
if (isset($ultimo_prezzo_vendita)) {
echo moneyFormat($ultimo_prezzo_vendita['prezzo_unitario'], 2) . (!empty($ultimo_prezzo_vendita['updated_at']) ? ' <br><small class="help-block tip" title="'.dateFormat($ultimo_prezzo_vendita['updated_at']).'">' . (new Carbon($ultimo_prezzo_vendita['updated_at']))->diffForHumans().'</small>' : '');
} else {
echo 'n.d.';
}
?></td>
</tr>
<?php } ?>
</tbody>
</table>
<a class="btn btn-primary btn-edit">
<i class="fa fa-edit"></i> <?php echo tr('Modifica'); ?>
</a>
</form>
<script>
$(document).ready(function() {
$('.btn-edit').on('click', function() {
var id = [];
$('input[name^="nuovo_prezzo_unitario"]').each(function() {
id.push({
'id': $(this).data('id'),
'price': $(this).val(),
});
});
$.ajax({
url: globals.rootdir + "/actions.php",
type: "POST",
dataType: "json",
data: {
id_module: globals.id_module,
id_record: globals.id_record,
op: "edit-price",
backto: "record-edit",
righe: id,
},
success: function (response) {
location.reload();
},
error: function() {
location.reload();
}
});
});
});
</script>

View File

@ -372,6 +372,10 @@ if (!$block_edit && sizeof($righe) > 0) {
<button type="button" class="btn btn-xs btn-default disabled" id="elimina_righe" onclick="rimuoviRiga(getSelectData());">
<i class="fa fa-trash"></i>
</button>
<button type="button" class="btn btn-xs btn-default disabled" id="confronta_righe" onclick="confrontaRighe(getSelectData());">
Confronta prezzi
</button>
</div>';
}
echo '
@ -405,6 +409,10 @@ function getSelectData() {
return data;
}
function confrontaRighe(id) {
openModal("'.tr('Confronta prezzi').'", "'.$module->fileurl('modals/confronta_righe.php').'?id_module=" + globals.id_module + "&id_record=" + globals.id_record + "&righe=" + id + "&id_anagrafica='.$ordine->idanagrafica.'&direzione='.$dir.'");
}
function rimuoviRiga(id) {
swal({
title: "'.tr('Rimuovere queste righe?').'",
@ -508,9 +516,11 @@ $(".check").on("change", function() {
if (checked) {
$("#elimina_righe").removeClass("disabled");
$("#duplica_righe").removeClass("disabled");
$("#confronta_righe").removeClass("disabled");
} else {
$("#elimina_righe").addClass("disabled");
$("#duplica_righe").addClass("disabled");
$("#confronta_righe").addClass("disabled");
}
});

View File

@ -1063,6 +1063,20 @@ switch (post('op')) {
echo json_encode($result);
break;
case 'edit-price':
$righe = $post['righe'];
foreach ($righe as $riga) {
$dbo->query(
'UPDATE co_righe_documenti
SET prezzo_unitario = '.$riga['price'].'
WHERE id = '.$riga['id']
);
}
flash()->info(tr('Prezzi aggiornati!'));
break;
}
// Nota di debito

View File

@ -0,0 +1,153 @@
<?php
/*
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
* Copyright (C) DevCode s.r.l.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
include_once __DIR__.'/../../../core.php';
use Carbon\Carbon;
use Modules\Fatture\Fattura;
$documento = Fattura::find($id_record);
$id_anagrafica = $documento->idanagrafica;
$direzione = $documento->direzione;
$righe = $_GET['righe'];
$righe = $dbo->fetchArray(
'SELECT mg_articoli.descrizione, mg_articoli.codice, co_righe_documenti.*
FROM co_righe_documenti
JOIN mg_articoli ON mg_articoli.id = co_righe_documenti.idarticolo
WHERE co_righe_documenti.id IN ('.$righe.')'
);
?>
<form action="" method="post" id="add-form">
<table class="table table-striped table-hover table-condensed table-bordered m-3">
<thead>
<tr>
<th width="35" class="text-center" ><?php echo tr('Codice'); ?></th>
<th><?php echo tr('Descrizione'); ?></th>
<th class="text-center" width="150"><?php echo tr('Prezzo corrente'); ?></th>
<th class="text-center" width="150"><?php echo tr('Ultimo preventivo'); ?></th>
<th class="text-center" width="150"><?php echo tr('Ultima vendita'); ?></th>
</tr>
</thead>
<tbody>
<?php foreach ($righe as $riga) { ?>
<?php
$prezzi_ivati = setting('Utilizza prezzi di vendita comprensivi di IVA');
$ultimo_prezzo_preventivo = $dbo->fetchArray(
'SELECT
co_righe_documenti.idarticolo,
co_righe_preventivi.prezzo_unitario,
DATE(co_righe_preventivi.updated_at) AS updated_at
FROM
co_preventivi
INNER JOIN co_righe_preventivi ON co_righe_preventivi.idpreventivo = co_preventivi.id
INNER JOIN mg_articoli ON mg_articoli.id = co_righe_preventivi.idarticolo
INNER JOIN co_righe_documenti ON co_righe_documenti.idarticolo = mg_articoli.id
WHERE
co_preventivi.idanagrafica = '.prepare($id_anagrafica).' AND co_righe_documenti.idarticolo = '.prepare($riga['idarticolo']).' AND co_preventivi.idstato NOT IN (SELECT id FROM co_statipreventivi WHERE descrizione = "Bozza" OR descrizione = "In attesa di conferma" OR descrizione = "Rifiutato")
GROUP BY
mg_articoli.id, co_righe_preventivi.id
ORDER BY
updated_at DESC'
)[0];
$ultimo_prezzo_vendita = $dbo->fetchArray(
'SELECT
co_righe_documenti.idarticolo,
co_righe_documenti.prezzo_unitario,
DATE(co_righe_documenti.updated_at) AS updated_at
FROM
co_documenti
LEFT JOIN co_righe_documenti ON co_righe_documenti.iddocumento = co_documenti.id
LEFT JOIN mg_articoli ON mg_articoli.id = co_righe_documenti.idarticolo
WHERE
co_documenti.idanagrafica = '.prepare($id_anagrafica).' AND co_righe_documenti.idarticolo = '.prepare($riga['idarticolo']).' AND co_documenti.idstatodocumento IN (SELECT id FROM co_statidocumento WHERE descrizione = "Emessa" OR descrizione = "Pagato" OR descrizione = "Parzialmente pagato")
GROUP BY
mg_articoli.id, co_righe_documenti.id
ORDER BY
updated_at DESC'
)[0];
?>
<tr>
<td><?= $riga['codice'] ?></td>
<td><?= $riga['descrizione'] ?></td>
<td>
<div>
{[ "type": "number", "label": "", "data-id":"<?php echo $riga['id']; ?>","name": "nuovo_prezzo_unitario[]", "value": "<?php echo numberFormat($riga['prezzo_unitario'], 2); ?>"]}
</div>
</td>
<td class="text-center"><?php
if (isset($ultimo_prezzo_preventivo)) {
echo moneyFormat($ultimo_prezzo_preventivo['prezzo_unitario'], 2) . (!empty($ultimo_prezzo_preventivo['updated_at']) ? ' <br><small class="help-block tip" title="'.dateFormat($ultimo_prezzo_preventivo['updated_at']).'">' . (new Carbon($ultimo_prezzo_preventivo['updated_at']))->diffForHumans().'</small>' : '');
} else {
echo 'n.d.';
}
?></td>
<td class="text-center"><?php
if (isset($ultimo_prezzo_vendita)) {
echo moneyFormat($ultimo_prezzo_vendita['prezzo_unitario'], 2) . (!empty($ultimo_prezzo_vendita['updated_at']) ? ' <br><small class="help-block tip" title="'.dateFormat($ultimo_prezzo_vendita['updated_at']).'">' . (new Carbon($ultimo_prezzo_vendita['updated_at']))->diffForHumans().'</small>' : '');
} else {
echo 'n.d.';
}
?></td>
</tr>
<?php } ?>
</tbody>
</table>
<a class="btn btn-primary btn-edit">
<i class="fa fa-edit"></i> <?php echo tr('Modifica'); ?>
</a>
</form>
<script>
$(document).ready(function() {
$('.btn-edit').on('click', function() {
var id = [];
$('input[name^="nuovo_prezzo_unitario"]').each(function() {
id.push({
'id': $(this).data('id'),
'price': $(this).val(),
});
});
$.ajax({
url: globals.rootdir + "/actions.php",
type: "POST",
dataType: "json",
data: {
id_module: globals.id_module,
id_record: globals.id_record,
op: "edit-price",
backto: "record-edit",
righe: id,
},
success: function (response) {
location.reload();
},
error: function() {
location.reload();
}
});
});
});
</script>

View File

@ -506,6 +506,9 @@ if (!$block_edit && sizeof($righe) > 0) {
<button type="button" class="btn btn-xs btn-default disabled" id="elimina_righe" onclick="rimuoviRiga(getSelectData());">
<i class="fa fa-trash"></i>
</button>
<button type="button" class="btn btn-xs btn-default disabled" id="confronta_righe" onclick="confrontaRighe(getSelectData());">
Confronta prezzi
</button>
</div>';
}
echo '
@ -539,6 +542,10 @@ function getSelectData() {
return data;
}
function confrontaRighe(id) {
openModal("'.tr('Confronta prezzi').'", "'.$module->fileurl('modals/confronta_righe.php').'?id_module=" + globals.id_module + "&id_record=" + globals.id_record + "&righe=" + id + "&id_anagrafica='.$ordine->idanagrafica.'&direzione='.$dir.'");
}
function rimuoviRiga(id) {
swal({
title: "'.tr('Rimuovere queste righe?').'",
@ -642,9 +649,11 @@ $(".check").on("change", function() {
if (checked) {
$("#elimina_righe").removeClass("disabled");
$("#duplica_righe").removeClass("disabled");
$("#confronta_righe").removeClass("disabled");
} else {
$("#elimina_righe").addClass("disabled");
$("#duplica_righe").addClass("disabled");
$("#confronta_righe").addClass("disabled");
}
});

View File

@ -1156,5 +1156,20 @@ switch (post('op')) {
flash()->info(tr('Quantità aggiornata!'));
}
break;
case 'edit-price':
$righe = $post['righe'];
foreach ($righe as $riga) {
$dbo->query(
'UPDATE in_righe_interventi
SET prezzo_unitario = '.$riga['price'].'
WHERE id = '.$riga['id']
);
}
flash()->info(tr('Prezzi aggiornati!'));
break;
}

View File

@ -0,0 +1,154 @@
<?php
/*
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
* Copyright (C) DevCode s.r.l.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
include_once __DIR__.'/../../../core.php';
use Carbon\Carbon;
use Modules\Interventi\Intervento;
$intervento = Intervento::find($id_record);
$id_anagrafica = $intervento->idanagrafica;
$direzione = $intervento->direzione;
$righe = $_GET['righe'];
$righe = $dbo->fetchArray(
'SELECT mg_articoli.descrizione, mg_articoli.codice, in_righe_interventi.*
FROM in_righe_interventi
JOIN mg_articoli ON mg_articoli.id = in_righe_interventi.idarticolo
WHERE in_righe_interventi.id IN ('.$righe.')'
);
?>
<form action="" method="post" id="add-form">
<table class="table table-striped table-hover table-condensed table-bordered m-3">
<thead>
<tr>
<th width="35" class="text-center" ><?php echo tr('Codice'); ?></th>
<th><?php echo tr('Descrizione'); ?></th>
<th class="text-center" width="150"><?php echo tr('Prezzo corrente'); ?></th>
<th class="text-center" width="150"><?php echo tr('Ultimo preventivo'); ?></th>
<th class="text-center" width="150"><?php echo tr('Ultima vendita'); ?></th>
</tr>
</thead>
<tbody>
<?php foreach ($righe as $riga) { ?>
<?php
$prezzi_ivati = setting('Utilizza prezzi di vendita comprensivi di IVA');
$ultimo_prezzo_preventivo = $dbo->fetchArray(
'SELECT
in_righe_interventi.idarticolo,
co_righe_preventivi.prezzo_unitario,
DATE(co_righe_preventivi.updated_at) AS updated_at
FROM
co_preventivi
INNER JOIN co_righe_preventivi ON co_righe_preventivi.idpreventivo = co_preventivi.id
INNER JOIN mg_articoli ON mg_articoli.id = co_righe_preventivi.idarticolo
INNER JOIN in_righe_interventi ON in_righe_interventi.idarticolo = mg_articoli.id
WHERE
co_preventivi.idanagrafica ='.prepare($id_anagrafica).' AND in_righe_interventi.idarticolo ='.prepare($riga['idarticolo']).' AND co_preventivi.idstato NOT IN (SELECT id FROM co_statipreventivi WHERE descrizione = "Bozza" OR descrizione = "In attesa di conferma" OR descrizione = "Rifiutato")
GROUP BY
mg_articoli.id, co_righe_preventivi.id
ORDER BY
updated_at DESC'
)[0];
$ultimo_prezzo_vendita = $dbo->fetchArray(
'SELECT
in_righe_interventi.idarticolo,
co_righe_documenti.prezzo_unitario,
DATE(co_righe_documenti.updated_at) AS updated_at
FROM
co_documenti
INNER JOIN co_righe_documenti ON co_righe_documenti.iddocumento = co_documenti.id
INNER JOIN mg_articoli ON mg_articoli.id = co_righe_documenti.idarticolo
INNER JOIN in_righe_interventi ON in_righe_interventi.idarticolo = mg_articoli.id
WHERE
co_documenti.idanagrafica ='.prepare($id_anagrafica).' AND co_righe_documenti.idarticolo ='.prepare($riga['idarticolo']).' AND co_documenti.idstatodocumento IN (SELECT id FROM co_statidocumento WHERE descrizione = "Emessa" OR descrizione = "Pagato" OR descrizione = "Parzialmente pagato")
GROUP BY
mg_articoli.id, co_righe_documenti.id
ORDER BY
updated_at DESC'
)[0];
?>
<tr>
<td><?= $riga['codice'] ?></td>
<td><?= $riga['descrizione'] ?></td>
<td>
<div>
{[ "type": "number", "label": "", "data-id":"<?php echo $riga['id']; ?>","name": "nuovo_prezzo_unitario[]", "value": "<?php echo numberFormat($riga['prezzo_unitario'], 2); ?>"]}
</div>
</td>
<td class="text-center"><?php
if (isset($ultimo_prezzo_preventivo)) {
echo moneyFormat($ultimo_prezzo_preventivo['prezzo_unitario'], 2) . (!empty($ultimo_prezzo_preventivo['updated_at']) ? ' <br><small class="help-block tip" title="'.dateFormat($ultimo_prezzo_preventivo['updated_at']).'">' . (new Carbon($ultimo_prezzo_preventivo['updated_at']))->diffForHumans().'</small>' : '');
} else {
echo 'n.d.';
}
?></td>
<td class="text-center"><?php
if (isset($ultimo_prezzo_vendita)) {
echo moneyFormat($ultimo_prezzo_vendita['prezzo_unitario'], 2) . (!empty($ultimo_prezzo_vendita['updated_at']) ? ' <br><small class="help-block tip" title="'.dateFormat($ultimo_prezzo_vendita['updated_at']).'">' . (new Carbon($ultimo_prezzo_vendita['updated_at']))->diffForHumans().'</small>' : '');
} else {
echo 'n.d.';
}
?></td>
</tr>
<?php } ?>
</tbody>
</table>
<a class="btn btn-primary btn-edit">
<i class="fa fa-edit"></i> <?php echo tr('Modifica'); ?>
</a>
</form>
<script>
$(document).ready(function() {
$('.btn-edit').on('click', function() {
var id = [];
$('input[name^="nuovo_prezzo_unitario"]').each(function() {
id.push({
'id': $(this).data('id'),
'price': $(this).val(),
});
});
$.ajax({
url: globals.rootdir + "/actions.php",
type: "POST",
dataType: "json",
data: {
id_module: globals.id_module,
id_record: globals.id_record,
op: "edit-price",
backto: "record-edit",
righe: id,
},
success: function (response) {
location.reload();
},
error: function() {
location.reload();
}
});
});
});
</script>

View File

@ -281,6 +281,9 @@ if (!$block_edit && sizeof($righe) > 0) {
<button type="button" class="btn btn-xs btn-default disabled" id="elimina_righe" onclick="rimuoviRiga(getSelectData());">
<i class="fa fa-trash"></i>
</button>
<button type="button" class="btn btn-xs btn-default disabled" id="confronta_righe" onclick="confrontaRighe(getSelectData());">
Confronta prezzi
</button>
</div>';
}
echo '
@ -314,6 +317,10 @@ function getSelectData() {
return data;
}
function confrontaRighe(id) {
openModal("'.tr('Confronta prezzi').'", "'.$module->fileurl('modals/confronta_righe.php').'?id_module=" + globals.id_module + "&id_record=" + globals.id_record + "&righe=" + id + "&id_anagrafica='.$ordine->idanagrafica.'&direzione='.$dir.'");
}
function rimuoviRiga(id) {
swal({
title: "'.tr('Rimuovere queste righe?').'",
@ -409,9 +416,11 @@ $(".check").on("change", function() {
if (checked) {
$("#elimina_righe").removeClass("disabled");
$("#duplica_righe").removeClass("disabled");
$("#confronta_righe").removeClass("disabled");
} else {
$("#elimina_righe").addClass("disabled");
$("#duplica_righe").addClass("disabled");
$("#confronta_righe").addClass("disabled");
}
});

View File

@ -713,5 +713,20 @@ switch (post('op')) {
flash()->info(tr('Quantità aggiornata!'));
}
break;
case 'edit-price':
$righe = $post['righe'];
foreach ($righe as $riga) {
$dbo->query(
'UPDATE or_righe_ordini
SET prezzo_unitario = '.$riga['price'].'
WHERE id = '.$riga['id']
);
}
flash()->info(tr('Prezzi aggiornati!'));
break;
}

View File

@ -0,0 +1,154 @@
<?php
/*
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
* Copyright (C) DevCode s.r.l.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
include_once __DIR__.'/../../../core.php';
use Carbon\Carbon;
use Modules\Ordini\Ordine;
$ordine = Ordine::find($id_record);
$id_anagrafica = $ordine->idanagrafica;
$direzione = $ordine->direzione;
$righe = $_GET['righe'];
$righe = $dbo->fetchArray(
'SELECT mg_articoli.descrizione, mg_articoli.codice, or_righe_ordini.*
FROM or_righe_ordini
JOIN mg_articoli ON mg_articoli.id = or_righe_ordini.idarticolo
WHERE or_righe_ordini.id IN ('.$righe.')'
);
?>
<form action="" method="post" id="add-form">
<table class="table table-striped table-hover table-condensed table-bordered m-3">
<thead>
<tr>
<th width="35" class="text-center" ><?php echo tr('Codice'); ?></th>
<th><?php echo tr('Descrizione'); ?></th>
<th class="text-center" width="150"><?php echo tr('Prezzo corrente'); ?></th>
<th class="text-center" width="150"><?php echo tr('Ultimo preventivo'); ?></th>
<th class="text-center" width="150"><?php echo tr('Ultima vendita'); ?></th>
</tr>
</thead>
<tbody>
<?php foreach ($righe as $riga) { ?>
<?php
$prezzi_ivati = setting('Utilizza prezzi di vendita comprensivi di IVA');
$ultimo_prezzo_preventivo = $dbo->fetchArray(
'SELECT
or_righe_ordini.idarticolo,
co_righe_preventivi.prezzo_unitario,
DATE(co_righe_preventivi.updated_at) AS updated_at
FROM
co_preventivi
INNER JOIN co_righe_preventivi ON co_righe_preventivi.idpreventivo = co_preventivi.id
INNER JOIN mg_articoli ON mg_articoli.id = co_righe_preventivi.idarticolo
INNER JOIN or_righe_ordini ON or_righe_ordini.idarticolo = mg_articoli.id
WHERE
co_preventivi.idanagrafica ='.prepare($id_anagrafica).' AND or_righe_ordini.idarticolo ='.prepare($riga['idarticolo']).' AND co_preventivi.idstato NOT IN (SELECT id FROM co_statipreventivi WHERE descrizione = "Bozza" OR descrizione = "In attesa di conferma" OR descrizione = "Rifiutato")
GROUP BY
mg_articoli.id, co_righe_preventivi.id
ORDER BY
updated_at DESC'
)[0];
$ultimo_prezzo_vendita = $dbo->fetchArray(
'SELECT
or_righe_ordini.idarticolo,
co_righe_documenti.prezzo_unitario,
DATE(co_righe_documenti.updated_at) AS updated_at
FROM
co_documenti
INNER JOIN co_righe_documenti ON co_righe_documenti.iddocumento = co_documenti.id
INNER JOIN mg_articoli ON mg_articoli.id = co_righe_documenti.idarticolo
INNER JOIN or_righe_ordini ON or_righe_ordini.idarticolo = mg_articoli.id
WHERE
co_documenti.idanagrafica ='.prepare($id_anagrafica).' AND co_righe_documenti.idarticolo ='.prepare($riga['idarticolo']).' AND co_documenti.idstatodocumento IN (SELECT id FROM co_statidocumento WHERE descrizione = "Emessa" OR descrizione = "Pagato" OR descrizione = "Parzialmente pagato")
GROUP BY
mg_articoli.id, co_righe_documenti.id
ORDER BY
updated_at DESC'
)[0];
?>
<tr>
<td><?= $riga['codice'] ?></td>
<td><?= $riga['descrizione'] ?></td>
<td>
<div>
{[ "type": "number", "label": "", "data-id":"<?php echo $riga['id']; ?>","name": "nuovo_prezzo_unitario[]", "value": "<?php echo numberFormat($riga['prezzo_unitario'], 2); ?>"]}
</div>
</td>
<td class="text-center"><?php
if (isset($ultimo_prezzo_preventivo)) {
echo moneyFormat($ultimo_prezzo_preventivo['prezzo_unitario'], 2) . (!empty($ultimo_prezzo_preventivo['updated_at']) ? ' <br><small class="help-block tip" title="'.dateFormat($ultimo_prezzo_preventivo['updated_at']).'">' . (new Carbon($ultimo_prezzo_preventivo['updated_at']))->diffForHumans().'</small>' : '');
} else {
echo 'n.d.';
}
?></td>
<td class="text-center"><?php
if (isset($ultimo_prezzo_vendita)) {
echo moneyFormat($ultimo_prezzo_vendita['prezzo_unitario'], 2) . (!empty($ultimo_prezzo_vendita['updated_at']) ? ' <br><small class="help-block tip" title="'.dateFormat($ultimo_prezzo_vendita['updated_at']).'">' . (new Carbon($ultimo_prezzo_vendita['updated_at']))->diffForHumans().'</small>' : '');
} else {
echo 'n.d.';
}
?></td>
</tr>
<?php } ?>
</tbody>
</table>
<a class="btn btn-primary btn-edit">
<i class="fa fa-edit"></i> <?php echo tr('Modifica'); ?>
</a>
</form>
<script>
$(document).ready(function() {
$('.btn-edit').on('click', function() {
var id = [];
$('input[name^="nuovo_prezzo_unitario"]').each(function() {
id.push({
'id': $(this).data('id'),
'price': $(this).val(),
});
});
$.ajax({
url: globals.rootdir + "/actions.php",
type: "POST",
dataType: "json",
data: {
id_module: globals.id_module,
id_record: globals.id_record,
op: "edit-price",
backto: "record-edit",
righe: id,
},
success: function (response) {
location.reload();
},
error: function() {
location.reload();
}
});
});
});
</script>

View File

@ -417,6 +417,10 @@ if (!$block_edit && sizeof($righe) > 0) {
<button type="button" class="btn btn-xs btn-default disabled" id="elimina_righe" onclick="rimuoviRiga(getSelectData());">
<i class="fa fa-trash"></i>
</button>
<button type="button" class="btn btn-xs btn-default disabled" id="confronta_righe" onclick="confrontaRighe(getSelectData());">
Confronta prezzi
</button>
</div>';
}
echo '
@ -450,6 +454,10 @@ function getSelectData() {
return data;
}
function confrontaRighe(id) {
openModal("'.tr('Confronta prezzi').'", "'.$module->fileurl('modals/confronta_righe.php').'?id_module=" + globals.id_module + "&id_record=" + globals.id_record + "&righe=" + id + "&id_anagrafica='.$ordine->idanagrafica.'&direzione='.$dir.'");
}
function rimuoviRiga(id) {
swal({
title: "'.tr('Rimuovere queste righe?').'",
@ -553,9 +561,11 @@ $(".check").on("change", function() {
if (checked) {
$("#elimina_righe").removeClass("disabled");
$("#duplica_righe").removeClass("disabled");
$("#confronta_righe").removeClass("disabled");
} else {
$("#elimina_righe").addClass("disabled");
$("#duplica_righe").addClass("disabled");
$("#confronta_righe").addClass("disabled");
}
});

View File

@ -538,4 +538,20 @@ switch (post('op')) {
}
break;
case 'edit-price':
$righe = $post['righe'];
foreach ($righe as $riga) {
$dbo->query(
'UPDATE co_righe_preventivi
SET prezzo_unitario = '.$riga['price'].'
WHERE id = '.$riga['id']
);
}
flash()->info(tr('Prezzi aggiornati!'));
break;
}

View File

@ -0,0 +1,153 @@
<?php
/*
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
* Copyright (C) DevCode s.r.l.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
include_once __DIR__.'/../../../core.php';
use Carbon\Carbon;
use Modules\Preventivi\Preventivo;
$preventivo = Preventivo::find($id_record);
$id_anagrafica = $preventivo->idanagrafica;
$direzione = $preventivo->direzione;
$righe = $_GET['righe'];
$righe = $dbo->fetchArray(
'SELECT mg_articoli.descrizione, mg_articoli.codice, co_righe_preventivi.*
FROM co_righe_preventivi
JOIN mg_articoli ON mg_articoli.id = co_righe_preventivi.idarticolo
WHERE co_righe_preventivi.id IN ('.$righe.')'
);
?>
<form action="" method="post" id="add-form">
<table class="table table-striped table-hover table-condensed table-bordered m-3">
<thead>
<tr>
<th width="35" class="text-center" ><?php echo tr('Codice'); ?></th>
<th><?php echo tr('Descrizione'); ?></th>
<th class="text-center" width="150"><?php echo tr('Prezzo corrente'); ?></th>
<th class="text-center" width="150"><?php echo tr('Ultimo preventivo'); ?></th>
<th class="text-center" width="150"><?php echo tr('Ultima vendita'); ?></th>
</tr>
</thead>
<tbody>
<?php foreach ($righe as $riga) { ?>
<?php
$prezzi_ivati = setting('Utilizza prezzi di vendita comprensivi di IVA');
$ultimo_prezzo_preventivo = $dbo->fetchArray(
'SELECT
co_righe_preventivi.idarticolo,
co_righe_preventivi.prezzo_unitario,
DATE(co_righe_preventivi.updated_at) AS updated_at
FROM
co_preventivi
INNER JOIN co_righe_preventivi ON co_righe_preventivi.idpreventivo = co_preventivi.id
INNER JOIN mg_articoli ON mg_articoli.id = co_righe_preventivi.idarticolo
WHERE
co_preventivi.idanagrafica ='.prepare($id_anagrafica).' AND co_righe_preventivi.idarticolo ='.prepare($riga['idarticolo']).' AND co_preventivi.idstato NOT IN (SELECT id FROM co_statipreventivi WHERE descrizione = "Bozza" OR descrizione = "In attesa di conferma" OR descrizione = "Rifiutato")
GROUP BY
mg_articoli.id, co_righe_preventivi.id
ORDER BY
updated_at DESC'
)[0];
$ultimo_prezzo_vendita = $dbo->fetchArray(
'SELECT
co_righe_preventivi.idarticolo,
co_righe_documenti.prezzo_unitario,
DATE(co_righe_documenti.updated_at) AS updated_at
FROM
co_documenti
INNER JOIN co_righe_documenti ON co_righe_documenti.iddocumento = co_documenti.id
INNER JOIN mg_articoli ON mg_articoli.id = co_righe_documenti.idarticolo
INNER JOIN co_righe_preventivi ON co_righe_preventivi.idarticolo = mg_articoli.id
WHERE
co_documenti.idanagrafica ='.prepare($id_anagrafica).' AND co_righe_documenti.idarticolo ='.prepare($riga['idarticolo']).' AND co_documenti.idstatodocumento IN (SELECT id FROM co_statidocumento WHERE descrizione = "Emessa" OR descrizione = "Pagato" OR descrizione = "Parzialmente pagato")
GROUP BY
mg_articoli.id, co_righe_documenti.id
ORDER BY
updated_at DESC'
)[0];
?>
<tr>
<td><?= $riga['codice'] ?></td>
<td><?= $riga['descrizione'] ?></td>
<td>
<div>
{[ "type": "number", "label": "", "data-id":"<?php echo $riga['id']; ?>","name": "nuovo_prezzo_unitario[]", "value": "<?php echo numberFormat($riga['prezzo_unitario'], 2); ?>"]}
</div>
</td>
<td class="text-center"><?php
if (isset($ultimo_prezzo_preventivo)) {
echo moneyFormat($ultimo_prezzo_preventivo['prezzo_unitario'], 2) . (!empty($ultimo_prezzo_preventivo['updated_at']) ? ' <br><small class="help-block tip" title="'.dateFormat($ultimo_prezzo_preventivo['updated_at']).'">' . (new Carbon($ultimo_prezzo_preventivo['updated_at']))->diffForHumans().'</small>' : '');
} else {
echo 'n.d.';
}
?></td>
<td class="text-center"><?php
if (isset($ultimo_prezzo_vendita)) {
echo moneyFormat($ultimo_prezzo_vendita['prezzo_unitario'], 2) . (!empty($ultimo_prezzo_vendita['updated_at']) ? ' <br><small class="help-block tip" title="'.dateFormat($ultimo_prezzo_vendita['updated_at']).'">' . (new Carbon($ultimo_prezzo_vendita['updated_at']))->diffForHumans().'</small>' : '');
} else {
echo 'n.d.';
}
?></td>
</tr>
<?php } ?>
</tbody>
</table>
<a class="btn btn-primary btn-edit">
<i class="fa fa-edit"></i> <?php echo tr('Modifica'); ?>
</a>
</form>
<script>
$(document).ready(function() {
$('.btn-edit').on('click', function() {
var id = [];
$('input[name^="nuovo_prezzo_unitario"]').each(function() {
id.push({
'id': $(this).data('id'),
'price': $(this).val(),
});
});
$.ajax({
url: globals.rootdir + "/actions.php",
type: "POST",
dataType: "json",
data: {
id_module: globals.id_module,
id_record: globals.id_record,
op: "edit-price",
backto: "record-edit",
righe: id,
},
success: function (response) {
location.reload();
},
error: function() {
location.reload();
}
});
});
});
</script>

View File

@ -385,6 +385,9 @@ if (!$block_edit && sizeof($righe) > 0) {
<button type="button" class="btn btn-xs btn-default disabled" id="elimina_righe" onclick="rimuoviRiga(getSelectData());">
<i class="fa fa-trash"></i>
</button>
<button type="button" class="btn btn-xs btn-default disabled" id="confronta_righe" onclick="confrontaRighe(getSelectData());">
Confronta prezzi
</button>
</div>';
}
echo '
@ -418,6 +421,10 @@ function getSelectData() {
return data;
}
function confrontaRighe(id) {
openModal("'.tr('Confronta prezzi').'", "'.$module->fileurl('modals/confronta_righe.php').'?id_module=" + globals.id_module + "&id_record=" + globals.id_record + "&righe=" + id + "&id_anagrafica='.$ordine->idanagrafica.'&direzione='.$dir.'");
}
function rimuoviRiga(id) {
swal({
title: "'.tr('Rimuovere queste righe?').'",
@ -505,9 +512,11 @@ $(".check").on("change", function() {
if (checked) {
$("#elimina_righe").removeClass("disabled");
$("#duplica_righe").removeClass("disabled");
$("#confronta_righe").removeClass("disabled");
} else {
$("#elimina_righe").addClass("disabled");
$("#duplica_righe").addClass("disabled");
$("#confronta_righe").addClass("disabled");
}
});