Revision 55049b81
Von Sven Schöling vor fast 13 Jahren hinzugefügt
SL/DB/Invoice.pm | ||
---|---|---|
93 | 93 |
my $self = shift; |
94 | 94 |
die 'not a setter method' if @_; |
95 | 95 |
|
96 |
return $self->amount - $self->netamount;
|
|
96 |
return ($self->amount || 0) - ($self->netamount || 0);
|
|
97 | 97 |
} |
98 | 98 |
|
99 | 99 |
__PACKAGE__->meta->make_attr_helpers(taxamount => 'numeric(15,5)'); |
Auch abrufbar als: Unified diff
SL::DB::Invoice: Eine Warning unterdrücken.