Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 6fb26f9a

Von Tamino Steinert vor mehr als 2 Jahren hinzugefügt

  • ID 6fb26f9aa9e1e194a46aee62d1f143d5c807b1d7
  • Vorgänger c8774e89
  • Nachfolger cc9d7f43

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