Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 8522a85e

Von Tamino Steinert vor mehr als 2 Jahren hinzugefügt

  • ID 8522a85e2af8b665386b911d0224e550e8fcd8bd
  • Vorgänger 7ac17a23
  • Nachfolger fe3e0ed3

Workflow: (sales/purchase) invoice → reclamation

Unterschiede anzeigen:

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