Revision 9db40ab0
Von Bernd Bleßmann vor fast 6 Jahren hinzugefügt
SL/Controller/Order.pm | ||
---|---|---|
|
||
sub workflow_sales_or_purchase_order {
|
||
my ($self) = @_;
|
||
|
||
# always save
|
||
my $errors = $self->save();
|
||
|
||
... | ... | |
return $self->js->render();
|
||
}
|
||
|
||
|
||
my $destination_type = $::form->{type} eq sales_quotation_type() ? sales_order_type()
|
||
: $::form->{type} eq request_quotation_type() ? purchase_order_type()
|
||
: $::form->{type} eq purchase_order_type() ? sales_order_type()
|
Auch abrufbar als: Unified diff
OrderController: Kosmetik