Revision 7caf72ff
Von Moritz Bunkus vor mehr als 13 Jahren hinzugefügt
SL/Controller/CsvImport.pm | ||
---|---|---|
18 | 18 |
use Rose::Object::MakeMethods::Generic |
19 | 19 |
( |
20 | 20 |
scalar => [ qw(type profile file all_profiles all_charsets sep_char all_sep_chars quote_char all_quote_chars escape_char all_escape_chars all_buchungsgruppen |
21 |
import_status errors headers raw_data_headers data num_imported num_importable) ], |
|
21 |
import_status errors headers raw_data_headers data num_imported num_importable worker displayable_columns) ],
|
|
22 | 22 |
); |
23 | 23 |
|
24 | 24 |
__PACKAGE__->run_before('check_auth'); |
... | ... | |
124 | 124 |
|
125 | 125 |
$self->all_buchungsgruppen(SL::DB::Manager::Buchungsgruppe->get_all_sorted); |
126 | 126 |
|
127 |
$self->setup_help; |
|
128 |
|
|
127 | 129 |
$self->render('csv_import/form', title => $title); |
128 | 130 |
} |
129 | 131 |
|
... | ... | |
233 | 235 |
: die "Program logic error"; |
234 | 236 |
} |
235 | 237 |
|
238 |
sub setup_help { |
|
239 |
my ($self) = @_; |
|
240 |
|
|
241 |
$self->create_worker->setup_displayable_columns; |
|
242 |
} |
|
243 |
|
|
244 |
|
|
236 | 245 |
1; |
Auch abrufbar als: Unified diff
Hilfetexte anzeigen; sehr viele Übersetzungen