Merge branch 'master' of https://github.com/devcode-it/openstamanager
This commit is contained in:
commit
631c057634
|
@ -92,7 +92,7 @@ foreach ($moduli as $module_id => $note) {
|
|||
$documento = $dbo->fetchOne("SELECT matricola AS numero, ragione_sociale FROM zz_notes INNER JOIN my_impianti ON (my_impianti.id = zz_notes.id_record AND zz_notes.id_module=(SELECT id FROM zz_modules WHERE title = 'Impianti')) INNER JOIN an_anagrafiche ON an_anagrafiche.idanagrafica = my_impianti.idanagrafica WHERE zz_notes.id = ".$nota->id);
|
||||
} else {
|
||||
$documento['numero'] = ' ';
|
||||
};
|
||||
}
|
||||
|
||||
echo '
|
||||
<tr class="'.$class.'">
|
||||
|
|
|
@ -852,11 +852,16 @@ switch ($op) {
|
|||
|
||||
$id_segment = post('id_segment');
|
||||
$data = date('Y-m-d');
|
||||
|
||||
$anagrafica = $fattura->anagrafica;
|
||||
$tipo = Tipo::find(post('idtipodocumento'));
|
||||
$iva = Aliquota::find(setting('Iva predefinita'));
|
||||
$totale_imponibile = setting('Utilizza prezzi di vendita comprensivi di IVA') ? $fattura->totale_imponibile + ($fattura->totale_imponibile * $iva->percentuale / 100) : $fattura->totale_imponibile;
|
||||
|
||||
$imponibile += Riga::join('co_iva', 'co_iva.id', '=', 'co_righe_documenti.idiva')
|
||||
->where('co_iva.codice_natura_fe', 'LIKE', 'N3%')
|
||||
->where('co_righe_documenti.iddocumento', $fattura->id)
|
||||
->sum('subtotale');
|
||||
|
||||
$totale_imponibile = setting('Utilizza prezzi di vendita comprensivi di IVA') ? $imponibile + ($imponibile * $iva->percentuale / 100) : $imponibile;
|
||||
$totale_imponibile = $fattura->tipo->reversed == 1 ? -$totale_imponibile : $totale_imponibile;
|
||||
|
||||
$autofattura = Fattura::build($anagrafica, $tipo, $data, $id_segment);
|
||||
|
|
|
@ -79,7 +79,7 @@ if (!empty($rs2)) {
|
|||
<small>".Translator::dateToLocale($rs2[$i]['scadenza'])."</small>
|
||||
</td>
|
||||
<td style='width:50%;' class='text-right'>
|
||||
".(($rs2[$i]['pagato'] == $rs2[$i]['da_pagare']) ? "<small>PAGATO</small>" : "")."
|
||||
".(($rs2[$i]['pagato'] == $rs2[$i]['da_pagare']) ? '<small>PAGATO</small>' : '')."
|
||||
</td>
|
||||
<td style='width:50%;' class='text-right'>
|
||||
<small>".moneyFormat($rs2[$i]['da_pagare'], 2).'</small>
|
||||
|
|
Loading…
Reference in New Issue