X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FController%2FFinancialControllingReport.pm;h=f4f09ff0999af143a853193ab759c40a2c53662a;hb=e0900c89f30e6a0ebe9c9152cabbe4410e5b3c31;hp=7b392f184c492c7f47f87f786e932562f8ea56a2;hpb=e7913c4ca30470b30b0585205c6badbe2f99e655;p=kivitendo-erp.git 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;