Merge von 737 aus unstable: Bugfix 125
[kivitendo-erp.git] / SL / GL.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 # General ledger backend code
32 #
33 # CHANGE LOG:
34 #   DS. 2000-07-04  Created
35 #   DS. 2001-06-12  Changed relations from accno to chart_id
36 #
37 #======================================================================
38
39 package GL;
40
41 sub delete_transaction {
42   my ($self, $myconfig, $form) = @_;
43   $main::lxdebug->enter_sub();
44
45   # connect to database
46   my $dbh = $form->dbconnect_noauto($myconfig);
47
48   my $query = qq|DELETE FROM gl WHERE id = $form->{id}|;
49   $dbh->do($query) || $form->dberror($query);
50
51   $query = qq|DELETE FROM acc_trans WHERE trans_id = $form->{id}|;
52   $dbh->do($query) || $form->dberror($query);
53
54   # commit and redirect
55   my $rc = $dbh->commit;
56   $dbh->disconnect;
57   $main::lxdebug->leave_sub();
58
59   $rc;
60
61 }
62
63 sub post_transaction {
64   my ($self, $myconfig, $form) = @_;
65   $main::lxdebug->enter_sub();
66
67   my ($debit, $credit) = (0, 0);
68   my $project_id;
69
70   my $i;
71
72   # check if debit and credit balances
73
74   if ($form->{storno}) {
75     $debit               = $debit * -1;
76     $credit              = $credit * -1;
77     $tax                 = $tax * -1;
78     $form->{reference}   = "Storno-" . $form->{reference};
79     $form->{description} = "Storno-" . $form->{description};
80   }
81
82   # connect to database, turn off AutoCommit
83   my $dbh = $form->dbconnect_noauto($myconfig);
84
85   # post the transaction
86   # make up a unique handle and store in reference field
87   # then retrieve the record based on the unique handle to get the id
88   # replace the reference field with the actual variable
89   # add records to acc_trans
90
91   # if there is a $form->{id} replace the old transaction
92   # delete all acc_trans entries and add the new ones
93
94   # escape '
95   map { $form->{$_} =~ s/\'/\'\'/g } qw(reference description notes);
96
97   if (!$form->{taxincluded}) {
98     $form->{taxincluded} = 0;
99   }
100
101   my ($query, $sth);
102
103   if ($form->{id}) {
104
105     # delete individual transactions
106     $query = qq|DELETE FROM acc_trans 
107                 WHERE trans_id = $form->{id}|;
108     $dbh->do($query) || $form->dberror($query);
109
110   } else {
111     my $uid = time;
112     $uid .= $form->{login};
113
114     $query = qq|INSERT INTO gl (reference, employee_id)
115                 VALUES ('$uid', (SELECT e.id FROM employee e
116                                  WHERE e.login = '$form->{login}'))|;
117     $dbh->do($query) || $form->dberror($query);
118
119     $query = qq|SELECT g.id FROM gl g
120                 WHERE g.reference = '$uid'|;
121     $sth = $dbh->prepare($query);
122     $sth->execute || $form->dberror($query);
123
124     ($form->{id}) = $sth->fetchrow_array;
125     $sth->finish;
126
127   }
128
129   my ($null, $department_id) = split /--/, $form->{department};
130   $department_id *= 1;
131
132   $query = qq|UPDATE gl SET 
133               reference = '$form->{reference}',
134               description = '$form->{description}',
135               notes = '$form->{notes}',
136               transdate = '$form->{transdate}',
137               department_id = $department_id,
138               taxincluded = '$form->{taxincluded}'
139               WHERE id = $form->{id}|;
140
141   $dbh->do($query) || $form->dberror($query);
142   ($taxkey, $rate) = split(/--/, $form->{taxkey});
143
144   # insert acc_trans transactions
145   for $i (1 .. $form->{rowcount}) {
146
147     # extract accno
148     my ($accno) = split(/--/, $form->{"accno_$i"});
149     my ($taxkey, $rate) = split(/--/, $form->{"taxchart_$i"});
150     my $amount = 0;
151     my $debit  = $form->{"debit_$i"};
152     my $credit = $form->{"credit_$i"};
153     my $tax    = $form->{"tax_$i"};
154
155     if ($credit) {
156       $amount = $credit;
157       $posted = 0;
158     }
159     if ($debit) {
160       $amount = $debit * -1;
161       $tax    = $tax * -1;
162       $posted = 0;
163     }
164
165     # if there is an amount, add the record
166     if ($amount != 0) {
167       $project_id =
168         ($form->{"project_id_$i"}) ? $form->{"project_id_$i"} : 'NULL';
169       $query = qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate,
170                   source, memo, project_id, taxkey)
171                   VALUES
172                   ($form->{id}, (SELECT c.id
173                                  FROM chart c
174                                  WHERE c.accno = '$accno'),
175                    $amount, '$form->{transdate}', |
176         . $dbh->quote($form->{"source_$i"}) . qq|, |
177         . $dbh->quote($form->{"memo_$i"}) . qq|,
178                   $project_id, $taxkey)|;
179
180       $dbh->do($query) || $form->dberror($query);
181     }
182
183     if ($tax != 0) {
184
185       # add taxentry
186       $amount = $tax;
187
188       $project_id =
189         ($form->{"project_id_$i"}) ? $form->{"project_id_$i"} : 'NULL';
190       $query = qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate,
191                   source, memo, project_id, taxkey)
192                   VALUES
193                   ($form->{id}, (SELECT t.chart_id
194                   FROM tax t
195                   WHERE t.taxkey = $taxkey),
196                   $amount, '$form->{transdate}', |
197         . $dbh->quote($form->{"source_$i"}) . qq|, |
198         . $dbh->quote($form->{"memo_$i"}) . qq|,
199                           $project_id, $taxkey)|;
200
201       $dbh->do($query) || $form->dberror($query);
202     }
203   }
204
205   my %audittrail = (tablename => 'gl',
206                     reference => $form->{reference},
207                     formname  => 'transaction',
208                     action    => 'posted',
209                     id        => $form->{id});
210
211   # $form->audittrail($dbh, "", \%audittrail);
212
213   # commit and redirect
214   my $rc = $dbh->commit;
215   $dbh->disconnect;
216   $main::lxdebug->leave_sub();
217
218   $rc;
219
220 }
221
222 sub all_transactions {
223   my ($self, $myconfig, $form) = @_;
224   $main::lxdebug->enter_sub();
225
226   # connect to database
227   my $dbh = $form->dbconnect($myconfig);
228   my ($query, $sth, $source, $null);
229
230   my ($glwhere, $arwhere, $apwhere) = ("1 = 1", "1 = 1", "1 = 1");
231
232   if ($form->{reference}) {
233     $source = $form->like(lc $form->{reference});
234     $glwhere .= " AND lower(g.reference) LIKE '$source'";
235     $arwhere .= " AND lower(a.invnumber) LIKE '$source'";
236     $apwhere .= " AND lower(a.invnumber) LIKE '$source'";
237   }
238   if ($form->{department}) {
239     ($null, $source) = split /--/, $form->{department};
240     $glwhere .= " AND g.department_id = $source";
241     $arwhere .= " AND a.department_id = $source";
242     $apwhere .= " AND a.department_id = $source";
243   }
244
245   if ($form->{source}) {
246     $source = $form->like(lc $form->{source});
247     $glwhere .= " AND lower(ac.source) LIKE '$source'";
248     $arwhere .= " AND lower(ac.source) LIKE '$source'";
249     $apwhere .= " AND lower(ac.source) LIKE '$source'";
250   }
251   if ($form->{datefrom}) {
252     $glwhere .= " AND ac.transdate >= '$form->{datefrom}'";
253     $arwhere .= " AND ac.transdate >= '$form->{datefrom}'";
254     $apwhere .= " AND ac.transdate >= '$form->{datefrom}'";
255   }
256   if ($form->{dateto}) {
257     $glwhere .= " AND ac.transdate <= '$form->{dateto}'";
258     $arwhere .= " AND ac.transdate <= '$form->{dateto}'";
259     $apwhere .= " AND ac.transdate <= '$form->{dateto}'";
260   }
261   if ($form->{description}) {
262     my $description = $form->like(lc $form->{description});
263     $glwhere .= " AND lower(g.description) LIKE '$description'";
264     $arwhere .= " AND lower(ct.name) LIKE '$description'";
265     $apwhere .= " AND lower(ct.name) LIKE '$description'";
266   }
267   if ($form->{notes}) {
268     my $notes = $form->like(lc $form->{notes});
269     $glwhere .= " AND lower(g.notes) LIKE '$notes'";
270     $arwhere .= " AND lower(a.notes) LIKE '$notes'";
271     $apwhere .= " AND lower(a.notes) LIKE '$notes'";
272   }
273   if ($form->{accno}) {
274     $glwhere .= " AND c.accno = '$form->{accno}'";
275     $arwhere .= " AND c.accno = '$form->{accno}'";
276     $apwhere .= " AND c.accno = '$form->{accno}'";
277   }
278   if ($form->{gifi_accno}) {
279     $glwhere .= " AND c.gifi_accno = '$form->{gifi_accno}'";
280     $arwhere .= " AND c.gifi_accno = '$form->{gifi_accno}'";
281     $apwhere .= " AND c.gifi_accno = '$form->{gifi_accno}'";
282   }
283   if ($form->{category} ne 'X') {
284     $glwhere .= " AND gl.id in (SELECT trans_id FROM acc_trans ac2 WHERE ac2.chart_id IN (SELECT id FROM chart c2 WHERE c2.category = '$form->{category}'))";
285     $arwhere .= " AND ar.id in (SELECT trans_id FROM acc_trans ac2 WHERE ac2.chart_id IN (SELECT id FROM chart c2 WHERE c2.category = '$form->{category}'))";
286     $apwhere .= " AND ap.id in (SELECT trans_id FROM acc_trans ac2 WHERE ac2.chart_id IN (SELECT id FROM chart c2 WHERE c2.category = '$form->{category}'))";
287   }
288
289   if ($form->{accno}) {
290
291     # get category for account
292     $query = qq|SELECT c.category
293                 FROM chart c
294                 WHERE c.accno = '$form->{accno}'|;
295     $sth = $dbh->prepare($query);
296
297     $sth->execute || $form->dberror($query);
298     ($form->{ml}) = $sth->fetchrow_array;
299     $sth->finish;
300
301     if ($form->{datefrom}) {
302       $query = qq|SELECT SUM(ac.amount)
303                   FROM acc_trans ac, chart c
304                   WHERE ac.chart_id = c.id
305                   AND c.accno = '$form->{accno}'
306                   AND ac.transdate < date '$form->{datefrom}'
307                   |;
308       $sth = $dbh->prepare($query);
309       $sth->execute || $form->dberror($query);
310
311       ($form->{balance}) = $sth->fetchrow_array;
312       $sth->finish;
313     }
314   }
315
316   if ($form->{gifi_accno}) {
317
318     # get category for account
319     $query = qq|SELECT c.category
320                 FROM chart c
321                 WHERE c.gifi_accno = '$form->{gifi_accno}'|;
322     $sth = $dbh->prepare($query);
323
324     $sth->execute || $form->dberror($query);
325     ($form->{ml}) = $sth->fetchrow_array;
326     $sth->finish;
327
328     if ($form->{datefrom}) {
329       $query = qq|SELECT SUM(ac.amount)
330                   FROM acc_trans ac, chart c
331                   WHERE ac.chart_id = c.id
332                   AND c.gifi_accno = '$form->{gifi_accno}'
333                   AND ac.transdate < date '$form->{datefrom}'
334                   |;
335       $sth = $dbh->prepare($query);
336       $sth->execute || $form->dberror($query);
337
338       ($form->{balance}) = $sth->fetchrow_array;
339       $sth->finish;
340     }
341   }
342
343   my $false = ($myconfig->{dbdriver} eq 'Pg') ? FALSE: q|'0'|;
344
345      my $sortorder = join ', ', $form->sort_columns(qw(transdate reference source description accno));
346      my %ordinal = ( transdate => 6,
347                      reference => 4,
348                      source => 7,
349                   description => 5 );
350      map { $sortorder =~ s/$_/$ordinal{$_}/ } keys %ordinal;
351    
352      if ($form->{sort}) {
353          $sortorder = $form->{sort} . ',' . $sortorder;
354      }
355   
356   my $query =
357     qq|SELECT g.id, 'gl' AS type, $false AS invoice, g.reference, ac.taxkey, t.taxkey AS sorttax,
358                  g.description, ac.transdate, ac.source, ac.trans_id,
359                  ac.amount, c.accno, c.gifi_accno, g.notes, t.chart_id, ac.oid
360                  FROM gl g, acc_trans ac, chart c LEFT JOIN tax t ON
361                  (t.chart_id=c.id)
362                  WHERE $glwhere
363                  AND ac.chart_id = c.id
364                  AND g.id = ac.trans_id
365         UNION
366                  SELECT a.id, 'ar' AS type, a.invoice, a.invnumber, ac.taxkey, t.taxkey AS sorttax,
367                  ct.name, ac.transdate, ac.source, ac.trans_id,
368                  ac.amount, c.accno, c.gifi_accno, a.notes, t.chart_id, ac.oid
369                  FROM ar a, acc_trans ac, customer ct, chart c LEFT JOIN tax t ON
370                  (t.chart_id=c.id)
371                  WHERE $arwhere
372                  AND ac.chart_id = c.id
373                  AND a.customer_id = ct.id
374                  AND a.id = ac.trans_id
375         UNION
376                  SELECT a.id, 'ap' AS type, a.invoice, a.invnumber, ac.taxkey, t.taxkey AS sorttax,
377                  ct.name, ac.transdate, ac.source, ac.trans_id,
378                  ac.amount, c.accno, c.gifi_accno, a.notes, t.chart_id, ac.oid
379                  FROM ap a, acc_trans ac, vendor ct, chart c LEFT JOIN tax t ON
380                  (t.chart_id=c.id)
381                  WHERE $apwhere
382                  AND ac.chart_id = c.id
383                  AND a.vendor_id = ct.id
384                  AND a.id = ac.trans_id
385                  ORDER BY $sortorder, oid|;
386   my $sth = $dbh->prepare($query);
387   $sth->execute || $form->dberror($query);
388   my $trans_id = "";
389   my $trans_id2 = "";
390   while (my $ref0 = $sth->fetchrow_hashref(NAME_lc)) {
391     $trans_id = $ref0->{id};
392     if ($trans_id != $trans_id2) {
393       if ($trans_id2) {
394         push @{ $form->{GL} }, $ref;
395         $balance = 0;
396       }
397       $ref = $ref0;
398       $trans_id2 = $ref->{id};
399       
400       # gl
401       if ($ref->{type} eq "gl") {
402         $ref->{module} = "gl";
403       }
404       # ap
405       if ($ref->{type} eq "ap") {
406         if ($ref->{invoice}) {
407           $ref->{module} = "ir";
408         } else {
409           $ref->{module} = "ap";
410         }
411       }
412   
413       # ar
414       if ($ref->{type} eq "ar") {
415         if ($ref->{invoice}) {
416           $ref->{module} = "is";
417         } else {
418           $ref->{module} = "ar";
419         }
420       }
421       $balance = $ref->{amount};
422       $i       = 0;
423       $j       = 0;
424       $k       = 0;
425       $l       = 0;
426       if ($ref->{amount} < 0) {
427         if ($ref->{chart_id} > 0) {
428           $ref->{debit_tax}{$i}       = $ref->{amount} * -1;
429           $ref->{debit_tax_accno}{$i} = $ref->{accno};
430         } else {
431           $ref->{debit}{$k}        = $ref->{amount} * -1;
432           $ref->{debit_accno}{$k}  = $ref->{accno};
433           $ref->{debit_taxkey}{$k} = $ref->{taxkey};
434         }
435       } else {
436         if ($ref->{chart_id} > 0) {
437           $ref->{credit_tax}{$j}       = $ref->{amount};
438           $ref->{credit_tax_accno}{$j} = $ref->{accno};
439         } else {
440           $ref->{credit}{$l}        = $ref->{amount};
441           $ref->{credit_accno}{$l}  = $ref->{accno};
442           $ref->{credit_taxkey}{$l} = $ref->{taxkey};
443         }
444       }
445     } else {
446       $ref2 = $ref0;
447       $trans_id2 = $ref2->{id};
448 #      if ($form->{accno} eq ''){ # flo & udo: if general report,
449                                   # then check balance
450 #         while (abs($balance) >= 0.015) {
451 #           my $ref2 = $sth->fetchrow_hashref(NAME_lc)
452 #             || $form->error("Unbalanced ledger!");
453 #     
454           $balance =
455             (int($balance * 100000) + int(100000 * $ref2->{amount})) / 100000;
456           if ($ref2->{amount} < 0) {
457             if ($ref2->{chart_id} > 0) {
458               if ($ref->{debit_tax_accno}{$i} ne "") {
459                 $i++;
460               }
461               $ref->{debit_tax}{$i}       = $ref2->{amount} * -1;
462               $ref->{debit_tax_accno}{$i} = $ref2->{accno};
463             } else {
464               if ($ref->{debit_accno}{$k} ne "") {
465                 $k++;
466               }
467               $ref->{debit}{$k}        = $ref2->{amount} * -1;
468               $ref->{debit_accno}{$k}  = $ref2->{accno};
469               $ref->{debit_taxkey}{$k} = $ref2->{taxkey};
470             }
471           } else {
472             if ($ref2->{chart_id} > 0) {
473               if ($ref->{credit_tax_accno}{$j} ne "") {
474                 $j++;
475               }
476               $ref->{credit_tax}{$j}       = $ref2->{amount};
477               $ref->{credit_tax_accno}{$j} = $ref2->{accno};
478             } else {
479               if ($ref->{credit_accno}{$l} ne "") {
480                 $l++;
481               }
482               $ref->{credit}{$l}        = $ref2->{amount};
483               $ref->{credit_accno}{$l}  = $ref2->{accno};
484               $ref->{credit_taxkey}{$l} = $ref2->{taxkey};
485             }
486           }
487 #         }
488 #       } else {
489 #         # if account-report, then calculate the Balance?!
490 #         # ToDo: Calculate the Balance
491 #         1;
492 #       }
493     }
494        
495     #    print(STDERR Dumper($ref));
496
497   }
498   push @{ $form->{GL} }, $ref;
499   $sth->finish;
500
501   if ($form->{accno}) {
502     $query =
503       qq|SELECT c.description FROM chart c WHERE c.accno = '$form->{accno}'|;
504     $sth = $dbh->prepare($query);
505     $sth->execute || $form->dberror($query);
506
507     ($form->{account_description}) = $sth->fetchrow_array;
508     $sth->finish;
509   }
510   if ($form->{gifi_accno}) {
511     $query =
512       qq|SELECT g.description FROM gifi g WHERE g.accno = '$form->{gifi_accno}'|;
513     $sth = $dbh->prepare($query);
514     $sth->execute || $form->dberror($query);
515
516     ($form->{gifi_account_description}) = $sth->fetchrow_array;
517     $sth->finish;
518   }
519   $main::lxdebug->leave_sub();
520
521   $dbh->disconnect;
522
523 }
524
525 sub transaction {
526   my ($self, $myconfig, $form) = @_;
527   $main::lxdebug->enter_sub();
528
529   my ($query, $sth, $ref);
530
531   # connect to database
532   my $dbh = $form->dbconnect($myconfig);
533
534   if ($form->{id}) {
535     $query = "SELECT closedto, revtrans
536               FROM defaults";
537     $sth = $dbh->prepare($query);
538     $sth->execute || $form->dberror($query);
539
540     ($form->{closedto}, $form->{revtrans}) = $sth->fetchrow_array;
541     $sth->finish;
542
543     $query = "SELECT g.reference, g.description, g.notes, g.transdate,
544               d.description AS department, e.name as employee, g.taxincluded, g.gldate
545               FROM gl g
546             LEFT JOIN department d ON (d.id = g.department_id)  
547             LEFT JOIN employee e ON (e.id = g.employee_id)  
548             WHERE g.id = $form->{id}";
549     $sth = $dbh->prepare($query);
550     $sth->execute || $form->dberror($query);
551     $ref = $sth->fetchrow_hashref(NAME_lc);
552     map { $form->{$_} = $ref->{$_} } keys %$ref;
553     $sth->finish;
554
555     # retrieve individual rows
556     $query = "SELECT c.accno, c.taxkey_id AS accnotaxkey, a.amount, project_id,
557                 (SELECT p.projectnumber FROM project p
558                  WHERE a.project_id = p.id) AS projectnumber, a.taxkey, (SELECT c1.accno FROM chart c1, tax t WHERE t.taxkey=a.taxkey AND c1.id=t.chart_id) AS taxaccno, (SELECT t1.rate FROM tax t1 WHERE t1.taxkey=a.taxkey) AS taxrate 
559               FROM acc_trans a, chart c
560               WHERE a.chart_id = c.id
561               AND a.trans_id = $form->{id}
562               ORDER BY a.oid";
563     $sth = $dbh->prepare($query);
564     $sth->execute || $form->dberror($query);
565
566     while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
567       push @{ $form->{GL} }, $ref;
568     }
569
570     # get tax description
571     $query = qq| SELECT * FROM tax t order by t.taxkey|;
572     $sth   = $dbh->prepare($query);
573     $sth->execute || $form->dberror($query);
574     $form->{TAX} = ();
575     while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
576       push @{ $form->{TAX} }, $ref;
577     }
578
579     $sth->finish;
580   } else {
581     $query = "SELECT current_date AS transdate, closedto, revtrans
582               FROM defaults";
583     $sth = $dbh->prepare($query);
584     $sth->execute || $form->dberror($query);
585
586     ($form->{transdate}, $form->{closedto}, $form->{revtrans}) =
587       $sth->fetchrow_array;
588
589     # get tax description
590     $query = qq| SELECT * FROM tax t order by t.taxkey|;
591     $sth   = $dbh->prepare($query);
592     $sth->execute || $form->dberror($query);
593     $form->{TAX} = ();
594     while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
595       push @{ $form->{TAX} }, $ref;
596     }
597   }
598
599   $sth->finish;
600
601   # get chart of accounts
602   $query = qq|SELECT c.accno, c.description, c.taxkey_id
603               FROM chart c
604               WHERE c.charttype = 'A'
605               ORDER by c.accno|;
606   $sth = $dbh->prepare($query);
607   $sth->execute || $form->dberror($query);
608   $form->{chart} = ();
609   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
610     push @{ $form->{chart} }, $ref;
611   }
612   $sth->finish;
613
614   $sth->finish;
615   $main::lxdebug->leave_sub();
616
617   $dbh->disconnect;
618
619 }
620
621 1;
622