Bugfix tests
This commit is contained in:
parent
2c2bd8091a
commit
5f35030da0
|
@ -45,9 +45,7 @@ abstract class Discount extends Model
|
|||
*/
|
||||
public function getImponibileAttribute()
|
||||
{
|
||||
$result = $this->subtotale;
|
||||
|
||||
return $this->parent->tipo->reversed ? -$result : $result;
|
||||
return $this->subtotale;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -63,9 +61,7 @@ abstract class Discount extends Model
|
|||
*/
|
||||
public function getIvaAttribute()
|
||||
{
|
||||
$result = $this->attributes['iva'];
|
||||
|
||||
return $this->parent->tipo->reversed ? -$result : $result;
|
||||
return $this->attributes['iva'];
|
||||
}
|
||||
|
||||
protected static function boot()
|
||||
|
|
|
@ -1289,7 +1289,7 @@ switch (post('op')) {
|
|||
// Aggiornamento sconto
|
||||
if (post('evadere')[$fattura->scontoGlobale->id] == 'on') {
|
||||
$nota->tipo_sconto_globale = $fattura->tipo_sconto_globale;
|
||||
$nota->sconto_globale = $fattura->sconto_globale;
|
||||
$nota->sconto_globale = $fattura->tipo_sconto_globale == 'PRC' ? $fattura->sconto_globale : -$fattura->sconto_globale;
|
||||
$nota->save();
|
||||
|
||||
$nota->updateSconto();
|
||||
|
|
|
@ -369,7 +369,7 @@ switch (post('op')) {
|
|||
flash()->info(tr('Aggiunta nuova revisione!'));
|
||||
break;
|
||||
|
||||
// Creazione fattura da contratto
|
||||
// Creazione fattura da preventivo
|
||||
case 'fattura_da_preventivo':
|
||||
$preventivo = Preventivo::find($id_record);
|
||||
|
||||
|
|
|
@ -72,7 +72,7 @@ class AnagraficheCest
|
|||
$t->clickAndWaitModal('.btn-primary', '#tabs');
|
||||
|
||||
// Completa i campi per il nuovo elemento
|
||||
$t->fillField('Ragione sociale', $name);
|
||||
$t->fillField('Denominazione', $name);
|
||||
$t->select2('#idtipoanagrafica', $tipo);
|
||||
$t->click('.btn-box-tool');
|
||||
$t->waitForElementVisible('#piva', 3);
|
||||
|
@ -82,7 +82,7 @@ class AnagraficheCest
|
|||
$t->clickAndWait('Aggiungi', '#add-form');
|
||||
|
||||
// Controlla il salvataggio finale
|
||||
$t->seeInField('Ragione sociale', $name);
|
||||
$t->seeInField('Denominazione', $name);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue