Merge branch 'master' of https://github.com/devcode-it/openstamanager
This commit is contained in:
commit
c80fff2291
|
@ -17,6 +17,7 @@
|
||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
use Modules\Articoli\Articolo as ArticoloOriginale;
|
use Modules\Articoli\Articolo as ArticoloOriginale;
|
||||||
use Modules\Contratti\Components\Articolo;
|
use Modules\Contratti\Components\Articolo;
|
||||||
use Modules\Contratti\Components\Riga;
|
use Modules\Contratti\Components\Riga;
|
||||||
|
@ -196,4 +197,61 @@ switch ($operazione) {
|
||||||
$pianificazione->save();
|
$pianificazione->save();
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case 'add_fattura_multipla':
|
||||||
|
$rate = post('rata');
|
||||||
|
|
||||||
|
$data = post('data');
|
||||||
|
$accodare = post('accodare');
|
||||||
|
$id_segment = post('id_segment');
|
||||||
|
$id_tipodocumento = post('idtipodocumento');
|
||||||
|
$tipo = Tipo::find($id_tipodocumento);
|
||||||
|
|
||||||
|
foreach ($rate as $i => $rata) {
|
||||||
|
$id_rata = $rata;
|
||||||
|
|
||||||
|
$pianificazione = Pianificazione::find($id_rata);
|
||||||
|
|
||||||
|
$contratto = $pianificazione->contratto;
|
||||||
|
if (!empty($accodare)) {
|
||||||
|
$documento = $dbo->fetchOne(
|
||||||
|
'SELECT co_documenti.id FROM co_documenti INNER JOIN co_statidocumento ON co_documenti.idstatodocumento = co_statidocumento.id
|
||||||
|
WHERE co_statidocumento.descrizione = \'Bozza\' AND idanagrafica = '.prepare($contratto->idanagrafica)
|
||||||
|
);
|
||||||
|
|
||||||
|
$id_documento = $documento['id'];
|
||||||
|
}
|
||||||
|
|
||||||
|
// Creazione fattura
|
||||||
|
if (empty($id_documento)) {
|
||||||
|
$fattura = Fattura::build($contratto->anagrafica, $tipo, $data, $id_segment);
|
||||||
|
} else {
|
||||||
|
$fattura = Fattura::find($id_documento);
|
||||||
|
}
|
||||||
|
|
||||||
|
$fattura->note = "";
|
||||||
|
$fattura->save();
|
||||||
|
|
||||||
|
$id_conto = post('id_conto');
|
||||||
|
|
||||||
|
// Copia righe
|
||||||
|
$righe = $pianificazione->getRighe();
|
||||||
|
|
||||||
|
foreach ($righe as $riga) {
|
||||||
|
$copia = $riga->copiaIn($fattura, $riga->qta);
|
||||||
|
$copia->id_conto = $id_conto;
|
||||||
|
$copia->save();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Salvataggio fattura nella pianificazione
|
||||||
|
$pianificazione->fattura()->associate($fattura);
|
||||||
|
$pianificazione->save();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
flash()->info(tr('Rate fatturate correttamente!'));
|
||||||
|
break;
|
||||||
|
|
||||||
|
redirect(base_path().'/controller.php?id_module=14');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,97 @@
|
||||||
|
<?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/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
use Plugins\PianificazioneFatturazione\Pianificazione;
|
||||||
|
use Illuminate\Support\Facades\DB;
|
||||||
|
|
||||||
|
include_once __DIR__.'/../../core.php';
|
||||||
|
|
||||||
|
$action = post("action");
|
||||||
|
$ret = "";
|
||||||
|
switch ($action) {
|
||||||
|
case "update_table":
|
||||||
|
$month = post("currentMonth");
|
||||||
|
$year = post("currentYear");
|
||||||
|
|
||||||
|
$pianificazioni = Pianificazione::doesntHave('fattura')
|
||||||
|
->whereHas('contratto', function ($q) {
|
||||||
|
$q->whereHas('stato', function ($q) {
|
||||||
|
$q
|
||||||
|
->where('is_fatturabile', 1)
|
||||||
|
->where('descrizione', '<>', 'Concluso');
|
||||||
|
});
|
||||||
|
})
|
||||||
|
->whereYear('co_fatturazione_contratti.data_scadenza', $year)
|
||||||
|
->whereMonth('co_fatturazione_contratti.data_scadenza', $month);
|
||||||
|
|
||||||
|
$pianificazioni = $pianificazioni->get();
|
||||||
|
|
||||||
|
$ret = [];
|
||||||
|
foreach ($pianificazioni as $pianificazione) {
|
||||||
|
$contratto = $pianificazione->contratto;
|
||||||
|
$anagrafica = $contratto->anagrafica;
|
||||||
|
$numero_pianificazioni = $contratto->pianificazioni()->count();
|
||||||
|
|
||||||
|
$ret[] = [
|
||||||
|
"idPianificazione" => $pianificazione->id,
|
||||||
|
"idContratto" => $pianificazione->idcontratto,
|
||||||
|
"dataScadenza" => dateFormat($pianificazione->data_scadenza),
|
||||||
|
"contratto" => reference($contratto),
|
||||||
|
"ragioneSociale" => Modules::link('Anagrafiche', $anagrafica->id, nl2br($anagrafica->ragione_sociale)),
|
||||||
|
"totale" => moneyFormat($pianificazione->totale),
|
||||||
|
"importo" => tr('Rata _IND_/_NUM_ (totale: _TOT_)', [
|
||||||
|
'_IND_' => numberFormat($pianificazione->getNumeroPianificazione(), 0),
|
||||||
|
'_NUM_' => numberFormat($numero_pianificazioni, 0),
|
||||||
|
'_TOT_' => moneyFormat($contratto->totale),
|
||||||
|
]),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
break;
|
||||||
|
|
||||||
|
case "update_month":
|
||||||
|
$year = post("currentYear");
|
||||||
|
|
||||||
|
$pianificazioni = Pianificazione::doesntHave('fattura')
|
||||||
|
->whereHas('contratto', function ($q) {
|
||||||
|
$q->whereHas('stato', function ($q) {
|
||||||
|
$q
|
||||||
|
->where('is_fatturabile', 1)
|
||||||
|
->where('descrizione', '<>', 'Concluso');
|
||||||
|
});
|
||||||
|
})
|
||||||
|
->whereYear('co_fatturazione_contratti.data_scadenza', $year)
|
||||||
|
->get();
|
||||||
|
|
||||||
|
$raggruppamenti = $pianificazioni->groupBy(function ($item) {
|
||||||
|
return ucfirst($item->data_scadenza->format('m'));
|
||||||
|
});
|
||||||
|
|
||||||
|
$ret = [];
|
||||||
|
foreach ($raggruppamenti as $i => $item) {
|
||||||
|
$ret[intval($i)] = count($item);
|
||||||
|
}
|
||||||
|
|
||||||
|
break;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
echo json_encode($ret);
|
||||||
|
|
|
@ -0,0 +1,109 @@
|
||||||
|
<?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/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
use Plugins\PianificazioneFatturazione\Pianificazione;
|
||||||
|
include_once __DIR__.'/../../core.php';
|
||||||
|
|
||||||
|
$records = json_decode(get('records'), true);
|
||||||
|
|
||||||
|
if (empty($records)) {
|
||||||
|
echo '<p>'.tr('Nessuna rata selezionata').'.</p>';
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
//print_r($records);
|
||||||
|
//echo '<script>console.log('.$records.')</script>';
|
||||||
|
foreach ($records as $j => $record) {
|
||||||
|
$id_rata[$j] = $record['rata'];
|
||||||
|
$pianificazione[$j] = Pianificazione::find($id_rata);
|
||||||
|
$contratto[$j] = $pianificazione->contratto;
|
||||||
|
$id_pianificazione[$j] = $pianificazione->id;
|
||||||
|
|
||||||
|
foreach ($contratto[$j]->pianificazioni as $i => $p) {
|
||||||
|
if ($p->id == $id_pianificazione[$i]) {
|
||||||
|
$numero_rata[$i] = $i + 1;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
$module_fattura = Modules::get('Fatture di vendita');
|
||||||
|
$id_conto = setting('Conto predefinito fatture di vendita');
|
||||||
|
|
||||||
|
echo
|
||||||
|
'<form action="" method="post">
|
||||||
|
<input type="hidden" name="op" value="add_fattura_multipla">
|
||||||
|
<input type="hidden" name="backto" value="record-list">
|
||||||
|
<input type="hidden" name="id_module" value="'.$id_module.'">
|
||||||
|
<input type="hidden" name="id_plugin" value="'.$id_plugin.'">';
|
||||||
|
|
||||||
|
|
||||||
|
foreach ($records as $j => $record) {
|
||||||
|
echo
|
||||||
|
'<input type="hidden" name="rata['.$j.']" value="' . $record['rata'] . '">';
|
||||||
|
}
|
||||||
|
|
||||||
|
// Data
|
||||||
|
echo '
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-6">
|
||||||
|
{[ "type": "date", "label": "'.tr('Data').'", "name": "data", "required": 1, "class": "text-center", "value": "'. date("Y-m-d") .'" ]}
|
||||||
|
</div>';
|
||||||
|
|
||||||
|
//Tipo di documento
|
||||||
|
echo '
|
||||||
|
<div class="col-md-6">
|
||||||
|
{[ "type": "select", "label": "'.tr('Tipo di fattura').'", "name": "idtipodocumento", "required": 1, "values": "query=SELECT * FROM co_tipidocumento WHERE dir=\'entrata\'" ]}
|
||||||
|
</div>';
|
||||||
|
|
||||||
|
// Sezionale
|
||||||
|
echo
|
||||||
|
'<div class="col-md-6">
|
||||||
|
{[ "type": "select", "label": "'.tr('Sezionale').'", "name": "id_segment", "required": 1, "values": "query=SELECT id, name AS descrizione FROM zz_segments WHERE id_module='.$module_fattura['id'].' ORDER BY name", "value":"'.$_SESSION['module_'.$module_fattura['id']]['id_segment'].'" ]}
|
||||||
|
</div>';
|
||||||
|
|
||||||
|
// Conto
|
||||||
|
echo '
|
||||||
|
<div class="col-md-6">
|
||||||
|
{[ "type": "select", "label": "'.tr('Conto').'", "name": "id_conto", "required": 1, "value": "'.$id_conto.'", "ajax-source": "conti-vendite" ]}
|
||||||
|
</div>';
|
||||||
|
|
||||||
|
//Accoda a fatture non emesse
|
||||||
|
echo
|
||||||
|
'<div class="col-md-6">
|
||||||
|
{[ "type": "checkbox", "label": "<small>'.tr('Aggiungere alle fatture di vendita non ancora emesse?').'</small>", "placeholder": "'.tr('Aggiungere alle fatture di vendita nello stato bozza?').'", "name": "accodare" ]}
|
||||||
|
</div>
|
||||||
|
</div>';
|
||||||
|
|
||||||
|
|
||||||
|
echo
|
||||||
|
'<div class="row">
|
||||||
|
<div class="col-md-12 text-right">
|
||||||
|
<button type="submit" class="btn btn-primary pull-right">
|
||||||
|
<i class="fa fa-plus"></i> '.tr('Aggiungi').'
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>';
|
||||||
|
echo
|
||||||
|
'<script>
|
||||||
|
$(document).ready(init)
|
||||||
|
</script>';
|
|
@ -21,108 +21,364 @@ use Plugins\PianificazioneFatturazione\Pianificazione;
|
||||||
|
|
||||||
include_once __DIR__.'/../../../core.php';
|
include_once __DIR__.'/../../../core.php';
|
||||||
|
|
||||||
|
$mesi = [
|
||||||
|
1 => 'Gennaio',
|
||||||
|
2 => 'Febbraio',
|
||||||
|
3 => 'Marzo',
|
||||||
|
4 => 'Aprile',
|
||||||
|
5 => 'Maggio',
|
||||||
|
6 => 'Giugno',
|
||||||
|
7 => 'Luglio',
|
||||||
|
8 => 'Agosto',
|
||||||
|
9 => 'Settembre',
|
||||||
|
10 => 'Ottobre',
|
||||||
|
11 => 'Novembre',
|
||||||
|
12 => 'Dicembre',
|
||||||
|
];
|
||||||
|
|
||||||
$pianificazioni = Pianificazione::doesntHave('fattura')
|
$pianificazioni = Pianificazione::doesntHave('fattura')
|
||||||
->orderBy('data_scadenza', 'asc')
|
->orderBy('data_scadenza', 'asc')
|
||||||
->whereHas('contratto', function ($q) {
|
->whereHas('contratto', function ($q) {
|
||||||
$q->whereHas('stato', function ($q) {
|
$q->whereHas('stato', function ($q) {
|
||||||
$q->where('is_fatturabile', 1);
|
$q
|
||||||
|
->where('is_fatturabile', 1)
|
||||||
|
->where('descrizione', '<>', 'Concluso');
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
|
->whereYear('co_fatturazione_contratti.data_scadenza', date('Y'))
|
||||||
|
->whereMonth('co_fatturazione_contratti.data_scadenza', date('m'))
|
||||||
->get();
|
->get();
|
||||||
if ($pianificazioni->isEmpty()) {
|
|
||||||
echo '
|
|
||||||
<p>'.tr('Non ci sono fatture da emettere').'.</p>';
|
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$raggruppamenti = $pianificazioni->groupBy(function ($item) {
|
if ($pianificazioni->isEmpty()) {
|
||||||
return ucfirst($item->data_scadenza->formatLocalized('%B %Y'));
|
echo '<p>'.tr('Non ci sono fatture da emettere').'.</p>';
|
||||||
});
|
return;
|
||||||
|
|
||||||
$counter = 0;
|
|
||||||
foreach ($raggruppamenti as $mese => $raggruppamento) {
|
|
||||||
++$counter;
|
|
||||||
|
|
||||||
// Se cambia il mese ricreo l'intestazione della tabella
|
|
||||||
if ($counter == 1) {
|
|
||||||
$attr = '';
|
|
||||||
$class = 'fa-minus-circle';
|
|
||||||
} else {
|
|
||||||
$attr = 'style="display:none;"';
|
|
||||||
$class = 'fa-plus-circle';
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$conteggio = Pianificazione::doesntHave('fattura')
|
||||||
|
->selectRaw('month(co_fatturazione_contratti.data_scadenza) mese, count(*) conto')
|
||||||
|
->whereHas('contratto', function ($q) {
|
||||||
|
$q->whereHas('stato', function ($q) {
|
||||||
|
$q
|
||||||
|
->where('is_fatturabile', 1)
|
||||||
|
->where('descrizione', '<>', 'Concluso');
|
||||||
|
});
|
||||||
|
})
|
||||||
|
->whereYear('co_fatturazione_contratti.data_scadenza', date('Y'))
|
||||||
|
->groupBy('mese')
|
||||||
|
->get();
|
||||||
|
|
||||||
|
$raggruppamenti = $pianificazioni->groupBy(function ($item) {
|
||||||
|
return ucfirst($item->data_scadenza->formatLocalized('%B %Y'));
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
echo "
|
echo
|
||||||
<h4>
|
'<div class="container"
|
||||||
<a class='clickable' onclick=\"if( $('#rate_pianificare_".$counter."').css('display') == 'none' ){ $(this).children('i').removeClass('fa-plus-circle'); $(this).children('i').addClass('fa-minus-circle'); }else{ $(this).children('i').addClass('fa-plus-circle'); $(this).children('i').removeClass('fa-minus-circle'); } $('#rate_pianificare_".$counter."').slideToggle();\">
|
<div class="row">
|
||||||
<i class='fa ".$class."'></i> ".$mese.'
|
<div class="col-md-2 col-md-offset-9">
|
||||||
</a>
|
<select class="form-control select-input openstamanager-input superselect select-year">';
|
||||||
</h4>';
|
|
||||||
|
|
||||||
echo '
|
for ($i=intval(date('Y')); $i<=intval(date('Y')) + 10; $i++) {
|
||||||
<div id="rate_pianificare_'.$counter.'" '.$attr.'>
|
$selectType = ($i == date('m'))? "selected" : "";
|
||||||
<table class="table table-hover table-striped">
|
echo
|
||||||
<thead>
|
'<option value="' . $i . '" ' . $selectType . '>' . $i . '</option>';
|
||||||
<tr>
|
}
|
||||||
<th width="25%">'.tr('Entro il').'</th>
|
|
||||||
<th width="35%">'.tr('Ragione sociale').'</th>
|
|
||||||
<th width="20%">'.tr('Importo').'</th>
|
|
||||||
<th width="10%"></th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
|
|
||||||
<tbody>';
|
echo
|
||||||
|
'</select><br>
|
||||||
// Elenco fatture da emettere
|
</div>
|
||||||
foreach ($pianificazioni as $pianificazione) {
|
</div>
|
||||||
$contratto = $pianificazione->contratto;
|
<div class="div-month">';
|
||||||
$anagrafica = $contratto->anagrafica;
|
for ($i=1; $i<=12; $i++) {
|
||||||
$numero_pianificazioni = $contratto->pianificazioni()->count();
|
|
||||||
|
$btnType = ($i == date('m'))? "btn-primary":"";
|
||||||
if (strtolower($pianificazione->data_scadenza->formatLocalized('%B %Y')) == strtolower($mese)) {
|
echo
|
||||||
echo '
|
'<div class="col-md-1">
|
||||||
<tr>
|
<a class="btn btn-month ' . $btnType . '" data-month="' . $i . '" style="cursor:pointer" onclick="month_click($(this))">' .
|
||||||
<td>
|
$mesi[$i] . ' </br>(' . $conteggio[$i-1]->conto . ')</a>
|
||||||
'.dateFormat($pianificazione->data_scadenza).'
|
</div>';
|
||||||
<br><small>'.reference($contratto).'</small>
|
|
||||||
</td>
|
|
||||||
|
|
||||||
<td>
|
|
||||||
'.Modules::link('Anagrafiche', $anagrafica->id, nl2br($anagrafica->ragione_sociale)).'
|
|
||||||
</td>
|
|
||||||
|
|
||||||
<td>
|
|
||||||
'.moneyFormat($pianificazione->totale).'<br>
|
|
||||||
<small>'.tr('Rata _IND_/_NUM_ (totale: _TOT_)', [
|
|
||||||
'_IND_' => numberFormat($pianificazione->getNumeroPianificazione(), 0),
|
|
||||||
'_NUM_' => numberFormat($numero_pianificazioni, 0),
|
|
||||||
'_TOT_' => moneyFormat($contratto->totale),
|
|
||||||
]).'</small>
|
|
||||||
</td>';
|
|
||||||
|
|
||||||
// Pulsanti
|
|
||||||
echo '
|
|
||||||
<td class="text-center">
|
|
||||||
<button type="button" class="btn btn-primary btn-sm" onclick="crea_fattura('.$contratto->id.', '.$pianificazione->id.')">
|
|
||||||
<i class="fa fa-euro"></i> '.tr('Crea fattura').'
|
|
||||||
</button>
|
|
||||||
</td>
|
|
||||||
</tr>';
|
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
echo '
|
echo
|
||||||
</tbody>
|
'</div>';
|
||||||
</table>
|
|
||||||
|
echo
|
||||||
|
'<div style="display:none" class="template-month">
|
||||||
|
<div class="col-md-1 " style="margin:10px 0px; padding:0px;">
|
||||||
|
<a class="btn btn-month" onclick="month_click($(this))">
|
||||||
|
<div class="text"></div>
|
||||||
|
<div class="text-count"></div>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>';
|
||||||
|
?>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-6">
|
||||||
|
<br>
|
||||||
|
<input type="text" class="filter-input form-control" placeholder="<?= tr('Applica filtro...') ?>">
|
||||||
|
<br>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<?php
|
||||||
|
|
||||||
|
echo
|
||||||
|
'<div>
|
||||||
|
<table id="tbl-rate" class="table-rate table table-hover table-striped">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th width="4%">'.tr('').'</th>
|
||||||
|
<th width="28%">'.tr('Scadenza').'</th>
|
||||||
|
<th width="32%">'.tr('Ragione sociale').'</th>
|
||||||
|
<th width="26%">'.tr('Importo').'</th>
|
||||||
|
<th width="10%"></th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>';
|
||||||
|
|
||||||
|
// Elenco fatture da emettere
|
||||||
|
foreach ($pianificazioni as $pianificazione) {
|
||||||
|
$contratto = $pianificazione->contratto;
|
||||||
|
$anagrafica = $contratto->anagrafica;
|
||||||
|
$numero_pianificazioni = $contratto->pianificazioni()->count();
|
||||||
|
echo '
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<div class="form-check">
|
||||||
|
<input class="form-check-input" type="checkbox"
|
||||||
|
data-contrattoId="' . $contratto->id . '" data-pianificazioneId="' . $pianificazione->id . '">
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<div>'.dateFormat($pianificazione->data_scadenza).'</div>
|
||||||
|
<small>'.reference($contratto).'</small>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
'.Modules::link('Anagrafiche', $anagrafica->id, nl2br($anagrafica->ragione_sociale)).'
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<div>'.moneyFormat($pianificazione->totale).'</div>
|
||||||
|
<small>'.tr('Rata _IND_/_NUM_ (totale: _TOT_)', [
|
||||||
|
'_IND_' => numberFormat($pianificazione->getNumeroPianificazione(), 0),
|
||||||
|
'_NUM_' => numberFormat($numero_pianificazioni, 0),
|
||||||
|
'_TOT_' => moneyFormat($contratto->totale),
|
||||||
|
]).
|
||||||
|
'</small>
|
||||||
|
</td>';
|
||||||
|
|
||||||
|
// Pulsanti
|
||||||
|
echo '
|
||||||
|
<td class="text-center">
|
||||||
|
<button type="button" class="btn btn-primary btn-sm" onclick="crea_fattura('.$contratto->id.', '.$pianificazione->id.')">
|
||||||
|
<i class="fa fa-euro"></i> '.tr('Crea fattura').'
|
||||||
|
</button>
|
||||||
|
</td>
|
||||||
|
</tr>';
|
||||||
|
}
|
||||||
|
|
||||||
|
echo
|
||||||
|
'</tbody>
|
||||||
|
<tfoot style="display:none">
|
||||||
|
<tr>
|
||||||
|
|
||||||
|
<td class="seleziona">
|
||||||
|
<div class="form-check">
|
||||||
|
<input class="form-check-input" type="checkbox">
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
<td class="data-scadenza">
|
||||||
|
<div class="text"></div>
|
||||||
|
<small></small>
|
||||||
|
</td>
|
||||||
|
|
||||||
|
<td class="ragione-sociale">
|
||||||
|
</td>
|
||||||
|
|
||||||
|
<td class="importo">
|
||||||
|
<div class="text"></div>
|
||||||
|
<small></small>
|
||||||
|
</td>
|
||||||
|
<td class="text-center azione">
|
||||||
|
<button type="button" class="btn btn-default btn-sm">
|
||||||
|
<i class="fa fa-euro"></i> '.tr('Crea fattura').'
|
||||||
|
</button>
|
||||||
|
</td>
|
||||||
|
|
||||||
|
</tr>
|
||||||
|
</tfoot>
|
||||||
|
</table><br>
|
||||||
|
</div>';
|
||||||
|
?>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4">
|
||||||
|
<a class="btn btn-primary seleziona-tutti"><?= tr('Seleziona tutti') ?></a>
|
||||||
|
<a class="btn btn-default deseleziona-tutti"><?= tr('Deseleziona tutti') ?></a>
|
||||||
|
</div>
|
||||||
|
<?php
|
||||||
|
echo'
|
||||||
|
|
||||||
|
<div class="col-md-3 col-md-offset-5">
|
||||||
|
<button type="button" class="btn btn-primary" onclick="crea_fattura_multipla($(this))">
|
||||||
|
<i class="fa fa-euro"></i> '.tr('Fattura tutti i selezionati').'
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>';
|
</div>';
|
||||||
}
|
|
||||||
|
|
||||||
$modulo_pianificazione = Modules::get('Contratti');
|
$modulo_pianificazione = Modules::get('Contratti');
|
||||||
$plugin_pianificazione = Plugins::get('Pianificazione fatturazione');
|
$plugin_pianificazione = Plugins::get('Pianificazione fatturazione');
|
||||||
|
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
<script>
|
<script>
|
||||||
|
|
||||||
|
$(document).ready(function () {
|
||||||
|
$(".select-year").on("change", function() {
|
||||||
|
var $this = $(this);
|
||||||
|
var currentMonth = $(".div-month .btn-primary").data("month");
|
||||||
|
var currentYear = $this.val();
|
||||||
|
update_month(currentMonth, currentYear);
|
||||||
|
update_table(currentMonth, currentYear);
|
||||||
|
});
|
||||||
|
$(".filter-input").on("keyup", function() {
|
||||||
|
var value = $(this).val().toLowerCase();
|
||||||
|
$("#tbl-rate tbody tr").filter(function() {
|
||||||
|
$(this).toggle($(this).text().toLowerCase().indexOf(value) > -1)
|
||||||
|
});
|
||||||
|
});
|
||||||
|
$(".seleziona-tutti").on("click", function() {
|
||||||
|
$("#tbl-rate").find("input[type=checkbox]").each(function() {
|
||||||
|
if ($(this).closest("tr").css("display") != "none") {
|
||||||
|
$(this).prop("checked", true);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
$(".deseleziona-tutti").on("click", function() {
|
||||||
|
$("#tbl-rate").find("input[type=checkbox]").prop("checked", false);
|
||||||
|
});
|
||||||
|
$(".select-year").change();
|
||||||
|
|
||||||
|
});
|
||||||
|
function month_click($this) {
|
||||||
|
var oldSelected = $(".div-month .btn-primary");
|
||||||
|
oldSelected.removeClass("btn-primary");
|
||||||
|
oldSelected.addClass("btn-light");
|
||||||
|
$this.removeClass("btn-light");
|
||||||
|
$this.addClass("btn-primary");
|
||||||
|
var currentMonth = $this.data("month");
|
||||||
|
var currentYear = $(".select-year").val();
|
||||||
|
update_table(currentMonth, currentYear);
|
||||||
|
}
|
||||||
|
function update_month(currentMonth, currentYear) {
|
||||||
|
$.ajax({
|
||||||
|
url: "' . $plugin_pianificazione->fileurl('ajax_rate.php') . '",
|
||||||
|
type: "POST",
|
||||||
|
data: {
|
||||||
|
action: "update_month",
|
||||||
|
currentYear: currentYear,
|
||||||
|
},
|
||||||
|
success: function(data){
|
||||||
|
data = JSON.parse(data);
|
||||||
|
var $template = $(".template-month");
|
||||||
|
var $div = $(".div-month");
|
||||||
|
$div.html("");
|
||||||
|
for (var i=1; i<=12; i++) {
|
||||||
|
$template.find("a").attr("data-month", i);
|
||||||
|
$template.find(".text").html(mesi[i]);
|
||||||
|
if (typeof data[i] === "undefined") {
|
||||||
|
$template.find(".text-count").html("(0)");
|
||||||
|
} else {
|
||||||
|
$template.find(".text-count").html("(" + data[i] + ")");
|
||||||
|
}
|
||||||
|
if (i == parseInt(currentMonth)) {
|
||||||
|
$template.find("a").addClass("btn-primary");
|
||||||
|
} else {
|
||||||
|
$template.find("a").addClass("btn-light");
|
||||||
|
}
|
||||||
|
$div.append($template.html());
|
||||||
|
$template.find("a").removeClass("btn-primary");
|
||||||
|
$template.find("a").removeClass("btn-light");
|
||||||
|
}
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
function update_table(currentMonth, currentYear) {
|
||||||
|
$.ajax({
|
||||||
|
url: "' . $plugin_pianificazione->fileurl('ajax_rate.php') . '",
|
||||||
|
type: "POST",
|
||||||
|
data: {
|
||||||
|
action: "update_table",
|
||||||
|
currentMonth: currentMonth,
|
||||||
|
currentYear: currentYear,
|
||||||
|
},
|
||||||
|
success: function(data){
|
||||||
|
data = JSON.parse(data);
|
||||||
|
var $template = $(".table-rate tfoot");
|
||||||
|
var $tbody = $(".table-rate tbody");
|
||||||
|
$tbody.html("");
|
||||||
|
$.each(data, function(key, value) {
|
||||||
|
$template.find(".seleziona input").attr("data-contrattoId", value.idContratto);
|
||||||
|
$template.find(".seleziona input").attr("data-pianificazioneId", value.idPianificazione);
|
||||||
|
$template.find(".data-scadenza .text").html(value.dataScadenza);
|
||||||
|
$template.find(".data-scadenza small").html(value.contratto);
|
||||||
|
$template.find(".ragione-sociale").html(value.ragioneSociale);
|
||||||
|
$template.find(".importo .text").html(value.totale);
|
||||||
|
$template.find(".importo small").html(value.importo);
|
||||||
|
$template.find(".azione button").attr("onclick","crea_fattura(" + value.idContratto + ", " + value.idPianificazione + ")");
|
||||||
|
$tbody.append($template.html());
|
||||||
|
});
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
function crea_fattura(contratto, rata){
|
function crea_fattura(contratto, rata){
|
||||||
openModal("Crea fattura", "'.$plugin_pianificazione->fileurl('crea_fattura.php').'?id_module='.$modulo_pianificazione->id.'&id_plugin='.$plugin_pianificazione->id.'&id_record=" + contratto + "&rata=" + rata);
|
openModal("Crea fattura", "'.$plugin_pianificazione->fileurl('crea_fattura.php').'?id_module='.$modulo_pianificazione->id.'&id_plugin='.$plugin_pianificazione->id.'&id_record=" + contratto + "&rata=" + rata);
|
||||||
}
|
}
|
||||||
</script>';
|
function crea_fattura_multipla($this) {
|
||||||
|
var $table = $("table");
|
||||||
|
var $rows = $table.find("tbody");
|
||||||
|
var fatture = [];
|
||||||
|
$rows.find("input[type=checkbox]").each(function() {
|
||||||
|
if ($(this).is(":checked")) {
|
||||||
|
fatture.push($(this));
|
||||||
|
}
|
||||||
|
});
|
||||||
|
$fatture = $(fatture);
|
||||||
|
records = []
|
||||||
|
for (var i=0; i<$fatture.length; i++) {
|
||||||
|
records.push(
|
||||||
|
{
|
||||||
|
rata: $fatture[i].attr("data-pianificazioneId"),
|
||||||
|
contratto: $fatture[i].attr("data-contrattoId"),
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
||||||
|
records = JSON.stringify(records);
|
||||||
|
console.log(records);
|
||||||
|
if (records.length > 0) {
|
||||||
|
openModal(
|
||||||
|
"Crea fattura multipla",
|
||||||
|
"' . $plugin_pianificazione->fileurl('crea_fattura_multipla.php') . '?id_module=' . $modulo_pianificazione->id .
|
||||||
|
'&id_plugin=' . $plugin_pianificazione->id . '&records=" + records
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
var mesi = {
|
||||||
|
1: "Gennaio",
|
||||||
|
2: "Febbraio",
|
||||||
|
3: "Marzo",
|
||||||
|
4: "Aprile",
|
||||||
|
5: "Maggio",
|
||||||
|
6: "Giugno",
|
||||||
|
7: "Luglio",
|
||||||
|
8: "Agosto",
|
||||||
|
9: "Settembre",
|
||||||
|
10: "Ottobre",
|
||||||
|
11: "Novembre",
|
||||||
|
12: "Dicembre",
|
||||||
|
};
|
||||||
|
|
||||||
|
init();
|
||||||
|
</script>';
|
Loading…
Reference in New Issue