X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FOrder.pm;h=a605a36892c6b8a473c337320da43f0e32ba45db;hb=cf6f95c5277a9b2998762c696de77b490850f19a;hp=8909b7e2601552f80e28b04048be9ae275a51665;hpb=0fdcea4d5621abeba25c510a1452d3a75cebbad9;p=kivitendo-erp.git diff --git a/SL/DB/Order.pm b/SL/DB/Order.pm index 8909b7e26..a605a3689 100644 --- a/SL/DB/Order.pm +++ b/SL/DB/Order.pm @@ -30,6 +30,12 @@ __PACKAGE__->meta->add_relationship( class => 'SL::DB::PeriodicInvoicesConfig', column_map => { id => 'oe_id' }, }, + custom_shipto => { + type => 'one to one', + class => 'SL::DB::Shipto', + column_map => { id => 'trans_id' }, + query_args => [ module => 'OE' ], + }, ); __PACKAGE__->meta->initialize; @@ -144,15 +150,16 @@ sub convert_to_invoice { } sub convert_to_delivery_order { - my ($self, %params) = @_; + my ($self, @args) = @_; my ($delivery_order, $custom_shipto); if (!$self->db->with_transaction(sub { require SL::DB::DeliveryOrder; - ($delivery_order, $custom_shipto) = SL::DB::DeliveryOrder->new_from($self); + ($delivery_order, $custom_shipto) = SL::DB::DeliveryOrder->new_from($self, @args); $delivery_order->save; $custom_shipto->save if $custom_shipto; $self->link_to_record($delivery_order); + $self->update_attributes(delivered => 1); 1; })) { return wantarray ? () : undef; @@ -212,7 +219,9 @@ Returns true if the order is of the given type. Creates a new delivery order with C<$self> as the basis by calling L. That delivery order is saved, and -C<$self> is linked to the new invoice via L. +C<$self> is linked to the new invoice via +L. C<$self>'s C attribute is set to +C, and C<$self> is saved. The arguments in C<%params> are passed to L.