Revision e0afd862
Von Bernd Bleßmann vor fast 2 Jahren hinzugefügt
SL/Controller/Order.pm | ||
---|---|---|
26 | 26 |
use SL::DB::Printer; |
27 | 27 |
use SL::DB::Note; |
28 | 28 |
use SL::DB::Language; |
29 |
use SL::DB::Reclamation; |
|
29 | 30 |
use SL::DB::RecordLink; |
30 | 31 |
use SL::DB::RequirementSpec; |
31 | 32 |
use SL::DB::Shipto; |
... | ... | |
95 | 96 |
sub action_add_from_reclamation { |
96 | 97 |
my ($self) = @_; |
97 | 98 |
|
98 |
require SL::DB::Reclamation; |
|
99 | 99 |
my $reclamation = SL::DB::Reclamation->new(id => $::form->{from_id})->load; |
100 | 100 |
my %params; |
101 | 101 |
$params{destination_type} = $reclamation->is_sales ? 'sales_order' |
Auch abrufbar als: Unified diff
S:D:Reclamation per use im Auftragscontroller einbinden.
S:D:Reclamation kommt an mehreren stellen vor und einmal wurde das "require"
vergessen. Zudem merkt man compile time-Fehler dann direkt.
behebt #547 (redmine)