Revision f559550f
Von Sven Schöling vor mehr als 7 Jahren hinzugefügt
SL/Controller/ClientConfig.pm | ||
---|---|---|
17 | 17 |
use SL::PriceSource::ALL; |
18 | 18 |
use SL::Template; |
19 | 19 |
use SL::Controller::TopQuickSearch; |
20 |
use SL::Helper::ShippedQty; |
|
20 | 21 |
|
21 | 22 |
__PACKAGE__->run_before('check_auth'); |
22 | 23 |
|
23 | 24 |
use Rose::Object::MakeMethods::Generic ( |
24 |
'scalar --get_set_init' => [ qw(defaults all_warehouses all_weightunits all_languages all_currencies all_templates all_price_sources h_unit_name available_quick_search_modules |
|
25 |
'scalar --get_set_init' => [ qw(defaults all_warehouses all_weightunits all_languages all_currencies all_templates all_price_sources h_unit_name available_quick_search_modules available_shipped_qty_item_identity_fields
|
|
25 | 26 |
all_project_statuses all_project_types |
26 | 27 |
posting_options payment_options accounting_options inventory_options profit_options balance_startdate_method_options) ], |
27 | 28 |
); |
... | ... | |
197 | 198 |
[ SL::Controller::TopQuickSearch->new->available_modules ]; |
198 | 199 |
} |
199 | 200 |
|
201 |
sub init_available_shipped_qty_item_identity_fields { |
|
202 |
[ SL::Helper::ShippedQty->new->available_item_identity_fields ]; |
|
203 |
} |
|
204 |
|
|
200 | 205 |
# |
201 | 206 |
# filters |
202 | 207 |
# |
Auch abrufbar als: Unified diff
ShippedQty: Algorithmusdetails konfigurierbar machen