X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FPresenter%2FCustomerVendor.pm;h=209431fd3ab38c7a7dd77b5ef884fe46f9ba35b2;hb=0152cc2e4e1e451cb51d4d3fd8a0e450eff5efcb;hp=424f0d8da91abe1ea7aab6387fe01e6590ac9c3c;hpb=b2e1809f6b6d8852ab0086dcc61ae9540c18b83f;p=kivitendo-erp.git diff --git a/SL/Presenter/CustomerVendor.pm b/SL/Presenter/CustomerVendor.pm index 424f0d8da..209431fd3 100644 --- a/SL/Presenter/CustomerVendor.pm +++ b/SL/Presenter/CustomerVendor.pm @@ -10,12 +10,12 @@ our @EXPORT = qw(customer vendor); use Carp; sub customer { - my ($self, $customer, $type, %params) = @_; + my ($self, $customer, %params) = @_; return _customer_vendor($self, $customer, 'customer', %params); } sub vendor { - my ($self, $vendor, $type, %params) = @_; + my ($self, $vendor, %params) = @_; return _customer_vendor($self, $vendor, 'vendor', %params); }