Fix minore
This commit is contained in:
parent
20620c9f07
commit
59ad71de80
|
@ -135,7 +135,7 @@ switch (post('op')) {
|
|||
$id_scadenza_non_completa = $id_scadenza;
|
||||
}
|
||||
|
||||
$assicurazione_crediti = AssicurazioneCrediti::where('id_anagrafica', $idanagrafica)->where('data_inizio', '<=', $scadenza->scadenza)->where('data_fine', '>=', $scadenza->scadenza)->first();
|
||||
$assicurazione_crediti = AssicurazioneCrediti::where('id_anagrafica', $idanagrafica)->where('data_inizio', '<=', $scadenza['scadenza'])->where('data_fine', '>=', $scadenza['scadenza'])->first();
|
||||
if (!empty($assicurazione_crediti)) {
|
||||
$assicurazione_crediti->fixTotale();
|
||||
$assicurazione_crediti->save();
|
||||
|
|
|
@ -158,14 +158,14 @@ echo '
|
|||
<table class="table table-hover table-condensed table-bordered text-center">
|
||||
<thead>
|
||||
<tr>
|
||||
<th style="width:20%;">'.tr('Banca accredito').'</th>
|
||||
<th style="width:20%;">'.tr('Banca addebito').'</th>
|
||||
<th style="width:17%;">'.tr('Banca accredito').'</th>
|
||||
<th style="width:16%;">'.tr('Banca addebito').'</th>
|
||||
<th style="width:20%;">'.tr('Metodo di pagamento').'</th>
|
||||
<th style="width:10%;">'.tr('Data').'</th>
|
||||
<th style="width:10%;">'.tr('Data concordata').'</th>
|
||||
<th style="width:10%;">'.tr('Importo').'</th>
|
||||
<th style="width:10%;">'.tr('Pagato').'</th>
|
||||
<th style="width:3%;">'.tr('Rata').'</th>
|
||||
<th style="width:7%;">'.tr('Rata').'</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
|
|
Loading…
Reference in New Issue