From: Sven Schöling Date: Tue, 22 Sep 2015 12:19:28 +0000 (+0200) Subject: PriceSource: js accessor angepasst X-Git-Tag: release-3.4.1~722 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=40a0907fa695c6bbd7791743ac48109321d5d267;p=kivitendo-erp.git PriceSource: js accessor angepasst --- diff --git a/SL/Controller/PriceSource.pm b/SL/Controller/PriceSource.pm index 10763ce55..aea9f4645 100644 --- a/SL/Controller/PriceSource.pm +++ b/SL/Controller/PriceSource.pm @@ -5,14 +5,13 @@ use strict; use parent qw(SL::Controller::Base); use List::MoreUtils qw(any uniq apply); -use SL::ClientJS; use SL::Locale::String qw(t8); use SL::PriceSource; use Rose::Object::MakeMethods::Generic ( scalar => [ qw(record_item) ], - 'scalar --get_set_init' => [ qw(js record) ], + 'scalar --get_set_init' => [ qw(record) ], ); __PACKAGE__->run_before('check_auth'); @@ -53,7 +52,7 @@ sub render_price_dialog { # $self->js->show('#dialog_flash_error'); # } - $self->js->render($self); + $self->js->render; } @@ -65,10 +64,6 @@ sub check_auth { $::auth->assert('edit_prices'); } -sub init_js { - SL::ClientJS->new -} - sub init_record { _make_record(); }