X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=bin%2Fmozilla%2Fct.pl;h=079b24c4afe9cb6f65d06d17c6b3c47884fdf362;hb=c3db1b36f46f3bb8fe278ad3320bc7b139278dc3;hp=816e30292fb8acce10746d13005132818abc27d6;hpb=64c45e8f07f84b9f83c2eeb807b5113789a7802d;p=kivitendo-erp.git diff --git a/bin/mozilla/ct.pl b/bin/mozilla/ct.pl index 816e30292..079b24c4a 100644 --- a/bin/mozilla/ct.pl +++ b/bin/mozilla/ct.pl @@ -286,6 +286,12 @@ sub list_names { } my $base_url = build_std_url("script=$ref->{module}.pl", 'action=edit', 'id=' . E($ref->{invid}), 'callback', @hidden_nondefault); + if ($::instance_conf->get_feature_experimental) { + if ('oe' eq $ref->{module}) { + $base_url = build_std_url("script=controller.pl", 'action=Order/edit', 'id=' . E($ref->{invid}), 'callback', @hidden_nondefault); + } + } + $row->{invnumber}->{link} = $base_url; $row->{ordnumber}->{link} = $base_url . "&type=${ordertype}"; $row->{quonumber}->{link} = $base_url . "&type=${quotationtype}"; @@ -301,7 +307,7 @@ sub list_names { } setup_ct_list_names_action_bar(); - $report->generate_with_headers(action_bar => 1); + $report->generate_with_headers(); $main::lxdebug->leave_sub(); } @@ -432,7 +438,7 @@ sub list_contacts { $report->add_data($row); } - $report->generate_with_headers(action_bar => 1); + $report->generate_with_headers(); $::lxdebug->leave_sub; } @@ -443,7 +449,7 @@ sub setup_ct_search_action_bar { for my $bar ($::request->layout->get('actionbar')) { $bar->add( action => [ - t8('Continue'), + t8('Search'), submit => [ '#form', { action => 'list_names' } ], accesskey => 'enter', ], @@ -457,7 +463,7 @@ sub setup_ct_list_names_action_bar { for my $bar ($::request->layout->get('actionbar')) { $bar->add( action => [ - $::form->{db} eq 'customer' ? t8('New customer') : t8('New vendor'), + t8('Add'), submit => [ '#new_form', { action => 'CustomerVendor/add' } ], accesskey => 'enter', ], @@ -471,7 +477,7 @@ sub setup_ct_search_contact_action_bar { for my $bar ($::request->layout->get('actionbar')) { $bar->add( action => [ - t8('Continue'), + t8('Search'), submit => [ '#form', { action => 'list_contacts' } ], accesskey => 'enter', ],