Merge branch 'bankerweiterung_und_skonto'
[kivitendo-erp.git] / SL / DB / Order.pm
1 package SL::DB::Order;
2
3 use utf8;
4 use strict;
5
6 use Carp;
7 use DateTime;
8 use List::Util qw(max);
9
10 use SL::DB::MetaSetup::Order;
11 use SL::DB::Manager::Order;
12 use SL::DB::Helper::AttrHTML;
13 use SL::DB::Helper::AttrSorted;
14 use SL::DB::Helper::FlattenToForm;
15 use SL::DB::Helper::LinkedRecords;
16 use SL::DB::Helper::PriceTaxCalculator;
17 use SL::DB::Helper::PriceUpdater;
18 use SL::DB::Helper::TransNumberGenerator;
19 use SL::RecordLinks;
20 use Rose::DB::Object::Helpers qw(as_tree);
21
22 __PACKAGE__->meta->add_relationship(
23   orderitems => {
24     type         => 'one to many',
25     class        => 'SL::DB::OrderItem',
26     column_map   => { id => 'trans_id' },
27     manager_args => {
28       with_objects => [ 'part' ]
29     }
30   },
31   periodic_invoices_config => {
32     type                   => 'one to one',
33     class                  => 'SL::DB::PeriodicInvoicesConfig',
34     column_map             => { id => 'oe_id' },
35   },
36   custom_shipto            => {
37     type                   => 'one to one',
38     class                  => 'SL::DB::Shipto',
39     column_map             => { id => 'trans_id' },
40     query_args             => [ module => 'OE' ],
41   },
42 );
43
44 __PACKAGE__->meta->initialize;
45
46 __PACKAGE__->attr_html('notes');
47 __PACKAGE__->attr_sorted('items');
48
49 __PACKAGE__->before_save('_before_save_set_ord_quo_number');
50
51 # hooks
52
53 sub _before_save_set_ord_quo_number {
54   my ($self) = @_;
55
56   # ordnumber is 'NOT NULL'. Therefore make sure it's always set to at
57   # least an empty string, even if we're saving a quotation.
58   $self->ordnumber('') if !$self->ordnumber;
59
60   my $field = $self->quotation ? 'quonumber' : 'ordnumber';
61   $self->create_trans_number if !$self->$field;
62
63   return 1;
64 }
65
66 # methods
67
68 sub items { goto &orderitems; }
69 sub add_items { goto &add_orderitems; }
70
71 sub type {
72   my $self = shift;
73
74   return 'sales_order'       if $self->customer_id && ! $self->quotation;
75   return 'purchase_order'    if $self->vendor_id   && ! $self->quotation;
76   return 'sales_quotation'   if $self->customer_id &&   $self->quotation;
77   return 'request_quotation' if $self->vendor_id   &&   $self->quotation;
78
79   return;
80 }
81
82 sub is_type {
83   return shift->type eq shift;
84 }
85
86 sub displayable_type {
87   my $type = shift->type;
88
89   return $::locale->text('Sales quotation')   if $type eq 'sales_quotation';
90   return $::locale->text('Request quotation') if $type eq 'request_quotation';
91   return $::locale->text('Sales Order')       if $type eq 'sales_order';
92   return $::locale->text('Purchase Order')    if $type eq 'purchase_order';
93
94   die 'invalid type';
95 }
96
97
98 sub is_sales {
99   croak 'not an accessor' if @_ > 1;
100   return !!shift->customer_id;
101 }
102
103 sub invoices {
104   my $self   = shift;
105   my %params = @_;
106
107   if ($self->quotation) {
108     return [];
109   } else {
110     require SL::DB::Invoice;
111     return SL::DB::Manager::Invoice->get_all(
112       query => [
113         ordnumber => $self->ordnumber,
114         @{ $params{query} || [] },
115       ]
116     );
117   }
118 }
119
120 sub displayable_state {
121   my ($self) = @_;
122
123   return $self->closed ? $::locale->text('closed') : $::locale->text('open');
124 }
125
126 sub abschlag_invoices {
127   return shift()->invoices(query => [ abschlag => 1 ]);
128 }
129
130 sub end_invoice {
131   return shift()->invoices(query => [ abschlag => 0 ]);
132 }
133
134 sub convert_to_invoice {
135   my ($self, %params) = @_;
136
137   croak("Conversion to invoices is only supported for sales records") unless $self->customer_id;
138
139   my $invoice;
140   if (!$self->db->with_transaction(sub {
141     require SL::DB::Invoice;
142     $invoice = SL::DB::Invoice->new_from($self)->post(%params) || die;
143     $self->link_to_record($invoice);
144     $self->update_attributes(closed => 1);
145     1;
146   })) {
147     return undef;
148   }
149
150   return $invoice;
151 }
152
153 sub convert_to_delivery_order {
154   my ($self, @args) = @_;
155
156   my ($delivery_order, $custom_shipto);
157   if (!$self->db->with_transaction(sub {
158     require SL::DB::DeliveryOrder;
159     ($delivery_order, $custom_shipto) = SL::DB::DeliveryOrder->new_from($self, @args);
160     $delivery_order->save;
161     $custom_shipto->save if $custom_shipto;
162     $self->link_to_record($delivery_order);
163     $self->update_attributes(delivered => 1);
164     1;
165   })) {
166     return wantarray ? () : undef;
167   }
168
169   return wantarray ? ($delivery_order, $custom_shipto) : $delivery_order;
170 }
171
172 sub number {
173   my $self = shift;
174
175   my %number_method = (
176     sales_order       => 'ordnumber',
177     sales_quotation   => 'quonumber',
178     purchase_order    => 'ordnumber',
179     request_quotation => 'quonumber',
180   );
181
182   return $self->${ \ $number_method{$self->type} }(@_);
183 }
184
185 sub customervendor {
186   $_[0]->is_sales ? $_[0]->customer : $_[0]->vendor;
187 }
188
189 sub date {
190   goto &transdate;
191 }
192
193 1;
194
195 __END__
196
197 =head1 NAME
198
199 SL::DB::Order - Order Datenbank Objekt.
200
201 =head1 FUNCTIONS
202
203 =head2 C<type>
204
205 Returns one of the following string types:
206
207 =over 4
208
209 =item sales_order
210
211 =item purchase_order
212
213 =item sales_quotation
214
215 =item request_quotation
216
217 =back
218
219 =head2 C<is_type TYPE>
220
221 Returns true if the order is of the given type.
222
223 =head2 C<convert_to_delivery_order %params>
224
225 Creates a new delivery order with C<$self> as the basis by calling
226 L<SL::DB::DeliveryOrder::new_from>. That delivery order is saved, and
227 C<$self> is linked to the new invoice via
228 L<SL::DB::RecordLink>. C<$self>'s C<delivered> attribute is set to
229 C<true>, and C<$self> is saved.
230
231 The arguments in C<%params> are passed to
232 L<SL::DB::DeliveryOrder::new_from>.
233
234 Returns C<undef> on failure. Otherwise the return value depends on the
235 context. In list context the new delivery order and a shipto instance
236 will be returned. In scalar instance only the delivery order instance
237 is returned.
238
239 Custom shipto addresses (the ones specific to the sales/purchase
240 record and not to the customer/vendor) are only linked from C<shipto>
241 to C<delivery_orders>. Meaning C<delivery_orders.shipto_id> will not
242 be filled in that case. That's why a separate shipto object is created
243 and returned.
244
245 =head2 C<convert_to_invoice %params>
246
247 Creates a new invoice with C<$self> as the basis by calling
248 L<SL::DB::Invoice::new_from>. That invoice is posted, and C<$self> is
249 linked to the new invoice via L<SL::DB::RecordLink>. C<$self>'s
250 C<closed> attribute is set to C<true>, and C<$self> is saved.
251
252 The arguments in C<%params> are passed to L<SL::DB::Invoice::post>.
253
254 Returns the new invoice instance on success and C<undef> on
255 failure. The whole process is run inside a transaction. On failure
256 nothing is created or changed in the database.
257
258 At the moment only sales quotations and sales orders can be converted.
259
260 =head2 C<create_sales_process>
261
262 Creates and saves a new sales process. Can only be called for sales
263 orders.
264
265 The newly created process will be linked bidirectionally to both
266 C<$self> and to all sales quotations that are linked to C<$self>.
267
268 Returns the newly created process instance.
269
270 =head1 BUGS
271
272 Nothing here yet.
273
274 =head1 AUTHOR
275
276 Sven Schöling <s.schoeling@linet-services.de>
277
278 =cut