mirror of
https://github.com/devcode-it/openstamanager.git
synced 2024-12-23 22:03:18 +01:00
Fix minori pianificazione fatturazione
This commit is contained in:
parent
b3bafb6625
commit
0a7ad17b0f
@ -40,7 +40,7 @@ while ($data_corrente->lessThanOrEqualTo($data_conclusione)) {
|
||||
<input type="hidden" name="periodo['.$count.']" value="'.$data.'">
|
||||
</div>';
|
||||
|
||||
$data_corrente = $data_corrente->addMonth();
|
||||
$data_corrente = $data_corrente->addDay();
|
||||
++$count;
|
||||
}
|
||||
|
||||
@ -67,12 +67,12 @@ foreach ($iva_righe as $id_iva => $righe) {
|
||||
'_NUM_' => $contratto->numero,
|
||||
]).'" ]}
|
||||
|
||||
{[ "type": "number", "label": "'.tr('Q.tà').'", "name": "qta['.$id_iva.']", "required": 1, "value": "1", "decimals": "qta", "min-value": "1" ]}
|
||||
{[ "type": "number", "label": "'.tr('Q.tà per fattura').'", "name": "qta['.$id_iva.']", "required": 1, "value": "1", "decimals": "qta", "min-value": "1" ]}
|
||||
</div>
|
||||
<div class="col-md-3">
|
||||
<p><b>'.tr('Imponibile').'</b>: '.moneyFormat(sum(array_column($righe, 'imponibile'))).'</p>
|
||||
<p><b>'.tr('IVA').'</b>: '.moneyFormat(sum(array_column($righe, 'iva'))).'</p>
|
||||
<p><b>'.tr('Totale imponibile').'</b>: '.moneyFormat(sum(array_column($righe, 'totale'))).'</p>
|
||||
<p><b>'.tr('Totale').'</b>: '.moneyFormat(sum(array_column($righe, 'totale'))).'</p>
|
||||
</div>
|
||||
</div>
|
||||
<hr>';
|
||||
|
@ -68,7 +68,7 @@ if (!$pianificazioni->isEmpty()) {
|
||||
])).' (<i class="'.$fattura->stato->icona.'"></i> '.$fattura->stato->descrizione.')';
|
||||
} else {
|
||||
echo '
|
||||
<i class="fa fa-clock-o"></i> '.tr('Non ancora fatturato');
|
||||
<i class="fa fa-hourglass-start"></i> '.tr('Non ancora fatturato');
|
||||
}
|
||||
echo '
|
||||
</td>';
|
||||
@ -89,7 +89,7 @@ if (!$pianificazioni->isEmpty()) {
|
||||
} else {
|
||||
echo '
|
||||
<div class="alert alert-info">
|
||||
<i class="fa fa-warning"></i> '.tr('Pianificazione non ancora effettuata per il contratto corrente').'.
|
||||
<i class="fa fa-info-circle"></i> '.tr('Pianificazione della fatturazione non impostata per questo contratto').'.
|
||||
</div>
|
||||
|
||||
<button type="button" '.(!empty($is_pianificabile) ? '' : 'disabled').' title="'.tr('Aggiungi una nuova pianificazione').'" data-toggle="tooltip" class="btn btn-primary pull-right tip" id="pianifica">
|
||||
|
Loading…
Reference in New Issue
Block a user