mirror of
https://github.com/devcode-it/openstamanager.git
synced 2024-12-28 00:30:45 +01:00
Migliorie minori
This commit is contained in:
parent
4de46dfe34
commit
e72edaaea4
@ -501,7 +501,7 @@ switch (post('op')) {
|
||||
case 'delete_riga':
|
||||
$id_riga = post('idriga');
|
||||
$type = post('type');
|
||||
$riga = $fattura->getRiga($type, $id_riga);
|
||||
$riga = $fattura->getRiga($type, $id_riga);
|
||||
|
||||
if (!empty($riga)) {
|
||||
try {
|
||||
|
@ -263,7 +263,7 @@ if (empty($record['is_fiscale'])) {
|
||||
//Ricalcola scadenze disponibile solo per fatture di acquisto
|
||||
if ($fattura->isFE() && $ricalcola && $module['name'] == 'Fatture di acquisto') {
|
||||
echo '
|
||||
<button type="button" class="btn btn-info btn-xs pull-right tip" title="'.tr('Ricalcola le scadenze').'. '.tr('Per ricalcolare correttamente le scadenze, imposta la fattura di acquisto nello stato \'\'Bozza\'\' e correggi il metodo di come desiderato, poi re-imposta lo stato \'\'Emessa\'\' e utilizza questa funzione').'." id="ricalcola_scadenze">
|
||||
<button type="button" class="btn btn-info btn-xs pull-right tip" title="'.tr('Ricalcola le scadenze').'. '.tr('Per ricalcolare correttamente le scadenze, imposta la fattura di acquisto nello stato \'\'Bozza\'\' e correggi il documento come desiderato, poi re-imposta lo stato \'\'Emessa\'\' e utilizza questa funzione').'." id="ricalcola_scadenze">
|
||||
<i class="fa fa-calculator" aria-hidden="true"></i>
|
||||
</button>';
|
||||
}
|
||||
|
@ -86,7 +86,7 @@ foreach ($righe as $riga) {
|
||||
|
||||
echo '
|
||||
<tr>
|
||||
<td>
|
||||
<td style="vertical-align: middle">
|
||||
'.nl2br($r['descrizione']);
|
||||
|
||||
if ($riga->isArticolo()) {
|
||||
@ -105,14 +105,14 @@ foreach ($righe as $riga) {
|
||||
|
||||
if (!$riga->isDescrizione()) {
|
||||
echo '
|
||||
<td class="text-center">
|
||||
<td class="text-center" style="vertical-align: middle" >
|
||||
'.Translator::numberToLocale(abs($riga->qta), 'qta').' '.$r['um'].'
|
||||
</td>';
|
||||
|
||||
if ($options['pricing']) {
|
||||
// Prezzo unitario
|
||||
echo '
|
||||
<td class="text-right">
|
||||
<td class="text-right" style="vertical-align: middle">
|
||||
'.moneyFormat($riga->prezzo_unitario_vendita);
|
||||
|
||||
if ($riga->sconto > 0) {
|
||||
@ -132,13 +132,13 @@ foreach ($righe as $riga) {
|
||||
|
||||
// Imponibile
|
||||
echo '
|
||||
<td class="text-right">
|
||||
<td class="text-right" style="vertical-align: middle" >
|
||||
'.moneyFormat($riga->totale_imponibile).'
|
||||
</td>';
|
||||
|
||||
// Iva
|
||||
echo '
|
||||
<td class="text-center">
|
||||
<td class="text-center" style="vertical-align: middle">
|
||||
'.Translator::numberToLocale($riga->aliquota->percentuale, 0).'
|
||||
</td>';
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user