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 __PACKAGE__->meta->initialize;
37 __PACKAGE__->before_save('_before_save_set_ord_quo_number');
41 sub _before_save_set_ord_quo_number {
44 # ordnumber is 'NOT NULL'. Therefore make sure it's always set to at
45 # least an empty string, even if we're saving a quotation.
46 $self->ordnumber('') if !$self->ordnumber;
48 my $field = $self->quotation ? 'quonumber' : 'ordnumber';
49 $self->create_trans_number if !$self->$field;
56 sub items { goto &orderitems; }
61 return [ sort {$a->id <=> $b->id } @{ $self->items } ];
67 return 'sales_order' if $self->customer_id && ! $self->quotation;
68 return 'purchase_order' if $self->vendor_id && ! $self->quotation;
69 return 'sales_quotation' if $self->customer_id && $self->quotation;
70 return 'request_quotation' if $self->vendor_id && $self->quotation;
76 return shift->type eq shift;
79 sub displayable_type {
80 my $type = shift->type;
82 return $::locale->text('Sales quotation') if $type eq 'sales_quotation';
83 return $::locale->text('Request quotation') if $type eq 'request_quotation';
84 return $::locale->text('Sales Order') if $type eq 'sales_order';
85 return $::locale->text('Purchase Order') if $type eq 'purchase_order';
92 croak 'not an accessor' if @_ > 1;
93 return !!shift->customer_id;
100 if ($self->quotation) {
103 require SL::DB::Invoice;
104 return SL::DB::Manager::Invoice->get_all(
106 ordnumber => $self->ordnumber,
107 @{ $params{query} || [] },
113 sub displayable_state {
116 return $self->closed ? $::locale->text('closed') : $::locale->text('open');
119 sub abschlag_invoices {
120 return shift()->invoices(query => [ abschlag => 1 ]);
124 return shift()->invoices(query => [ abschlag => 0 ]);
127 sub convert_to_invoice {
128 my ($self, %params) = @_;
130 croak("Conversion to invoices is only supported for sales records") unless $self->customer_id;
133 if (!$self->db->do_transaction(sub {
134 $invoice = SL::DB::Invoice->new_from($self)->post(%params) || die;
135 $self->link_to_record($invoice);
136 $self->update_attributes(closed => 1);
148 my %number_method = (
149 sales_order => 'ordnumber',
150 sales_quotation => 'quonumber',
151 purchase_order => 'ordnumber',
152 request_quotation => 'quonumber',
155 return $self->${ \ $number_method{$self->type} }(@_);
168 SL::DB::Order - Order Datenbank Objekt.
174 Returns one of the following string types:
182 =item sales_quotation
184 =item request_quotation
188 =head2 C<is_type TYPE>
190 Returns true if the order is of the given type.
192 =head2 C<convert_to_invoice %params>
194 Creates a new invoice with C<$self> as the basis by calling
195 L<SL::DB::Invoice::new_from>. That invoice is posted, and C<$self> is
196 linked to the new invoice via L<SL::DB::RecordLink>. C<$self>'s
197 C<closed> attribute is set to C<true>, and C<$self> is saved.
199 The arguments in C<%params> are passed to L<SL::DB::Invoice::post>.
201 Returns the new invoice instance on success and C<undef> on
202 failure. The whole process is run inside a transaction. On failure
203 nothing is created or changed in the database.
205 At the moment only sales quotations and sales orders can be converted.
207 =head2 C<create_sales_process>
209 Creates and saves a new sales process. Can only be called for sales
212 The newly created process will be linked bidirectionally to both
213 C<$self> and to all sales quotations that are linked to C<$self>.
215 Returns the newly created process instance.
223 Sven Schöling <s.schoeling@linet-services.de>