8 use List::Util qw(max);
10 use SL::DB::MetaSetup::Order;
11 use SL::DB::Manager::Order;
12 use SL::DB::Helper::FlattenToForm;
13 use SL::DB::Helper::LinkedRecords;
14 use SL::DB::Helper::PriceTaxCalculator;
15 use SL::DB::Helper::PriceUpdater;
16 use SL::DB::Helper::TransNumberGenerator;
19 __PACKAGE__->meta->add_relationship(
21 type => 'one to many',
22 class => 'SL::DB::OrderItem',
23 column_map => { id => 'trans_id' },
25 with_objects => [ 'part' ]
28 periodic_invoices_config => {
30 class => 'SL::DB::PeriodicInvoicesConfig',
31 column_map => { id => 'oe_id' },
35 class => 'SL::DB::Shipto',
36 column_map => { id => 'trans_id' },
37 query_args => [ module => 'OE' ],
41 __PACKAGE__->meta->initialize;
43 __PACKAGE__->before_save('_before_save_set_ord_quo_number');
47 sub _before_save_set_ord_quo_number {
50 # ordnumber is 'NOT NULL'. Therefore make sure it's always set to at
51 # least an empty string, even if we're saving a quotation.
52 $self->ordnumber('') if !$self->ordnumber;
54 my $field = $self->quotation ? 'quonumber' : 'ordnumber';
55 $self->create_trans_number if !$self->$field;
62 sub items { goto &orderitems; }
67 return [ sort {$a->id <=> $b->id } @{ $self->items } ];
73 return 'sales_order' if $self->customer_id && ! $self->quotation;
74 return 'purchase_order' if $self->vendor_id && ! $self->quotation;
75 return 'sales_quotation' if $self->customer_id && $self->quotation;
76 return 'request_quotation' if $self->vendor_id && $self->quotation;
82 return shift->type eq shift;
85 sub displayable_type {
86 my $type = shift->type;
88 return $::locale->text('Sales quotation') if $type eq 'sales_quotation';
89 return $::locale->text('Request quotation') if $type eq 'request_quotation';
90 return $::locale->text('Sales Order') if $type eq 'sales_order';
91 return $::locale->text('Purchase Order') if $type eq 'purchase_order';
98 croak 'not an accessor' if @_ > 1;
99 return !!shift->customer_id;
106 if ($self->quotation) {
109 require SL::DB::Invoice;
110 return SL::DB::Manager::Invoice->get_all(
112 ordnumber => $self->ordnumber,
113 @{ $params{query} || [] },
119 sub displayable_state {
122 return $self->closed ? $::locale->text('closed') : $::locale->text('open');
125 sub abschlag_invoices {
126 return shift()->invoices(query => [ abschlag => 1 ]);
130 return shift()->invoices(query => [ abschlag => 0 ]);
133 sub convert_to_invoice {
134 my ($self, %params) = @_;
136 croak("Conversion to invoices is only supported for sales records") unless $self->customer_id;
139 if (!$self->db->with_transaction(sub {
140 require SL::DB::Invoice;
141 $invoice = SL::DB::Invoice->new_from($self)->post(%params) || die;
142 $self->link_to_record($invoice);
143 $self->update_attributes(closed => 1);
152 sub convert_to_delivery_order {
153 my ($self, @args) = @_;
155 my ($delivery_order, $custom_shipto);
156 if (!$self->db->with_transaction(sub {
157 require SL::DB::DeliveryOrder;
158 ($delivery_order, $custom_shipto) = SL::DB::DeliveryOrder->new_from($self, @args);
159 $delivery_order->save;
160 $custom_shipto->save if $custom_shipto;
161 $self->link_to_record($delivery_order);
162 $self->update_attributes(delivered => 1);
165 return wantarray ? () : undef;
168 return wantarray ? ($delivery_order, $custom_shipto) : $delivery_order;
174 my %number_method = (
175 sales_order => 'ordnumber',
176 sales_quotation => 'quonumber',
177 purchase_order => 'ordnumber',
178 request_quotation => 'quonumber',
181 return $self->${ \ $number_method{$self->type} }(@_);
194 SL::DB::Order - Order Datenbank Objekt.
200 Returns one of the following string types:
208 =item sales_quotation
210 =item request_quotation
214 =head2 C<is_type TYPE>
216 Returns true if the order is of the given type.
218 =head2 C<convert_to_delivery_order %params>
220 Creates a new delivery order with C<$self> as the basis by calling
221 L<SL::DB::DeliveryOrder::new_from>. That delivery order is saved, and
222 C<$self> is linked to the new invoice via
223 L<SL::DB::RecordLink>. C<$self>'s C<delivered> attribute is set to
224 C<true>, and C<$self> is saved.
226 The arguments in C<%params> are passed to
227 L<SL::DB::DeliveryOrder::new_from>.
229 Returns C<undef> on failure. Otherwise the return value depends on the
230 context. In list context the new delivery order and a shipto instance
231 will be returned. In scalar instance only the delivery order instance
234 Custom shipto addresses (the ones specific to the sales/purchase
235 record and not to the customer/vendor) are only linked from C<shipto>
236 to C<delivery_orders>. Meaning C<delivery_orders.shipto_id> will not
237 be filled in that case. That's why a separate shipto object is created
240 =head2 C<convert_to_invoice %params>
242 Creates a new invoice with C<$self> as the basis by calling
243 L<SL::DB::Invoice::new_from>. That invoice is posted, and C<$self> is
244 linked to the new invoice via L<SL::DB::RecordLink>. C<$self>'s
245 C<closed> attribute is set to C<true>, and C<$self> is saved.
247 The arguments in C<%params> are passed to L<SL::DB::Invoice::post>.
249 Returns the new invoice instance on success and C<undef> on
250 failure. The whole process is run inside a transaction. On failure
251 nothing is created or changed in the database.
253 At the moment only sales quotations and sales orders can be converted.
255 =head2 C<create_sales_process>
257 Creates and saves a new sales process. Can only be called for sales
260 The newly created process will be linked bidirectionally to both
261 C<$self> and to all sales quotations that are linked to C<$self>.
263 Returns the newly created process instance.
271 Sven Schöling <s.schoeling@linet-services.de>