Revision fc35d1dd
Von Kivitendo Admin vor fast 10 Jahren hinzugefügt
SL/Presenter/Invoice.pm | ||
---|---|---|
use parent qw(Exporter);
|
||
|
||
use Exporter qw(import);
|
||
our @EXPORT = qw(invoice sales_invoice ar_transaction purchase_invoice ap_transaction gl_transaction);
|
||
our @EXPORT = qw(invoice sales_invoice ar_transaction purchase_invoice ap_transaction);
|
||
|
||
use Carp;
|
||
|
||
... | ... | |
return _is_ir_record($self, $invoice, 'ap', %params);
|
||
}
|
||
|
||
sub gl_transaction {
|
||
my ($self, $invoice, %params) = @_;
|
||
|
||
return _is_ir_record($self, $invoice, 'gl', %params);
|
||
}
|
||
|
||
sub _is_ir_record {
|
||
my ($self, $invoice, $controller, %params) = @_;
|
||
|
Auch abrufbar als: Unified diff
Presenter Code - gl_transaction aus invoice wieder entfernt