Merge branch 'master' of https://github.com/devcode-it/openstamanager
This commit is contained in:
commit
6004ec19a2
|
@ -21,6 +21,8 @@ var isMobile = {
|
|||
|
||||
};
|
||||
|
||||
|
||||
|
||||
// Aggiunta dell'ingranaggio all'unload della pagina
|
||||
$(window).on("beforeunload", function () {
|
||||
$("#main_loading").show();
|
||||
|
@ -420,6 +422,7 @@ function launch_modal(title, href, init_modal, id) {
|
|||
id = '#bs-popup';
|
||||
}
|
||||
|
||||
|
||||
if (init_modal == null) {
|
||||
init_modal = 1;
|
||||
}
|
||||
|
@ -427,9 +430,13 @@ function launch_modal(title, href, init_modal, id) {
|
|||
$('html').addClass('modal-open');
|
||||
|
||||
$(id).on('hidden.bs.modal', function () {
|
||||
|
||||
if ($('.modal-backdrop').length < 1 ) {
|
||||
$('html').removeClass('modal-open');
|
||||
$(this).html('');
|
||||
$(this).data('modal', null);
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
// Lettura contenuto div
|
||||
|
|
|
@ -255,7 +255,7 @@ $totale = sum([
|
|||
|
||||
$netto_a_pagare = sum([
|
||||
$totale,
|
||||
$marca_da_bollo,
|
||||
$records[0]['bollo'],
|
||||
-$records[0]['ritenutaacconto'],
|
||||
]);
|
||||
|
||||
|
@ -363,8 +363,6 @@ if (abs($records[0]['ritenutaacconto']) > 0) {
|
|||
</td>
|
||||
<td></td>
|
||||
</tr>';
|
||||
|
||||
//$netto_a_pagare -= $records[0]['ritenutaacconto'];
|
||||
}
|
||||
|
||||
// NETTO A PAGARE
|
||||
|
|
|
@ -34,7 +34,7 @@ if (empty($idriga)) {
|
|||
|
||||
$listino = $dbo->fetchArray('SELECT prc_guadagno FROM mg_listini WHERE id = (SELECT idlistino_vendite FROM an_anagrafiche WHERE idanagrafica = '.prepare($idanagrafica).')');
|
||||
if (!empty($listino[0]['prc_guadagno'])) {
|
||||
$sconto = $listino[0]['prc_guadagno'];
|
||||
$sconto_unitario = $listino[0]['prc_guadagno'];
|
||||
$tipo_sconto = 'PRC';
|
||||
}
|
||||
} else {
|
||||
|
|
|
@ -21,7 +21,7 @@ if (empty($idriga)) {
|
|||
$prezzo_acquisto = '0';
|
||||
|
||||
if (!empty($rs[0]['prc_guadagno'])) {
|
||||
$sconto = $rs[0]['prc_guadagno'];
|
||||
$sconto_unitario = $rs[0]['prc_guadagno'];
|
||||
$tipo_sconto = 'PRC';
|
||||
}
|
||||
} else {
|
||||
|
|
|
@ -255,9 +255,10 @@ switch (post('op')) {
|
|||
$rs2 = $dbo->fetchArray('SELECT descrizione, percentuale, indetraibile FROM co_iva WHERE id='.prepare($idiva));
|
||||
$iva = ($subtot - $sconto) / 100 * $rs2[0]['percentuale'];
|
||||
$iva_indetraibile = $iva / 100 * $rs2[0]['indetraibile'];
|
||||
$desc_iva = $rs2[0]['descrizione'];
|
||||
|
||||
// Modifica riga generica sul documento
|
||||
$query = 'UPDATE co_righe_preventivi SET idiva='.prepare($idiva).', iva='.prepare($iva).', iva_indetraibile='.prepare($iva_indetraibile).', descrizione='.prepare($descrizione).', subtotale='.prepare($subtot).', sconto='.prepare($sconto).', sconto_unitario='.prepare($sconto_unitario).', tipo_sconto='.prepare($tipo_sconto).', um='.prepare($um).', qta='.prepare($qta).' WHERE id='.prepare($idriga);
|
||||
$query = 'UPDATE co_righe_preventivi SET idiva='.prepare($idiva).', desc_iva='.prepare($desc_iva).', iva='.prepare($iva).', iva_indetraibile='.prepare($iva_indetraibile).', descrizione='.prepare($descrizione).', subtotale='.prepare($subtot).', sconto='.prepare($sconto).', sconto_unitario='.prepare($sconto_unitario).', tipo_sconto='.prepare($tipo_sconto).', um='.prepare($um).', qta='.prepare($qta).' WHERE id='.prepare($idriga);
|
||||
$dbo->query($query);
|
||||
|
||||
$_SESSION['infos'][] = 'Riga modificata!';
|
||||
|
|
|
@ -5,7 +5,7 @@ include_once __DIR__.'/../../core.php';
|
|||
/*
|
||||
ARTICOLI + RIGHE GENERICHE
|
||||
*/
|
||||
$q_art = "SELECT *, IFNULL((SELECT codice FROM mg_articoli WHERE id=idarticolo),'') AS codice, IFNULL((SELECT descrizione FROM co_iva WHERE id=idiva),'') AS desc_iva FROM co_righe_preventivi WHERE idpreventivo=".prepare($id_record).' ORDER BY `order`';
|
||||
$q_art = "SELECT *, IFNULL((SELECT codice FROM mg_articoli WHERE id=idarticolo), '') AS codice FROM co_righe_preventivi WHERE idpreventivo=".prepare($id_record).' ORDER BY `order`';
|
||||
$rs = $dbo->fetchArray($q_art);
|
||||
|
||||
echo '
|
||||
|
|
|
@ -192,6 +192,19 @@ if (!empty($records[0]['note'])) {
|
|||
<p>'.nl2br($records[0]['note']).'</p>';
|
||||
}
|
||||
|
||||
if (abs($records[0]['bollo']) > 0) {
|
||||
echo '
|
||||
<br>
|
||||
<table style="width: 20mm; font-size: 50%; text-align: center" class="table-bordered">
|
||||
<tr>
|
||||
<td style="height: 20mm;">
|
||||
<br><br>
|
||||
'.tr('Spazio per applicazione marca da bollo', [], ['upper' => true]).'
|
||||
</td>
|
||||
</tr>
|
||||
</table>';
|
||||
}
|
||||
|
||||
// Info per il footer
|
||||
$imponibile = sum($imponibile);
|
||||
$iva = sum($iva);
|
||||
|
|
|
@ -102,12 +102,12 @@ echo '
|
|||
</td>';
|
||||
|
||||
// TOTALI
|
||||
$width = round(100/(!empty($sconto) ? 5 : 3), 2);
|
||||
$width = round(100 / (!empty($sconto) ? 5 : 3), 2);
|
||||
echo "
|
||||
<tr>
|
||||
<th class='text-center small' style='width:".$width."'>
|
||||
".tr('Imponibile', [], ['upper' => true])."
|
||||
</th>";
|
||||
".tr('Imponibile', [], ['upper' => true]).'
|
||||
</th>';
|
||||
|
||||
if (!empty($sconto)) {
|
||||
echo "
|
||||
|
@ -116,8 +116,8 @@ if (!empty($sconto)) {
|
|||
</th>
|
||||
|
||||
<th class='text-center small' style='width:".$width."'>
|
||||
".tr('Imponibile scontato', [], ['upper' => true])."
|
||||
</th>";
|
||||
".tr('Imponibile scontato', [], ['upper' => true]).'
|
||||
</th>';
|
||||
}
|
||||
|
||||
echo "
|
||||
|
@ -132,8 +132,8 @@ echo "
|
|||
|
||||
<tr>
|
||||
<td class='cell-padded text-center'>
|
||||
".Translator::numberToLocale($imponibile)." €
|
||||
</td>";
|
||||
".Translator::numberToLocale($imponibile).' €
|
||||
</td>';
|
||||
|
||||
if (!empty($sconto)) {
|
||||
echo "
|
||||
|
@ -143,11 +143,11 @@ if (!empty($sconto)) {
|
|||
</td>
|
||||
|
||||
<td class='cell-padded text-center'>
|
||||
".Translator::numberToLocale($imponibile - $sconto)." €
|
||||
</td>";
|
||||
".Translator::numberToLocale($imponibile - $sconto).' €
|
||||
</td>';
|
||||
}
|
||||
|
||||
echo "
|
||||
echo "
|
||||
<td class='cell-padded text-center'>
|
||||
".Translator::numberToLocale($iva)." €
|
||||
</td>
|
||||
|
@ -157,58 +157,120 @@ if (!empty($sconto)) {
|
|||
</td>
|
||||
</tr>';
|
||||
|
||||
// Rivalsa INPS
|
||||
if ($records[0]['rivalsainps'] != 0) {
|
||||
// Aggiunta della marca da bollo al totale
|
||||
$totale = sum($totale, $records[0]['bollo']);
|
||||
|
||||
// Rivalsa INPS
|
||||
if (!empty($records[0]['rivalsainps'])) {
|
||||
$rs2 = $dbo->fetchArray('SELECT percentuale FROM co_rivalsainps WHERE id=(SELECT idrivalsainps FROM co_righe_documenti WHERE iddocumento='.prepare($iddocumento).' AND idrivalsainps!=0 LIMIT 0,1)');
|
||||
|
||||
echo "
|
||||
<tr>
|
||||
<th class='text-center small' colspan=".(!empty($sconto) ? 3 : 2).">
|
||||
".tr("Rivalsa INPS _PRC_%", [
|
||||
'_PRC_' => Translator::numberToLocale($rs2[0]['percentuale'], 0),
|
||||
], ['upper' => true])."
|
||||
</th>
|
||||
|
||||
<th class='text-center small' colspan=".(!empty($sconto) ? 2 : 1).">
|
||||
".tr('Totale documento', [], ['upper' => true])."
|
||||
</th>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class='cell-padded text-center' colspan=".(!empty($sconto) ? 3 : 2).">
|
||||
".Translator::numberToLocale($records[0]['rivalsainps'])." €
|
||||
</td>
|
||||
|
||||
<td class='cell-padded text-center' colspan=".(!empty($sconto) ? 2 : 1).">
|
||||
".Translator::numberToLocale($totale + $records[0]['rivalsainps']).' €
|
||||
</td>
|
||||
</tr>';
|
||||
$first_colspan = 3;
|
||||
$second_colspan = 2;
|
||||
if (abs($records[0]['bollo']) > 0) {
|
||||
--$first_colspan;
|
||||
}
|
||||
if (empty($sconto)) {
|
||||
--$first_colspan;
|
||||
--$second_colspan;
|
||||
}
|
||||
|
||||
// Ritenuta d'acconto
|
||||
if ($records[0]['ritenutaacconto'] != 0) {
|
||||
$rs2 = $dbo->fetchArray('SELECT percentuale FROM co_ritenutaacconto WHERE id=(SELECT idritenutaacconto FROM co_righe_documenti WHERE iddocumento='.prepare($iddocumento).' AND idritenutaacconto!=0 LIMIT 0,1)');
|
||||
|
||||
echo "
|
||||
echo '
|
||||
<tr>
|
||||
<th class='text-center small' colspan=".(!empty($sconto) ? 3 : 2).">
|
||||
".tr("Ritenuta d'acconto _PRC_%", [
|
||||
<th class="text-center small" colspan="'.$first_colspan.'">
|
||||
'.tr('Rivalsa INPS _PRC_%', [
|
||||
'_PRC_' => Translator::numberToLocale($rs2[0]['percentuale'], 0),
|
||||
], ['upper' => true])."
|
||||
</th>
|
||||
], ['upper' => true]).'
|
||||
</th>';
|
||||
|
||||
<th class='text-center small' colspan=".(!empty($sconto) ? 2 : 1).">
|
||||
".tr('Netto a pagare', [], ['upper' => true])."
|
||||
if (abs($records[0]['bollo']) > 0) {
|
||||
echo '
|
||||
|
||||
<th class="text-center small" colspan="1">
|
||||
'.tr('Marca da bollo', [], ['upper' => true]).'
|
||||
</th>';
|
||||
}
|
||||
|
||||
echo '
|
||||
|
||||
<th class="text-center small" colspan="'.$second_colspan.'">
|
||||
'.tr('Totale documento', [], ['upper' => true]).'
|
||||
</th>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class='cell-padded text-center' colspan=".(!empty($sconto) ? 3 : 2).">
|
||||
".Translator::numberToLocale($records[0]['ritenutaacconto'])." €
|
||||
</td>
|
||||
<td class="cell-padded text-center" colspan="'.$first_colspan.'">
|
||||
'.Translator::numberToLocale($records[0]['rivalsainps']).' €
|
||||
</td>';
|
||||
|
||||
<td class='cell-padded text-center' colspan=".(!empty($sconto) ? 2 : 1).">
|
||||
".Translator::numberToLocale($totale - $records[0]['ritenutaacconto']).' €
|
||||
if (abs($records[0]['bollo']) > 0) {
|
||||
echo '
|
||||
|
||||
<td class="cell-padded text-center" colspan="1">
|
||||
'.Translator::numberToLocale($records[0]['bollo']).' €
|
||||
</td>';
|
||||
}
|
||||
|
||||
echo '
|
||||
|
||||
<td class="cell-padded text-center" colspan="'.$second_colspan.'">
|
||||
'.Translator::numberToLocale($totale + $records[0]['rivalsainps']).' €
|
||||
</td>
|
||||
</tr>';
|
||||
}
|
||||
|
||||
// Ritenuta d'acconto
|
||||
if (!empty($records[0]['ritenutaacconto'])) {
|
||||
$rs2 = $dbo->fetchArray('SELECT percentuale FROM co_ritenutaacconto WHERE id=(SELECT idritenutaacconto FROM co_righe_documenti WHERE iddocumento='.prepare($iddocumento).' AND idritenutaacconto!=0 LIMIT 0,1)');
|
||||
|
||||
$first_colspan = 3;
|
||||
$second_colspan = 2;
|
||||
if (empty($records[0]['rivalsainps']) && abs($records[0]['bollo']) > 0) {
|
||||
--$first_colspan;
|
||||
}
|
||||
if (empty($sconto)) {
|
||||
--$first_colspan;
|
||||
--$second_colspan;
|
||||
}
|
||||
|
||||
echo '
|
||||
<tr>
|
||||
<th class="text-center small" colspan="'.$first_colspan.'">
|
||||
'.tr("Ritenuta d'acconto _PRC_%", [
|
||||
'_PRC_' => Translator::numberToLocale($rs2[0]['percentuale'], 0),
|
||||
], ['upper' => true]).'
|
||||
</th>';
|
||||
|
||||
if (empty($records[0]['rivalsainps']) && abs($records[0]['bollo']) > 0) {
|
||||
echo '
|
||||
|
||||
<th class="text-center small" colspan="1">
|
||||
'.tr('Marca da bollo', [], ['upper' => true]).'
|
||||
</th>';
|
||||
}
|
||||
|
||||
echo '
|
||||
<th class="text-center small" colspan="'.$second_colspan.'">
|
||||
'.tr('Netto a pagare', [], ['upper' => true]).'
|
||||
</th>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="cell-padded text-center" colspan="'.$first_colspan.'">
|
||||
'.Translator::numberToLocale($records[0]['ritenutaacconto']).' €
|
||||
</td>';
|
||||
|
||||
if (empty($records[0]['rivalsainps']) && abs($records[0]['bollo']) > 0) {
|
||||
echo '
|
||||
|
||||
<td class="cell-padded text-center" colspan="1">
|
||||
'.Translator::numberToLocale($records[0]['bollo']).' €
|
||||
</td>';
|
||||
}
|
||||
|
||||
echo '
|
||||
|
||||
<td class="cell-padded text-center" colspan="'.$second_colspan.'">
|
||||
'.Translator::numberToLocale($totale - $records[0]['ritenutaacconto']).' €
|
||||
</td>
|
||||
</tr>';
|
||||
}
|
||||
|
|
|
@ -10,6 +10,10 @@ $records = $dbo->fetchArray('SELECT *,
|
|||
(SELECT dir FROM co_tipidocumento WHERE id=idtipodocumento) AS dir
|
||||
FROM co_documenti WHERE id='.prepare($iddocumento));
|
||||
|
||||
$records[0]['rivalsainps'] = floatval($records[0]['rivalsainps']);
|
||||
$records[0]['ritenutaacconto'] = floatval($records[0]['ritenutaacconto']);
|
||||
$records[0]['bollo'] = floatval($records[0]['bollo']);
|
||||
|
||||
$module_name = ($records[0]['dir'] == 'entrata') ? 'Fatture di vendita' : 'Fatture di acquisto';
|
||||
|
||||
$id_cliente = $records[0]['idanagrafica'];
|
||||
|
|
Loading…
Reference in New Issue