Merge branch 'master' of https://github.com/devcode-it/openstamanager
This commit is contained in:
commit
fe8e39a3e4
|
@ -195,7 +195,10 @@ if (!empty($results) || !empty($results_added) || !empty($results_settings) || !
|
|||
} else {
|
||||
$null = 'NULL';
|
||||
}
|
||||
$query .= str_replace('DEFAULT_GENERATED', ' ', $data[$table][$name]['extra']).' '.$null.' DEFAULT '.$data[$table][$name]['default'].';';
|
||||
$query .= str_replace('DEFAULT_GENERATED', ' ', $data[$table][$name]['extra']).' '.$null;
|
||||
if ($data[$table][$name]['default']) {
|
||||
$query .= ' DEFAULT '.$data[$table][$name]['default'];
|
||||
}
|
||||
}
|
||||
|
||||
echo '
|
||||
|
@ -204,7 +207,7 @@ if (!empty($results) || !empty($results_added) || !empty($results_settings) || !
|
|||
'.$name.'
|
||||
</td>
|
||||
<td>
|
||||
'.$query.'
|
||||
'.$query.';
|
||||
</td>
|
||||
</tr>';
|
||||
|
||||
|
|
|
@ -78,6 +78,10 @@ class Movimenti
|
|||
|
||||
// Totali utili per i movimenti
|
||||
$totale = $this->fattura->totale;
|
||||
if ($totale == 0) {
|
||||
return;
|
||||
}
|
||||
|
||||
$iva_indetraibile = $this->fattura->iva_indetraibile;
|
||||
$iva_detraibile = $this->fattura->iva - $iva_indetraibile;
|
||||
|
||||
|
@ -91,7 +95,7 @@ class Movimenti
|
|||
*
|
||||
* Totale (Split Payment disabilitato), oppure Totale - IVA detraibile (Split Payment abilitato) -> DARE per Vendita, AVERE per Acquisto
|
||||
*/
|
||||
$anagrafica = \Modules\Anagrafiche\Anagrafica::find(post('idanagrafica'));
|
||||
$anagrafica = $this->fattura->anagrafica;
|
||||
|
||||
$id_conto = $is_acquisto ? $anagrafica->idconto_fornitore : $anagrafica->idconto_cliente;
|
||||
if (empty($id_conto)) {
|
||||
|
|
|
@ -69,7 +69,7 @@ class Scadenze
|
|||
|
||||
// Se c'è una ritenuta d'acconto, la aggiungo allo scadenzario al 15 del mese dopo l'ultima scadenza di pagamento
|
||||
if ($direzione == 'uscita' && $ritenuta_acconto > 0 && empty($is_ritenuta_pagata)) {
|
||||
$ultima_scadenza = $this->fattura->scadenze->last();
|
||||
$ultima_scadenza = $this->fattura->scadenze()->orderBy('scadenza', 'desc')->first();
|
||||
$scadenza = $ultima_scadenza->scadenza->copy()->startOfMonth()->addMonth();
|
||||
$scadenza->setDate($scadenza->year, $scadenza->month, 15);
|
||||
$id_pagamento = $this->fattura->idpagamento;
|
||||
|
|
|
@ -28,7 +28,7 @@ $directory = Plugins\ImportFE\FatturaElettronica::getImportDirectory();
|
|||
|
||||
if (!empty($list)) {
|
||||
echo '
|
||||
<table class="table table-striped table-hover table-sm table-bordered datatables">
|
||||
<table class="table table-striped table-hover table-sm table-bordered">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>'.tr('Descrizione').'</th>
|
||||
|
|
Loading…
Reference in New Issue