Gewicht im Verkaufsbericht
[kivitendo-erp.git] / SL / VK.pm
1 #=====================================================================
2 # LX-Office ERP
3 # Copyright (C) 2004
4 # Based on SQL-Ledger Version 2.1.9
5 # Web http://www.lx-office.org
6 #
7 #=====================================================================
8 # SQL-Ledger Accounting
9 # Copyright (C) 2001
10 #
11 #  Author: Dieter Simader
12 #   Email: dsimader@sql-ledger.org
13 #     Web: http://www.sql-ledger.org
14 #
15 #  Contributors:
16 #
17 # This program is free software; you can redistribute it and/or modify
18 # it under the terms of the GNU General Public License as published by
19 # the Free Software Foundation; either version 2 of the License, or
20 # (at your option) any later version.
21 #
22 # This program is distributed in the hope that it will be useful,
23 # but WITHOUT ANY WARRANTY; without even the implied warranty of
24 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
25 # GNU General Public License for more details.
26 # You should have received a copy of the GNU General Public License
27 # along with this program; if not, write to the Free Software
28 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
29 #======================================================================
30 #
31 # Sold Items report
32 #
33 #======================================================================
34
35 package VK;
36
37 use SL::DBUtils;
38 use SL::IO;
39 use SL::MoreCommon;
40
41 use strict;
42
43 sub invoice_transactions {
44   $main::lxdebug->enter_sub();
45
46   my ($self, $myconfig, $form) = @_;
47
48   # connect to database
49   my $dbh = $form->get_standard_dbh($myconfig);
50
51   my @values;
52
53   my $query =
54     qq|SELECT ct.id as customerid, ct.name as customername,ct.customernumber,ct.country,ar.invnumber,ar.id,ar.transdate,p.partnumber,pg.partsgroup,i.parts_id,i.qty,i.price_factor,i.discount,i.description as description,i.lastcost,i.sellprice,i.fxsellprice,i.marge_total,i.marge_percent,i.unit,b.description as business,e.name as employee,e2.name as salesman, to_char(ar.transdate,'Month') as month, to_char(ar.transdate, 'YYYYMM') as nummonth, p.unit as parts_unit, p.weight | .
55     qq|FROM invoice i | .  
56     qq|JOIN ar on (i.trans_id = ar.id) | .
57     qq|JOIN parts p on (i.parts_id = p.id) | .
58     qq|LEFT JOIN partsgroup pg on (p.partsgroup_id = pg.id) | .
59     qq|LEFT JOIN customer ct on (ct.id = ar.customer_id) | .
60     qq|LEFT JOIN business b on (ct.business_id = b.id) | .
61     qq|LEFT JOIN employee e ON (ar.employee_id = e.id) | .
62     qq|LEFT JOIN employee e2 ON (ar.salesman_id = e2.id) |;
63
64   my $where = "1 = 1";
65
66   # if employee can only see his own invoices, make sure this also holds for sales report
67   # limits by employees (Bearbeiter), not salesmen!
68   if (!$main::auth->assert('sales_all_edit', 1)) {
69     $where .= " AND ar.employee_id = (select id from employee where login= ?)";
70     push (@values, $form->{login});
71   }
72
73   # Stornierte Rechnungen und Stornorechnungen in invoice rausfiltern
74   # was ist mit Gutschriften?
75   $where .= " AND ar.storno is not true ";
76
77   # Bestandteile von Erzeugnissen herausfiltern
78   $where .= " AND i.assemblyitem is not true ";
79
80   # filter allowed parameters for mainsort and subsort as passed by POST
81   my @databasefields = qw(description customername country partsgroup business salesman month);
82   my ($mainsort) = grep { /^$form->{mainsort}$/ } @databasefields;
83   my ($subsort) = grep { /^$form->{subsort}$/ } @databasefields;
84   die "illegal parameter for mainsort or subsort" unless $mainsort and $subsort;
85
86   my $sortorder;
87   # sorting by month is a special case, we don't want to sort alphabetically by
88   # month name, so we also extract a numerical month in the from YYYYMM to sort
89   # by in case of month sorting
90   # Sorting by month, using description as an example:
91   # Sorting with month as mainsort: ORDER BY nummonth,description,ar.transdate,ar.invnumber
92   # Sorting with month as subsort:  ORDER BY description,nummonth,ar.transdate,ar.invnumber
93   if ($form->{mainsort} eq 'month') {
94     $sortorder .= "nummonth,"
95   } else {
96     $sortorder .= $mainsort . ",";
97   };
98   if ($form->{subsort} eq 'month') {
99     $sortorder .= "nummonth,"
100   } else {
101     $sortorder .= $subsort . ",";
102   };
103   $sortorder .= 'ar.transdate,ar.invnumber';  # Default sorting order after mainsort und subsort
104
105   if ($form->{customer_id}) {
106     $where .= " AND ar.customer_id = ?";
107     push(@values, $form->{customer_id});
108   };
109   if ($form->{customernumber}) {
110     $where .= qq| AND ct.customernumber = ? |;
111     push(@values, $form->{customernumber});
112   }
113   if ($form->{partnumber}) {
114     $where .= qq| AND (p.partnumber ILIKE ?)|;
115     push(@values, '%' . $form->{partnumber} . '%');
116   }
117   if ($form->{partsgroup_id}) {
118     $where .= qq| AND (pg.id = ?)|;
119     push(@values, $form->{partsgroup_id});
120   }
121   if ($form->{country}) {
122     $where .= qq| AND (ct.country ILIKE ?)|;
123     push(@values, '%' . $form->{country} . '%');
124   }
125   # nimmt man description am Besten aus invoice oder parts?
126   if ($form->{description}) {
127     $where .= qq| AND (i.description ILIKE ?)|;
128     push(@values, '%' . $form->{description} . '%');
129   }
130   if ($form->{transdatefrom}) {
131     $where .= " AND ar.transdate >= ?";
132     push(@values, $form->{transdatefrom});
133   }
134   if ($form->{transdateto}) {
135     $where .= " AND ar.transdate <= ?";
136     push(@values, $form->{transdateto});
137   }
138   if ($form->{department}) {
139     my ($null, $department_id) = split /--/, $form->{department};
140     $where .= " AND ar.department_id = ?";
141     push(@values, $department_id);
142   }
143   if ($form->{employee_id}) {
144     $where .= " AND ar.employee_id = ?";
145     push @values, conv_i($form->{employee_id});
146   }
147
148   if ($form->{salesman_id}) {
149     $where .= " AND ar.salesman_id = ?";
150     push @values, conv_i($form->{salesman_id});
151   }
152   if ($form->{project_id}) {
153     $where .=
154       qq|AND ((ar.globalproject_id = ?) OR EXISTS | .
155       qq|  (SELECT * FROM invoice i | .
156       qq|   WHERE i.project_id = ? AND i.trans_id = ar.id))|;
157     push(@values, $form->{"project_id"}, $form->{"project_id"});
158   }
159   if ($form->{business_id}) {
160     $where .= qq| AND ct.business_id = ? |; 
161     push(@values, $form->{"business_id"});
162   }
163
164   my ($cvar_where_ct, @cvar_values_ct) = CVar->build_filter_query('module'    => 'CT',
165                                                                   'trans_id_field' => 'ct.id',
166                                                                   'filter'         => $form);
167
168   if ($cvar_where_ct) {
169     $where .= qq| AND ($cvar_where_ct)|;
170     push @values, @cvar_values_ct;
171   }
172
173
174   my ($cvar_where_ic, @cvar_values_ic) = CVar->build_filter_query('module'         => 'IC',
175                                                                   'trans_id_field' => 'p.id',
176                                                                   'filter'         => $form);
177
178   if ($cvar_where_ic) {
179     $where .= qq| AND ($cvar_where_ic)|;
180     push @values, @cvar_values_ic;
181   }
182   
183   $query .= " WHERE $where ORDER BY $sortorder "; # LIMIT 5000";
184
185   my @result = selectall_hashref_query($form, $dbh, $query, @values);
186
187   $form->{AR} = [ @result ];
188
189   $main::lxdebug->leave_sub();
190 }
191
192 1;
193