Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision bcdeb6ec

Von Tamino Steinert vor mehr als 2 Jahren hinzugefügt

  • ID bcdeb6ecdf8f6bdd981167ffb0a3dafcc4408eb5
  • Vorgänger a6c54e9f
  • Nachfolger c389a0e6

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