Revision 93957d04
Von Bernd Bleßmann vor etwa 6 Jahren hinzugefügt
SL/Controller/Order.pm | ||
---|---|---|
1405 | 1405 |
|
1406 | 1406 |
# link records |
1407 | 1407 |
if ($::form->{converted_from_oe_id}) { |
1408 |
my $quo = SL::DB::Order->new(id => $::form->{converted_from_oe_id})->load;
|
|
1408 |
my $src = SL::DB::Order->new(id => $::form->{converted_from_oe_id})->load;
|
|
1409 | 1409 |
# implement OE::_close_quotations_rfqs - this a 1 : 1 connection |
1410 | 1410 |
# close only if workflow: quotation -> order. TODO test case |
1411 |
$quo->update_attributes(closed => 1) if $quo->type =~ /_quotation$/;
|
|
1412 |
$quo->link_to_record($self->order);
|
|
1411 |
$src->update_attributes(closed => 1) if $src->type =~ /_quotation$/;
|
|
1412 |
$src->link_to_record($self->order);
|
|
1413 | 1413 |
|
1414 | 1414 |
if (scalar @{ $::form->{converted_from_orderitems_ids} || [] }) { |
1415 | 1415 |
my $idx = 0; |
Auch abrufbar als: Unified diff
Auftrags-Controller: Variable besser benennen …
bin drüber gestolpert, weil ich gesucht habe, wo im Workflow -> Auftrag
die Verknüpfungen gespeichert werden. Wg. $quo nahm ich an, dass es hier
nur um Angebote geht.