Revision 8522a85e
Von Tamino Steinert vor mehr als 2 Jahren hinzugefügt
| bin/mozilla/io.pl | ||
|---|---|---|
|
quotation();
|
||
|
}
|
||
|
|
||
|
sub sales_reclamation {
|
||
|
my $id = $::form->{id};
|
||
|
|
||
|
require SL::Controller::Reclamation;
|
||
|
my $c = SL::Controller::Reclamation->new();
|
||
|
$c->redirect_to(
|
||
|
controller => 'Reclamation',
|
||
|
action => 'add_from_sales_invoice',
|
||
|
from_id => $id,
|
||
|
type => 'sales_reclamation',
|
||
|
);
|
||
|
}
|
||
|
|
||
|
sub purchase_reclamation {
|
||
|
my $id = $::form->{id};
|
||
|
|
||
|
require SL::Controller::Reclamation;
|
||
|
my $c = SL::Controller::Reclamation->new();
|
||
|
$c->redirect_to(
|
||
|
controller => 'Reclamation',
|
||
|
action => 'add_from_purchase_invoice',
|
||
|
from_id => $id,
|
||
|
type => 'purchase_reclamation',
|
||
|
);
|
||
|
}
|
||
|
|
||
|
sub print_options {
|
||
|
$::lxdebug->enter_sub();
|
||
|
|
||
Auch abrufbar als: Unified diff
Workflow: (sales/purchase) invoice → reclamation