X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/kivitendo-erp.git/blobdiff_plain/e7913c4ca30470b30b0585205c6badbe2f99e655..refs/heads/debian:/SL/Controller/FinancialControllingReport.pm diff --git a/SL/Controller/FinancialControllingReport.pm b/SL/Controller/FinancialControllingReport.pm index 7b392f184..f4f09ff09 100644 --- a/SL/Controller/FinancialControllingReport.pm +++ b/SL/Controller/FinancialControllingReport.pm @@ -278,7 +278,11 @@ sub link_to { my $type = $object->type; my $id = $object->id; - return "oe.pl?action=$action&type=$type&vc=customer&id=$id"; + if ($::instance_conf->get_feature_experimental_order) { + return "controller.pl?action=Order/$action&type=$type&id=$id"; + } else { + return "oe.pl?action=$action&type=$type&vc=customer&id=$id"; + } } if ($object->isa('SL::DB::Customer')) { my $id = $object->id;