Revision a42e3ac4
Von Jan Büren vor etwa 2 Jahren hinzugefügt
SL/DB/PurchaseInvoice.pm | ||
---|---|---|
109 | 109 |
sub invoice_type { |
110 | 110 |
my ($self) = @_; |
111 | 111 |
|
112 |
return 'ap_transaction' if !$self->invoice; |
|
112 |
return 'purchase_credit_note' if $self->amount < 0; |
|
113 |
return 'ap_transaction' if !$self->invoice; |
|
113 | 114 |
return 'purchase_invoice'; |
114 | 115 |
} |
115 | 116 |
|
Auch abrufbar als: Unified diff
Zustand für negative Kreditorenbuchung oder EK-Rechnung als invoice_type hinzufügen
Entsprechend bei Wechselkursgebühren ausklammern