1 #=====================================================================
4 # Based on SQL-Ledger Version 2.1.9
5 # Web http://www.lx-office.org
7 #=====================================================================
8 # SQL-Ledger Accounting
11 # Author: Dieter Simader
12 # Email: dsimader@sql-ledger.org
13 # Web: http://www.sql-ledger.org
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.
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 #======================================================================
31 # Administration module
36 #======================================================================
44 $main::lxdebug->enter_sub();
46 my ($self, $myconfig, $form) = @_;
48 $form->{id} = "NULL" unless ($form->{id});
51 my $dbh = $form->dbconnect($myconfig);
52 my $query = qq§SELECT c.accno, c.description, c.charttype, c.gifi_accno,
53 c.category,c.link, tk.taxkey_id, tk.pos_ustva, tk.tax_id,tk.tax_id||'--'||tk.taxkey_id AS tax, tk.startdate, c.pos_bilanz, c.pos_eur, c.new_chart_id, c.valid_from, c.pos_bwa
54 FROM chart c LEFT JOIN taxkeys tk
55 ON (c.id=tk.chart_id AND tk.id = (SELECT id from taxkeys where taxkeys.chart_id =c.id AND startdate<=current_date ORDER BY startdate desc LIMIT 1))
56 WHERE c.id = $form->{id}§;
59 my $sth = $dbh->prepare($query);
60 $sth->execute || $form->dberror($query);
62 my $ref = $sth->fetchrow_hashref(NAME_lc);
64 foreach my $key (keys %$ref) {
65 $form->{"$key"} = $ref->{"$key"};
70 # get default accounts
71 $query = qq|SELECT inventory_accno_id, income_accno_id, expense_accno_id
73 $sth = $dbh->prepare($query);
74 $sth->execute || $form->dberror($query);
76 $ref = $sth->fetchrow_hashref(NAME_lc);
78 map { $form->{$_} = $ref->{$_} } keys %ref;
82 # get taxkeys and description
83 $query = qq§SELECT id, taxkey,id||'--'||taxkey AS tax, taxdescription
84 FROM tax ORDER BY taxkey§;
85 $sth = $dbh->prepare($query);
86 $sth->execute || $form->dberror($query);
90 while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
91 push @{ $form->{TAXKEY} }, $ref;
97 $where = " WHERE link='$form->{link}'";
101 $query = qq|SELECT id, accno,description
103 $sth = $dbh->prepare($query);
104 $sth->execute || $form->dberror($query);
106 while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
107 push @{ $form->{NEWACCOUNT} }, $ref;
112 # check if we have any transactions
113 $query = qq|SELECT a.trans_id FROM acc_trans a
114 WHERE a.chart_id = $form->{id}|;
115 $sth = $dbh->prepare($query);
116 $sth->execute || $form->dberror($query);
118 ($form->{orphaned}) = $sth->fetchrow_array;
119 $form->{orphaned} = !$form->{orphaned};
122 # check if new account is active
123 $form->{new_chart_valid} = 0;
124 if ($form->{new_chart_id}) {
125 $query = qq|SELECT current_date-valid_from FROM chart
126 WHERE id = $form->{id}|;
127 $sth = $dbh->prepare($query);
128 $sth->execute || $form->dberror($query);
130 my ($count) = $sth->fetchrow_array;
132 $form->{new_chart_valid} = 1;
139 $main::lxdebug->leave_sub();
143 $main::lxdebug->enter_sub();
145 my ($self, $myconfig, $form) = @_;
147 # connect to database, turn off AutoCommit
148 my $dbh = $form->dbconnect_noauto($myconfig);
150 # sanity check, can't have AR with AR_...
151 if ($form->{AR} || $form->{AP} || $form->{IC}) {
152 map { delete $form->{$_} }
153 qw(AR_amount AR_tax AR_paid AP_amount AP_tax AP_paid IC_sale IC_cogs IC_taxpart IC_income IC_expense IC_taxservice CT_tax);
157 foreach my $item ($form->{AR}, $form->{AR_amount},
158 $form->{AR_tax}, $form->{AR_paid},
159 $form->{AP}, $form->{AP_amount},
160 $form->{AP_tax}, $form->{AP_paid},
161 $form->{IC}, $form->{IC_sale},
162 $form->{IC_cogs}, $form->{IC_taxpart},
163 $form->{IC_income}, $form->{IC_expense},
164 $form->{IC_taxservice}, $form->{CT_tax}
166 $form->{link} .= "${item}:" if ($item);
170 # if we have an id then replace the old record
171 $form->{description} =~ s/\'/\'\'/g;
173 # strip blanks from accno
174 map { $form->{$_} =~ s/ //g; } qw(accno);
178 if ($form->{id} eq "NULL") {
182 map({ $form->{$_} = "NULL" unless ($form->{$_}); }
183 qw(pos_ustva pos_bwa pos_bilanz pos_eur new_chart_id));
184 my($tax_id, $taxkey) = split /--/, $form->{tax};
185 $form->{valid_from} = ($form->{valid_from}) ? "'$form->{valid_from}'" : "NULL";
186 my $startdate = ($form->{startdate}) ? "'$form->{startdate}'" : "'1970-01-01'";
187 if ($form->{id} && $form->{orphaned}) {
188 $query = qq|UPDATE chart SET
189 accno = '$form->{accno}',
190 description = '$form->{description}',
191 charttype = '$form->{charttype}',
192 gifi_accno = '$form->{gifi_accno}',
193 category = '$form->{category}',
194 link = '$form->{link}',
196 pos_ustva = $form->{pos_ustva},
197 pos_bwa = $form->{pos_bwa},
198 pos_bilanz = $form->{pos_bilanz},
199 pos_eur = $form->{pos_eur},
200 new_chart_id = $form->{new_chart_id},
201 valid_from = $form->{valid_from}
202 WHERE id = $form->{id}|;
203 } elsif ($form->{id} && !$form->{new_chart_valid}) {
204 $query = qq|UPDATE chart SET
205 new_chart_id = $form->{new_chart_id},
206 valid_from = $form->{valid_from}
207 WHERE id = $form->{id}|;
210 $query = qq|INSERT INTO chart
211 (accno, description, charttype, gifi_accno, category, link, taxkey_id, pos_ustva, pos_bwa, pos_bilanz,pos_eur, new_chart_id, valid_from)
212 VALUES ('$form->{accno}', '$form->{description}',
213 '$form->{charttype}', '$form->{gifi_accno}',
214 '$form->{category}', '$form->{link}', $taxkey, $form->{pos_ustva}, $form->{pos_bwa}, $form->{pos_bilanz}, $form->{pos_eur}, $form->{new_chart_id}, $form->{valid_from})|;
216 $dbh->do($query) || $form->dberror($query);
220 $query = qq|INSERT INTO taxkeys (chart_id,tax_id,taxkey_id, pos_ustva, startdate) VALUES ((SELECT id FROM chart where accno='$form->{accno}'), $tax_id, $taxkey,$form->{pos_ustva}, $startdate)|;
221 $dbh->do($query) || $form->dberror($query);
223 $query = qq|DELETE FROM taxkeys WHERE chart_id=$form->{id} AND tax_id=$tax_id|;
224 $dbh->do($query) || $form->dberror($query);
225 $query = qq|INSERT INTO taxkeys (chart_id,tax_id,taxkey_id, pos_ustva, startdate) VALUES ($form->{id}, $tax_id, $taxkey,$form->{pos_ustva}, $startdate)|;
226 $dbh->do($query) || $form->dberror($query);
229 # if ($form->{IC_taxpart} || $form->{IC_taxservice} || $form->{CT_tax}) {
231 # my $chart_id = $form->{id};
233 # unless ($form->{id}) {
235 # # get id from chart
236 # $query = qq|SELECT c.id
238 # WHERE c.accno = '$form->{accno}'|;
239 # $sth = $dbh->prepare($query);
240 # $sth->execute || $form->dberror($query);
242 # ($chart_id) = $sth->fetchrow_array;
246 # # add account if it doesn't exist in tax
247 # $query = qq|SELECT t.chart_id
249 # WHERE t.chart_id = $chart_id|;
250 # $sth = $dbh->prepare($query);
251 # $sth->execute || $form->dberror($query);
253 # my ($tax_id) = $sth->fetchrow_array;
256 # # add tax if it doesn't exist
258 # $query = qq|INSERT INTO tax (chart_id, rate)
259 # VALUES ($chart_id, 0)|;
260 # $dbh->do($query) || $form->dberror($query);
266 # $query = qq|DELETE FROM tax
267 # WHERE chart_id = $form->{id}|;
268 # $dbh->do($query) || $form->dberror($query);
273 my $rc = $dbh->commit;
276 $main::lxdebug->leave_sub();
282 $main::lxdebug->enter_sub();
284 my ($self, $myconfig, $form) = @_;
286 # connect to database, turn off AutoCommit
287 my $dbh = $form->dbconnect_noauto($myconfig);
289 my $query = qq|SELECT count(*) FROM acc_trans a
290 WHERE a.chart_id = $form->{id}|;
291 my $sth = $dbh->prepare($query);
292 $sth->execute || $form->dberror($query);
294 if ($sth->fetchrow_array) {
297 $main::lxdebug->leave_sub();
302 # delete chart of account record
303 $query = qq|DELETE FROM chart
304 WHERE id = $form->{id}|;
305 $dbh->do($query) || $form->dberror($query);
307 # set inventory_accno_id, income_accno_id, expense_accno_id to defaults
308 $query = qq|UPDATE parts
309 SET inventory_accno_id =
310 (SELECT inventory_accno_id FROM defaults)
311 WHERE inventory_accno_id = $form->{id}|;
312 $dbh->do($query) || $form->dberror($query);
314 $query = qq|UPDATE parts
315 SET income_accno_id =
316 (SELECT income_accno_id FROM defaults)
317 WHERE income_accno_id = $form->{id}|;
318 $dbh->do($query) || $form->dberror($query);
320 $query = qq|UPDATE parts
321 SET expense_accno_id =
322 (SELECT expense_accno_id FROM defaults)
323 WHERE expense_accno_id = $form->{id}|;
324 $dbh->do($query) || $form->dberror($query);
326 foreach my $table (qw(partstax customertax vendortax tax)) {
327 $query = qq|DELETE FROM $table
328 WHERE chart_id = $form->{id}|;
329 $dbh->do($query) || $form->dberror($query);
332 # commit and redirect
333 my $rc = $dbh->commit;
336 $main::lxdebug->leave_sub();
342 $main::lxdebug->enter_sub();
344 my ($self, $myconfig, $form) = @_;
346 # connect to database
347 my $dbh = $form->dbconnect($myconfig);
349 my $query = qq|SELECT accno, description
353 $sth = $dbh->prepare($query);
354 $sth->execute || $form->dberror($query);
356 while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
357 push @{ $form->{ALL} }, $ref;
363 $main::lxdebug->leave_sub();
367 $main::lxdebug->enter_sub();
369 my ($self, $myconfig, $form) = @_;
371 # connect to database
372 my $dbh = $form->dbconnect($myconfig);
374 my $query = qq|SELECT g.accno, g.description
376 WHERE g.accno = '$form->{accno}'|;
377 my $sth = $dbh->prepare($query);
378 $sth->execute || $form->dberror($query);
380 my $ref = $sth->fetchrow_hashref(NAME_lc);
382 map { $form->{$_} = $ref->{$_} } keys %$ref;
386 # check for transactions
387 $query = qq|SELECT count(*) FROM acc_trans a, chart c, gifi g
388 WHERE c.gifi_accno = g.accno
389 AND a.chart_id = c.id
390 AND g.accno = '$form->{accno}'|;
391 $sth = $dbh->prepare($query);
392 $sth->execute || $form->dberror($query);
394 ($form->{orphaned}) = $sth->fetchrow_array;
396 $form->{orphaned} = !$form->{orphaned};
400 $main::lxdebug->leave_sub();
404 $main::lxdebug->enter_sub();
406 my ($self, $myconfig, $form) = @_;
408 # connect to database
409 my $dbh = $form->dbconnect($myconfig);
411 $form->{description} =~ s/\'/\'\'/g;
413 # id is the old account number!
415 $query = qq|UPDATE gifi SET
416 accno = '$form->{accno}',
417 description = '$form->{description}'
418 WHERE accno = '$form->{id}'|;
420 $query = qq|INSERT INTO gifi
422 VALUES ('$form->{accno}', '$form->{description}')|;
424 $dbh->do($query) || $form->dberror($query);
428 $main::lxdebug->leave_sub();
432 $main::lxdebug->enter_sub();
434 my ($self, $myconfig, $form) = @_;
436 # connect to database
437 my $dbh = $form->dbconnect($myconfig);
439 # id is the old account number!
440 $query = qq|DELETE FROM gifi
441 WHERE accno = '$form->{id}'|;
442 $dbh->do($query) || $form->dberror($query);
446 $main::lxdebug->leave_sub();
450 $main::lxdebug->enter_sub();
452 my ($self, $myconfig, $form) = @_;
454 # connect to database
455 my $dbh = $form->dbconnect($myconfig);
457 my $query = qq|SELECT id, description
461 $sth = $dbh->prepare($query);
462 $sth->execute || $form->dberror($query);
464 while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
465 push @{ $form->{ALL} }, $ref;
471 $main::lxdebug->leave_sub();
475 $main::lxdebug->enter_sub();
477 my ($self, $myconfig, $form) = @_;
479 # connect to database
480 my $dbh = $form->dbconnect($myconfig);
482 my $query = qq|SELECT w.description
484 WHERE w.id = $form->{id}|;
485 my $sth = $dbh->prepare($query);
486 $sth->execute || $form->dberror($query);
488 my $ref = $sth->fetchrow_hashref(NAME_lc);
490 map { $form->{$_} = $ref->{$_} } keys %$ref;
494 # see if it is in use
495 $query = qq|SELECT count(*) FROM inventory i
496 WHERE i.warehouse_id = $form->{id}|;
497 $sth = $dbh->prepare($query);
498 $sth->execute || $form->dberror($query);
500 ($form->{orphaned}) = $sth->fetchrow_array;
501 $form->{orphaned} = !$form->{orphaned};
506 $main::lxdebug->leave_sub();
510 $main::lxdebug->enter_sub();
512 my ($self, $myconfig, $form) = @_;
514 # connect to database
515 my $dbh = $form->dbconnect($myconfig);
517 $form->{description} =~ s/\'/\'\'/g;
520 $query = qq|UPDATE warehouse SET
521 description = '$form->{description}'
522 WHERE id = $form->{id}|;
524 $query = qq|INSERT INTO warehouse
526 VALUES ('$form->{description}')|;
528 $dbh->do($query) || $form->dberror($query);
532 $main::lxdebug->leave_sub();
535 sub delete_warehouse {
536 $main::lxdebug->enter_sub();
538 my ($self, $myconfig, $form) = @_;
540 # connect to database
541 my $dbh = $form->dbconnect($myconfig);
543 $query = qq|DELETE FROM warehouse
544 WHERE id = $form->{id}|;
545 $dbh->do($query) || $form->dberror($query);
549 $main::lxdebug->leave_sub();
553 $main::lxdebug->enter_sub();
555 my ($self, $myconfig, $form) = @_;
557 # connect to database
558 my $dbh = $form->dbconnect($myconfig);
560 my $query = qq|SELECT d.id, d.description, d.role
564 $sth = $dbh->prepare($query);
565 $sth->execute || $form->dberror($query);
567 while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
568 push @{ $form->{ALL} }, $ref;
574 $main::lxdebug->leave_sub();
578 $main::lxdebug->enter_sub();
580 my ($self, $myconfig, $form) = @_;
582 # connect to database
583 my $dbh = $form->dbconnect($myconfig);
585 my $query = qq|SELECT d.description, d.role
587 WHERE d.id = $form->{id}|;
588 my $sth = $dbh->prepare($query);
589 $sth->execute || $form->dberror($query);
591 my $ref = $sth->fetchrow_hashref(NAME_lc);
593 map { $form->{$_} = $ref->{$_} } keys %$ref;
597 # see if it is in use
598 $query = qq|SELECT count(*) FROM dpt_trans d
599 WHERE d.department_id = $form->{id}|;
600 $sth = $dbh->prepare($query);
601 $sth->execute || $form->dberror($query);
603 ($form->{orphaned}) = $sth->fetchrow_array;
604 $form->{orphaned} = !$form->{orphaned};
609 $main::lxdebug->leave_sub();
612 sub save_department {
613 $main::lxdebug->enter_sub();
615 my ($self, $myconfig, $form) = @_;
617 # connect to database
618 my $dbh = $form->dbconnect($myconfig);
620 $form->{description} =~ s/\'/\'\'/g;
623 $query = qq|UPDATE department SET
624 description = '$form->{description}',
625 role = '$form->{role}'
626 WHERE id = $form->{id}|;
628 $query = qq|INSERT INTO department
630 VALUES ('$form->{description}', '$form->{role}')|;
632 $dbh->do($query) || $form->dberror($query);
636 $main::lxdebug->leave_sub();
639 sub delete_department {
640 $main::lxdebug->enter_sub();
642 my ($self, $myconfig, $form) = @_;
644 # connect to database
645 my $dbh = $form->dbconnect($myconfig);
647 $query = qq|DELETE FROM department
648 WHERE id = $form->{id}|;
649 $dbh->do($query) || $form->dberror($query);
653 $main::lxdebug->leave_sub();
657 $main::lxdebug->enter_sub();
659 my ($self, $myconfig, $form) = @_;
661 # connect to database
662 my $dbh = $form->dbconnect($myconfig);
664 my $query = qq|SELECT id, lead
668 $sth = $dbh->prepare($query);
669 $sth->execute || $form->dberror($query);
671 while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
672 push @{ $form->{ALL} }, $ref;
678 $main::lxdebug->leave_sub();
682 $main::lxdebug->enter_sub();
684 my ($self, $myconfig, $form) = @_;
686 # connect to database
687 my $dbh = $form->dbconnect($myconfig);
690 qq|SELECT l.id, l.lead
692 WHERE l.id = $form->{id}|;
693 my $sth = $dbh->prepare($query);
694 $sth->execute || $form->dberror($query);
696 my $ref = $sth->fetchrow_hashref(NAME_lc);
698 map { $form->{$_} = $ref->{$_} } keys %$ref;
704 $main::lxdebug->leave_sub();
708 $main::lxdebug->enter_sub();
710 my ($self, $myconfig, $form) = @_;
712 # connect to database
713 my $dbh = $form->dbconnect($myconfig);
715 $form->{lead} =~ s/\'/\'\'/g;
717 # id is the old record
719 $query = qq|UPDATE leads SET
720 lead = '$form->{description}'
721 WHERE id = $form->{id}|;
723 $query = qq|INSERT INTO leads
725 VALUES ('$form->{description}')|;
727 $dbh->do($query) || $form->dberror($query);
731 $main::lxdebug->leave_sub();
735 $main::lxdebug->enter_sub();
737 my ($self, $myconfig, $form) = @_;
739 # connect to database
740 my $dbh = $form->dbconnect($myconfig);
742 $query = qq|DELETE FROM leads
743 WHERE id = $form->{id}|;
744 $dbh->do($query) || $form->dberror($query);
748 $main::lxdebug->leave_sub();
752 $main::lxdebug->enter_sub();
754 my ($self, $myconfig, $form) = @_;
756 # connect to database
757 my $dbh = $form->dbconnect($myconfig);
759 my $query = qq|SELECT id, description, discount, customernumberinit, salesman
763 $sth = $dbh->prepare($query);
764 $sth->execute || $form->dberror($query);
766 while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
767 push @{ $form->{ALL} }, $ref;
773 $main::lxdebug->leave_sub();
777 $main::lxdebug->enter_sub();
779 my ($self, $myconfig, $form) = @_;
781 # connect to database
782 my $dbh = $form->dbconnect($myconfig);
785 qq|SELECT b.description, b.discount, b.customernumberinit, b.salesman
787 WHERE b.id = $form->{id}|;
788 my $sth = $dbh->prepare($query);
789 $sth->execute || $form->dberror($query);
791 my $ref = $sth->fetchrow_hashref(NAME_lc);
793 map { $form->{$_} = $ref->{$_} } keys %$ref;
799 $main::lxdebug->leave_sub();
803 $main::lxdebug->enter_sub();
805 my ($self, $myconfig, $form) = @_;
807 # connect to database
808 my $dbh = $form->dbconnect($myconfig);
810 $form->{description} =~ s/\'/\'\'/g;
811 $form->{discount} /= 100;
812 $form->{salesman} *= 1;
814 # id is the old record
816 $query = qq|UPDATE business SET
817 description = '$form->{description}',
818 discount = $form->{discount},
819 customernumberinit = '$form->{customernumberinit}',
820 salesman = '$form->{salesman}'
821 WHERE id = $form->{id}|;
823 $query = qq|INSERT INTO business
824 (description, discount, customernumberinit, salesman)
825 VALUES ('$form->{description}', $form->{discount}, '$form->{customernumberinit}', '$form->{salesman}')|;
827 $dbh->do($query) || $form->dberror($query);
831 $main::lxdebug->leave_sub();
834 sub delete_business {
835 $main::lxdebug->enter_sub();
837 my ($self, $myconfig, $form) = @_;
839 # connect to database
840 my $dbh = $form->dbconnect($myconfig);
842 $query = qq|DELETE FROM business
843 WHERE id = $form->{id}|;
844 $dbh->do($query) || $form->dberror($query);
848 $main::lxdebug->leave_sub();
853 $main::lxdebug->enter_sub();
855 my ($self, $myconfig, $form, $return_list) = @_;
857 # connect to database
858 my $dbh = $form->dbconnect($myconfig);
861 "SELECT id, description, template_code, article_code, " .
862 " output_numberformat, output_dateformat, output_longdates " .
863 "FROM language ORDER BY description";
865 $sth = $dbh->prepare($query);
866 $sth->execute || $form->dberror($query);
870 while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
871 push(@{ $ary }, $ref);
877 $main::lxdebug->leave_sub();
887 $main::lxdebug->enter_sub();
889 my ($self, $myconfig, $form) = @_;
891 # connect to database
892 my $dbh = $form->dbconnect($myconfig);
895 "SELECT description, template_code, article_code, " .
896 " output_numberformat, output_dateformat, output_longdates " .
897 "FROM language WHERE id = ?";
898 my $sth = $dbh->prepare($query);
899 $sth->execute($form->{"id"}) || $form->dberror($query . " ($form->{id})");
901 my $ref = $sth->fetchrow_hashref(NAME_lc);
903 map { $form->{$_} = $ref->{$_} } keys %$ref;
909 $main::lxdebug->leave_sub();
912 sub get_language_details {
913 $main::lxdebug->enter_sub();
915 my ($self, $myconfig, $form, $id) = @_;
917 # connect to database
918 my $dbh = $form->dbconnect($myconfig);
921 "SELECT template_code, " .
922 " output_numberformat, output_dateformat, output_longdates " .
923 "FROM language WHERE id = ?";
924 my @res = $dbh->selectrow_array($query, undef, $id);
927 $main::lxdebug->leave_sub();
933 $main::lxdebug->enter_sub();
935 my ($self, $myconfig, $form) = @_;
937 # connect to database
938 my $dbh = $form->dbconnect($myconfig);
939 my (@values, $query);
941 map({ push(@values, $form->{$_}); }
942 qw(description template_code article_code
943 output_numberformat output_dateformat output_longdates));
945 # id is the old record
948 "UPDATE language SET " .
949 " description = ?, template_code = ?, article_code = ?, " .
950 " output_numberformat = ?, output_dateformat = ?, " .
951 " output_longdates = ? " .
953 push(@values, $form->{id});
956 "INSERT INTO language (" .
957 " description, template_code, article_code, " .
958 " output_numberformat, output_dateformat, output_longdates" .
959 ") VALUES (?, ?, ?, ?, ?, ?)";
961 $dbh->do($query, undef, @values) ||
962 $form->dberror($query . " (" . join(", ", @values) . ")");
966 $main::lxdebug->leave_sub();
969 sub delete_language {
970 $main::lxdebug->enter_sub();
972 my ($self, $myconfig, $form) = @_;
974 # connect to database
975 my $dbh = $form->dbconnect_noauto($myconfig);
977 my $query = "DELETE FROM units_language WHERE language_id = ?";
978 $dbh->do($query, undef, $form->{"id"}) ||
979 $form->dberror($query . " ($form->{id})");
981 $query = "DELETE FROM language WHERE id = ?";
982 $dbh->do($query, undef, $form->{"id"}) ||
983 $form->dberror($query . " ($form->{id})");
988 $main::lxdebug->leave_sub();
993 $main::lxdebug->enter_sub();
995 my ($self, $myconfig, $form) = @_;
997 # connect to database
998 my $dbh = $form->dbconnect($myconfig);
1000 my $query = qq|SELECT id, description,
1002 (SELECT accno FROM chart WHERE id = inventory_accno_id) AS inventory_accno,
1004 (SELECT accno FROM chart WHERE id = income_accno_id_0) AS income_accno_0,
1006 (SELECT accno FROM chart WHERE id = expense_accno_id_0) AS expense_accno_0,
1008 (SELECT accno FROM chart WHERE id = income_accno_id_1) AS income_accno_1,
1010 (SELECT accno FROM chart WHERE id = expense_accno_id_1) AS expense_accno_1,
1012 (SELECT accno FROM chart WHERE id = income_accno_id_2) AS income_accno_2,
1014 (select accno FROM chart WHERE id = expense_accno_id_2) AS expense_accno_2,
1016 (SELECT accno FROM chart WHERE id = income_accno_id_3) AS income_accno_3,
1018 (SELECT accno FROM chart WHERE id = expense_accno_id_3) AS expense_accno_3
1019 FROM buchungsgruppen
1022 $sth = $dbh->prepare($query);
1023 $sth->execute || $form->dberror($query);
1026 while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1027 push @{ $form->{ALL} }, $ref;
1033 $main::lxdebug->leave_sub();
1036 sub get_buchungsgruppe {
1037 $main::lxdebug->enter_sub();
1039 my ($self, $myconfig, $form) = @_;
1041 # connect to database
1042 my $dbh = $form->dbconnect($myconfig);
1046 qq|SELECT description, inventory_accno_id,
1047 (SELECT accno FROM chart WHERE id = inventory_accno_id) AS inventory_accno,
1049 (SELECT accno FROM chart WHERE id = income_accno_id_0) AS income_accno_0,
1051 (SELECT accno FROM chart WHERE id = expense_accno_id_0) AS expense_accno_0,
1053 (SELECT accno FROM chart WHERE id = income_accno_id_1) AS income_accno_1,
1055 (SELECT accno FROM chart WHERE id = expense_accno_id_1) AS expense_accno_1,
1057 (SELECT accno FROM chart WHERE id = income_accno_id_2) AS income_accno_2,
1059 (select accno FROM chart WHERE id = expense_accno_id_2) AS expense_accno_2,
1061 (SELECT accno FROM chart WHERE id = income_accno_id_3) AS income_accno_3,
1063 (SELECT accno FROM chart WHERE id = expense_accno_id_3) AS expense_accno_3
1064 FROM buchungsgruppen
1066 my $sth = $dbh->prepare($query);
1067 $sth->execute($form->{id}) || $form->dberror($query . " ($form->{id})");
1069 my $ref = $sth->fetchrow_hashref(NAME_lc);
1071 map { $form->{$_} = $ref->{$_} } keys %$ref;
1076 qq|SELECT count(id) = 0 AS orphaned
1078 WHERE buchungsgruppen_id = ?|;
1079 ($form->{orphaned}) = $dbh->selectrow_array($query, undef, $form->{id});
1080 $form->dberror($query . " ($form->{id})") if ($dbh->err);
1083 $query = "SELECT inventory_accno_id, income_accno_id, expense_accno_id ".
1085 ($form->{"std_inventory_accno_id"}, $form->{"std_income_accno_id"},
1086 $form->{"std_expense_accno_id"}) = $dbh->selectrow_array($query);
1089 $query = qq|SELECT c.accno, c.description, c.link, c.id,
1090 d.inventory_accno_id, d.income_accno_id, d.expense_accno_id
1091 FROM chart c, defaults d
1092 WHERE c.link LIKE '%$module%'
1096 my $sth = $dbh->prepare($query);
1097 $sth->execute || $form->dberror($query);
1098 while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1099 foreach my $key (split(/:/, $ref->{link})) {
1100 if (!$form->{"std_inventory_accno_id"} && ($key eq "IC")) {
1101 $form->{"std_inventory_accno_id"} = $ref->{"id"};
1103 if ($key =~ /$module/) {
1104 if ( ($ref->{id} eq $ref->{inventory_accno_id})
1105 || ($ref->{id} eq $ref->{income_accno_id})
1106 || ($ref->{id} eq $ref->{expense_accno_id})) {
1107 push @{ $form->{"${module}_links"}{$key} },
1108 { accno => $ref->{accno},
1109 description => $ref->{description},
1110 selected => "selected",
1113 push @{ $form->{"${module}_links"}{$key} },
1114 { accno => $ref->{accno},
1115 description => $ref->{description},
1127 $main::lxdebug->leave_sub();
1130 sub save_buchungsgruppe {
1131 $main::lxdebug->enter_sub();
1133 my ($self, $myconfig, $form) = @_;
1135 # connect to database
1136 my $dbh = $form->dbconnect($myconfig);
1138 my @values = ($form->{description}, $form->{inventory_accno_id},
1139 $form->{income_accno_id_0}, $form->{expense_accno_id_0},
1140 $form->{income_accno_id_1}, $form->{expense_accno_id_1},
1141 $form->{income_accno_id_2}, $form->{expense_accno_id_2},
1142 $form->{income_accno_id_3}, $form->{expense_accno_id_3});
1144 # id is the old record
1146 $query = qq|UPDATE buchungsgruppen SET
1147 description = ?, inventory_accno_id = ?,
1148 income_accno_id_0 = ?, expense_accno_id_0 = ?,
1149 income_accno_id_1 = ?, expense_accno_id_1 = ?,
1150 income_accno_id_2 = ?, expense_accno_id_2 = ?,
1151 income_accno_id_3 = ?, expense_accno_id_3 = ?
1153 push(@values, $form->{id});
1155 $query = qq|INSERT INTO buchungsgruppen
1156 (description, inventory_accno_id,
1157 income_accno_id_0, expense_accno_id_0,
1158 income_accno_id_1, expense_accno_id_1,
1159 income_accno_id_2, expense_accno_id_2,
1160 income_accno_id_3, expense_accno_id_3)
1161 VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)|;
1163 do_query($form, $dbh, $query, @values);
1167 $main::lxdebug->leave_sub();
1170 sub delete_buchungsgruppe {
1171 $main::lxdebug->enter_sub();
1173 my ($self, $myconfig, $form) = @_;
1175 # connect to database
1176 my $dbh = $form->dbconnect($myconfig);
1178 $query = qq|DELETE FROM buchungsgruppen WHERE id = ?|;
1179 do_query($form, $dbh, $query, $form->{id});
1183 $main::lxdebug->leave_sub();
1187 $main::lxdebug->enter_sub();
1189 my ($self, $myconfig, $form) = @_;
1191 # connect to database
1192 my $dbh = $form->dbconnect($myconfig);
1194 my $query = qq|SELECT id, printer_description, template_code, printer_command
1198 $sth = $dbh->prepare($query);
1199 $sth->execute || $form->dberror($query);
1201 $form->{"ALL"} = [];
1202 while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1203 push @{ $form->{ALL} }, $ref;
1209 $main::lxdebug->leave_sub();
1213 $main::lxdebug->enter_sub();
1215 my ($self, $myconfig, $form) = @_;
1217 # connect to database
1218 my $dbh = $form->dbconnect($myconfig);
1221 qq|SELECT p.printer_description, p.template_code, p.printer_command
1223 WHERE p.id = $form->{id}|;
1224 my $sth = $dbh->prepare($query);
1225 $sth->execute || $form->dberror($query);
1227 my $ref = $sth->fetchrow_hashref(NAME_lc);
1229 map { $form->{$_} = $ref->{$_} } keys %$ref;
1235 $main::lxdebug->leave_sub();
1239 $main::lxdebug->enter_sub();
1241 my ($self, $myconfig, $form) = @_;
1243 # connect to database
1244 my $dbh = $form->dbconnect($myconfig);
1246 $form->{printer_description} =~ s/\'/\'\'/g;
1247 $form->{printer_command} =~ s/\'/\'\'/g;
1248 $form->{template_code} =~ s/\'/\'\'/g;
1251 # id is the old record
1253 $query = qq|UPDATE printers SET
1254 printer_description = '$form->{printer_description}',
1255 template_code = '$form->{template_code}',
1256 printer_command = '$form->{printer_command}'
1257 WHERE id = $form->{id}|;
1259 $query = qq|INSERT INTO printers
1260 (printer_description, template_code, printer_command)
1261 VALUES ('$form->{printer_description}', '$form->{template_code}', '$form->{printer_command}')|;
1263 $dbh->do($query) || $form->dberror($query);
1267 $main::lxdebug->leave_sub();
1270 sub delete_printer {
1271 $main::lxdebug->enter_sub();
1273 my ($self, $myconfig, $form) = @_;
1275 # connect to database
1276 my $dbh = $form->dbconnect($myconfig);
1278 $query = qq|DELETE FROM printers
1279 WHERE id = $form->{id}|;
1280 $dbh->do($query) || $form->dberror($query);
1284 $main::lxdebug->leave_sub();
1288 $main::lxdebug->enter_sub();
1290 my ($self, $myconfig, $form) = @_;
1292 # connect to database
1293 my $dbh = $form->dbconnect($myconfig);
1295 my $query = qq|SELECT *
1299 $sth = $dbh->prepare($query);
1300 $sth->execute || $form->dberror($query);
1302 while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1303 $ref->{percent_skonto} = $form->format_amount($myconfig,($ref->{percent_skonto} * 100));
1304 push @{ $form->{ALL} }, $ref;
1310 $main::lxdebug->leave_sub();
1314 $main::lxdebug->enter_sub();
1316 my ($self, $myconfig, $form) = @_;
1318 # connect to database
1319 my $dbh = $form->dbconnect($myconfig);
1324 WHERE id = $form->{id}|;
1325 my $sth = $dbh->prepare($query);
1326 $sth->execute || $form->dberror($query);
1328 my $ref = $sth->fetchrow_hashref(NAME_lc);
1329 $ref->{percent_skonto} = $form->format_amount($myconfig,($ref->{percent_skonto} * 100));
1331 map { $form->{$_} = $ref->{$_} } keys %$ref;
1337 $main::lxdebug->leave_sub();
1341 $main::lxdebug->enter_sub();
1343 my ($self, $myconfig, $form) = @_;
1345 # connect to database
1346 my $dbh = $form->dbconnect($myconfig);
1348 $form->{description} =~ s/\'/\'\'/g;
1349 $form->{description_long} =~ s/\'/\'\'/g;
1350 $percentskonto = $form->parse_amount($myconfig, $form->{percent_skonto}) /100;
1351 $form->{ranking} *= 1;
1352 $form->{terms_netto} *= 1;
1353 $form->{terms_skonto} *= 1;
1354 $form->{percent_skonto} *= 1;
1358 # id is the old record
1360 $query = qq|UPDATE payment_terms SET
1361 description = '$form->{description}',
1362 ranking = $form->{ranking},
1363 description_long = '$form->{description_long}',
1364 terms_netto = $form->{terms_netto},
1365 terms_skonto = $form->{terms_skonto},
1366 percent_skonto = $percentskonto
1367 WHERE id = $form->{id}|;
1369 $query = qq|INSERT INTO payment_terms
1370 (description, ranking, description_long, terms_netto, terms_skonto, percent_skonto)
1371 VALUES ('$form->{description}', $form->{ranking}, '$form->{description_long}', $form->{terms_netto}, $form->{terms_skonto}, $percentskonto)|;
1373 $dbh->do($query) || $form->dberror($query);
1377 $main::lxdebug->leave_sub();
1380 sub delete_payment {
1381 $main::lxdebug->enter_sub();
1383 my ($self, $myconfig, $form) = @_;
1385 # connect to database
1386 my $dbh = $form->dbconnect($myconfig);
1388 $query = qq|DELETE FROM payment_terms
1389 WHERE id = $form->{id}|;
1390 $dbh->do($query) || $form->dberror($query);
1394 $main::lxdebug->leave_sub();
1398 $main::lxdebug->enter_sub();
1400 my ($self, $myconfig, $form) = @_;
1402 # connect to database
1403 my $dbh = $form->dbconnect($myconfig);
1405 my $query = qq|SELECT code, sictype, description
1409 $sth = $dbh->prepare($query);
1410 $sth->execute || $form->dberror($query);
1412 while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1413 push @{ $form->{ALL} }, $ref;
1419 $main::lxdebug->leave_sub();
1423 $main::lxdebug->enter_sub();
1425 my ($self, $myconfig, $form) = @_;
1427 # connect to database
1428 my $dbh = $form->dbconnect($myconfig);
1430 my $query = qq|SELECT s.code, s.sictype, s.description
1432 WHERE s.code = '$form->{code}'|;
1433 my $sth = $dbh->prepare($query);
1434 $sth->execute || $form->dberror($query);
1436 my $ref = $sth->fetchrow_hashref(NAME_lc);
1438 map { $form->{$_} = $ref->{$_} } keys %$ref;
1444 $main::lxdebug->leave_sub();
1448 $main::lxdebug->enter_sub();
1450 my ($self, $myconfig, $form) = @_;
1452 # connect to database
1453 my $dbh = $form->dbconnect($myconfig);
1455 $form->{code} =~ s/\'/\'\'/g;
1456 $form->{description} =~ s/\'/\'\'/g;
1460 $query = qq|UPDATE sic SET
1461 code = '$form->{code}',
1462 sictype = '$form->{sictype}',
1463 description = '$form->{description}'
1464 WHERE code = '$form->{id}'|;
1466 $query = qq|INSERT INTO sic
1467 (code, sictype, description)
1468 VALUES ('$form->{code}', '$form->{sictype}', '$form->{description}')|;
1470 $dbh->do($query) || $form->dberror($query);
1474 $main::lxdebug->leave_sub();
1478 $main::lxdebug->enter_sub();
1480 my ($self, $myconfig, $form) = @_;
1482 # connect to database
1483 my $dbh = $form->dbconnect($myconfig);
1485 $query = qq|DELETE FROM sic
1486 WHERE code = '$form->{code}'|;
1487 $dbh->do($query) || $form->dberror($query);
1491 $main::lxdebug->leave_sub();
1495 $main::lxdebug->enter_sub();
1497 my ($self, $form) = @_;
1499 open(TEMPLATE, "$form->{file}") or $form->error("$form->{file} : $!");
1501 while (<TEMPLATE>) {
1502 $form->{body} .= $_;
1507 $main::lxdebug->leave_sub();
1511 $main::lxdebug->enter_sub();
1513 my ($self, $form) = @_;
1515 open(TEMPLATE, ">$form->{file}") or $form->error("$form->{file} : $!");
1518 $form->{body} =~ s/\r\n/\n/g;
1519 print TEMPLATE $form->{body};
1523 $main::lxdebug->leave_sub();
1526 sub save_preferences {
1527 $main::lxdebug->enter_sub();
1529 my ($self, $myconfig, $form, $memberfile, $userspath, $webdav) = @_;
1531 map { ($form->{$_}) = split(/--/, $form->{$_}) }
1532 qw(inventory_accno income_accno expense_accno fxgain_accno fxloss_accno);
1535 $form->{curr} =~ s/ //g;
1536 map { push(@a, uc pack "A3", $_) if $_ } split(/:/, $form->{curr});
1537 $form->{curr} = join ':', @a;
1539 # connect to database
1540 my $dbh = $form->dbconnect_noauto($myconfig);
1542 # these defaults are database wide
1543 # user specific variables are in myconfig
1545 my $query = qq|UPDATE defaults SET
1546 inventory_accno_id =
1547 (SELECT c.id FROM chart c
1548 WHERE c.accno = '$form->{inventory_accno}'),
1550 (SELECT c.id FROM chart c
1551 WHERE c.accno = '$form->{income_accno}'),
1553 (SELECT c.id FROM chart c
1554 WHERE c.accno = '$form->{expense_accno}'),
1556 (SELECT c.id FROM chart c
1557 WHERE c.accno = '$form->{fxgain_accno}'),
1559 (SELECT c.id FROM chart c
1560 WHERE c.accno = '$form->{fxloss_accno}'),
1561 invnumber = '$form->{invnumber}',
1562 cnnumber = '$form->{cnnumber}',
1563 sonumber = '$form->{sonumber}',
1564 ponumber = '$form->{ponumber}',
1565 sqnumber = '$form->{sqnumber}',
1566 rfqnumber = '$form->{rfqnumber}',
1567 customernumber = '$form->{customernumber}',
1568 vendornumber = '$form->{vendornumber}',
1569 articlenumber = '$form->{articlenumber}',
1570 servicenumber = '$form->{servicenumber}',
1571 yearend = '$form->{yearend}',
1572 curr = '$form->{curr}',
1573 businessnumber = '$form->{businessnumber}'
1575 $dbh->do($query) || $form->dberror($query);
1578 my $name = $form->{name};
1579 $name =~ s/\'/\'\'/g;
1580 $query = qq|UPDATE employee
1582 WHERE login = '$form->{login}'|;
1583 $dbh->do($query) || $form->dberror($query);
1585 # foreach my $item (split(/ /, $form->{taxaccounts})) {
1586 # $query = qq|UPDATE tax
1587 # SET rate = | . ($form->{$item} / 100) . qq|,
1588 # taxnumber = '$form->{"taxnumber_$item"}'
1589 # WHERE chart_id = $item|;
1590 # $dbh->do($query) || $form->dberror($query);
1593 my $rc = $dbh->commit;
1596 # save first currency in myconfig
1597 $form->{currency} = substr($form->{curr}, 0, 3);
1599 my $myconfig = new User "$memberfile", "$form->{login}";
1601 foreach my $item (keys %$form) {
1602 $myconfig->{$item} = $form->{$item};
1605 $myconfig->save_member($memberfile, $userspath);
1609 qw(angebote bestellungen rechnungen anfragen lieferantenbestellungen einkaufsrechnungen);
1610 foreach $directory (@webdavdirs) {
1611 $file = "webdav/" . $directory . "/webdav-user";
1612 if ($myconfig->{$directory}) {
1613 open(HTACCESS, "$file") or die "cannot open webdav-user $!\n";
1614 while (<HTACCESS>) {
1615 ($login, $password) = split(/:/, $_);
1616 if ($login ne $form->{login}) {
1621 open(HTACCESS, "> $file") or die "cannot open webdav-user $!\n";
1622 $newfile .= $myconfig->{login} . ":" . $myconfig->{password} . "\n";
1623 print(HTACCESS $newfile);
1626 $form->{$directory} = 0;
1627 open(HTACCESS, "$file") or die "cannot open webdav-user $!\n";
1628 while (<HTACCESS>) {
1629 ($login, $password) = split(/:/, $_);
1630 if ($login ne $form->{login}) {
1635 open(HTACCESS, "> $file") or die "cannot open webdav-user $!\n";
1636 print(HTACCESS $newfile);
1642 $main::lxdebug->leave_sub();
1647 sub defaultaccounts {
1648 $main::lxdebug->enter_sub();
1650 my ($self, $myconfig, $form) = @_;
1652 # connect to database
1653 my $dbh = $form->dbconnect($myconfig);
1655 # get defaults from defaults table
1656 my $query = qq|SELECT * FROM defaults|;
1657 my $sth = $dbh->prepare($query);
1658 $sth->execute || $form->dberror($query);
1660 $form->{defaults} = $sth->fetchrow_hashref(NAME_lc);
1661 $form->{defaults}{IC} = $form->{defaults}{inventory_accno_id};
1662 $form->{defaults}{IC_income} = $form->{defaults}{income_accno_id};
1663 $form->{defaults}{IC_expense} = $form->{defaults}{expense_accno_id};
1664 $form->{defaults}{FX_gain} = $form->{defaults}{fxgain_accno_id};
1665 $form->{defaults}{FX_loss} = $form->{defaults}{fxloss_accno_id};
1669 $query = qq|SELECT c.id, c.accno, c.description, c.link
1671 WHERE c.link LIKE '%IC%'
1673 $sth = $dbh->prepare($query);
1674 $sth->execute || $self->dberror($query);
1676 while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1677 foreach my $key (split(/:/, $ref->{link})) {
1680 if ($key =~ /cogs/) {
1681 $nkey = "IC_expense";
1683 if ($key =~ /sale/) {
1684 $nkey = "IC_income";
1686 %{ $form->{IC}{$nkey}{ $ref->{accno} } } = (
1688 description => $ref->{description}
1695 $query = qq|SELECT c.id, c.accno, c.description
1697 WHERE c.category = 'I'
1698 AND c.charttype = 'A'
1700 $sth = $dbh->prepare($query);
1701 $sth->execute || $self->dberror($query);
1703 while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1704 %{ $form->{IC}{FX_gain}{ $ref->{accno} } } = (
1706 description => $ref->{description}
1711 $query = qq|SELECT c.id, c.accno, c.description
1713 WHERE c.category = 'E'
1714 AND c.charttype = 'A'
1716 $sth = $dbh->prepare($query);
1717 $sth->execute || $self->dberror($query);
1719 while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1720 %{ $form->{IC}{FX_loss}{ $ref->{accno} } } = (
1722 description => $ref->{description}
1727 # now get the tax rates and numbers
1728 $query = qq|SELECT c.id, c.accno, c.description,
1729 t.rate * 100 AS rate, t.taxnumber
1731 WHERE c.id = t.chart_id|;
1733 $sth = $dbh->prepare($query);
1734 $sth->execute || $form->dberror($query);
1736 while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1737 $form->{taxrates}{ $ref->{accno} }{id} = $ref->{id};
1738 $form->{taxrates}{ $ref->{accno} }{description} = $ref->{description};
1739 $form->{taxrates}{ $ref->{accno} }{taxnumber} = $ref->{taxnumber}
1740 if $ref->{taxnumber};
1741 $form->{taxrates}{ $ref->{accno} }{rate} = $ref->{rate} if $ref->{rate};
1747 $main::lxdebug->leave_sub();
1751 $main::lxdebug->enter_sub();
1753 my ($self, $myconfig, $form, $userspath) = @_;
1757 my $boundary = time;
1759 "$userspath/$boundary.$myconfig->{dbname}-$form->{dbversion}.sql";
1760 my $out = $form->{OUT};
1761 $form->{OUT} = ">$tmpfile";
1763 if ($form->{media} eq 'email') {
1768 $mail->{to} = qq|"$myconfig->{name}" <$myconfig->{email}>|;
1769 $mail->{from} = qq|"$myconfig->{name}" <$myconfig->{email}>|;
1771 "Lx-Office Backup / $myconfig->{dbname}-$form->{dbversion}.sql";
1772 @{ $mail->{attachments} } = ($tmpfile);
1773 $mail->{version} = $form->{version};
1774 $mail->{fileid} = "$boundary.";
1776 $myconfig->{signature} =~ s/\\n/\r\n/g;
1777 $mail->{message} = "--\n$myconfig->{signature}";
1781 open(OUT, "$form->{OUT}") or $form->error("$form->{OUT} : $!");
1783 # get sequences, functions and triggers
1784 open(FH, "sql/lx-office.sql") or $form->error("sql/lx-office.sql : $!");
1797 # Remove DOS and Unix style line endings.
1800 # ignore comments or empty lines
1801 next if /^(--.*|\s+)$/;
1803 for (my $i = 0; $i < length($_); $i++) {
1804 my $char = substr($_, $i, 1);
1806 # Are we inside a string?
1808 if ($char eq $quote_chars[-1]) {
1814 if (($char eq "'") || ($char eq "\"")) {
1815 push(@quote_chars, $char);
1817 } elsif ($char eq ";") {
1819 # Query is complete. Check for triggers and functions.
1820 if ($query =~ /^create\s+function\s+\"?(\w+)\"?/i) {
1821 push(@functions, $query);
1823 } elsif ($query =~ /^create\s+trigger\s+\"?(\w+)\"?/i) {
1824 push(@triggers, $query);
1826 } elsif ($query =~ /^create\s+sequence\s+\"?(\w+)\"?/i) {
1827 push(@sequences, $1);
1829 } elsif ($query =~ /^create\s+table\s+\"?(\w+)\"?/i) {
1830 $tablespecs{$1} = $query;
1832 } elsif ($query =~ /^create\s+index\s+\"?(\w+)\"?/i) {
1833 push(@indices, $query);
1847 # connect to database
1848 my $dbh = $form->dbconnect($myconfig);
1850 # get all the tables
1851 my @tables = $dbh->tables('', '', 'customer', '', { noprefix => 0 });
1853 my $today = scalar localtime;
1855 $myconfig->{dbhost} = 'localhost' unless $myconfig->{dbhost};
1857 print OUT qq|-- Lx-Office Backup
1858 -- Dataset: $myconfig->{dbname}
1859 -- Version: $form->{dbversion}
1860 -- Host: $myconfig->{dbhost}
1861 -- Login: $form->{login}
1862 -- User: $myconfig->{name}
1866 $myconfig->{dboptions};
1870 print OUT "-- DROP Sequences\n";
1872 foreach $item (@sequences) {
1873 print OUT qq|DROP SEQUENCE $item;\n|;
1876 print OUT "-- DROP Triggers\n";
1878 foreach $item (@triggers) {
1879 if ($item =~ /^create\s+trigger\s+\"?(\w+)\"?\s+.*on\s+\"?(\w+)\"?\s+/i) {
1880 print OUT qq|DROP TRIGGER "$1" ON "$2";\n|;
1884 print OUT "-- DROP Functions\n";
1886 foreach $item (@functions) {
1887 if ($item =~ /^create\s+function\s+\"?(\w+)\"?/i) {
1888 print OUT qq|DROP FUNCTION "$1" ();\n|;
1892 foreach $table (@tables) {
1893 if (!($table =~ /^sql_.*/)) {
1894 my $query = qq|SELECT * FROM $table|;
1896 my $sth = $dbh->prepare($query);
1897 $sth->execute || $form->dberror($query);
1899 $query = "INSERT INTO $table (";
1900 map { $query .= qq|$sth->{NAME}->[$_],| }
1901 (0 .. $sth->{NUM_OF_FIELDS} - 1);
1904 $query .= ") VALUES";
1906 if ($tablespecs{$table}) {
1908 print(OUT "DROP TABLE $table;\n");
1909 print(OUT $tablespecs{$table}, ";\n");
1912 print(OUT "DELETE FROM $table;\n");
1914 while (my @arr = $sth->fetchrow_array) {
1917 foreach my $item (@arr) {
1918 if (defined $item) {
1919 $item =~ s/\'/\'\'/g;
1920 $fields .= qq|'$item',|;
1929 print OUT qq|$query $fields;\n|;
1936 # create indices, sequences, functions and triggers
1938 print(OUT "-- CREATE Indices\n");
1939 map({ print(OUT "$_;\n"); } @indices);
1941 print OUT "-- CREATE Sequences\n";
1942 foreach $item (@sequences) {
1943 $query = qq|SELECT last_value FROM $item|;
1944 $sth = $dbh->prepare($query);
1945 $sth->execute || $form->dberror($query);
1946 my ($id) = $sth->fetchrow_array;
1950 CREATE SEQUENCE $item START $id;
1954 print OUT "-- CREATE Functions\n";
1957 map { print(OUT $_, ";\n"); } @functions;
1959 print OUT "-- CREATE Triggers\n";
1962 map { print(OUT $_, ";\n"); } @triggers;
1969 my @args = ("gzip", "$tmpfile");
1970 system(@args) == 0 or $form->error("$args[0] : $?");
1974 if ($form->{media} eq 'email') {
1975 @{ $mail->{attachments} } = ($tmpfile);
1976 $err = $mail->send($out);
1979 if ($form->{media} eq 'file') {
1981 open(IN, "$tmpfile") or $form->error("$tmpfile : $!");
1982 open(OUT, ">-") or $form->error("STDOUT : $!");
1984 print OUT qq|Content-Type: application/x-tar-gzip;
1985 Content-Disposition: attachment; filename="$myconfig->{dbname}-$form->{dbversion}.sql.gz"
2000 $main::lxdebug->leave_sub();
2004 $main::lxdebug->enter_sub();
2006 my ($self, $myconfig, $form) = @_;
2008 my $dbh = $form->dbconnect($myconfig);
2010 my $query = qq|SELECT closedto, revtrans FROM defaults|;
2011 my $sth = $dbh->prepare($query);
2012 $sth->execute || $form->dberror($query);
2014 ($form->{closedto}, $form->{revtrans}) = $sth->fetchrow_array;
2020 $main::lxdebug->leave_sub();
2024 $main::lxdebug->enter_sub();
2026 my ($self, $myconfig, $form) = @_;
2028 my $dbh = $form->dbconnect($myconfig);
2030 if ($form->{revtrans}) {
2032 $query = qq|UPDATE defaults SET closedto = NULL,
2034 } elsif ($form->{closedto}) {
2036 $query = qq|UPDATE defaults SET closedto = '$form->{closedto}',
2040 $query = qq|UPDATE defaults SET closedto = NULL,
2044 # set close in defaults
2045 $dbh->do($query) || $form->dberror($query);
2049 $main::lxdebug->leave_sub();
2053 my ($self, $units, $unit_name, $factor) = @_;
2055 $factor = 1 unless ($factor);
2057 my $unit = $units->{$unit_name};
2059 if (!defined($unit) || !$unit->{"base_unit"} ||
2060 ($unit_name eq $unit->{"base_unit"})) {
2061 return ($unit_name, $factor);
2064 return AM->get_base_unit($units, $unit->{"base_unit"}, $factor * $unit->{"factor"});
2067 sub retrieve_units {
2068 $main::lxdebug->enter_sub();
2070 my ($self, $myconfig, $form, $type, $prefix) = @_;
2072 my $dbh = $form->dbconnect($myconfig);
2074 my $query = "SELECT *, base_unit AS original_base_unit FROM units";
2077 $query .= " WHERE (type = ?)";
2081 my $sth = $dbh->prepare($query);
2082 $sth->execute(@values) || $form->dberror($query . " (" . join(", ", @values) . ")");
2085 while (my $ref = $sth->fetchrow_hashref()) {
2086 $units->{$ref->{"name"}} = $ref;
2090 my $query_lang = "SELECT id, template_code FROM language ORDER BY description";
2091 $sth = $dbh->prepare($query_lang);
2092 $sth->execute() || $form->dberror($query_lang);
2094 while ($ref = $sth->fetchrow_hashref()) {
2095 push(@languages, $ref);
2099 $query_lang = "SELECT ul.localized, ul.localized_plural, l.id, l.template_code " .
2100 "FROM units_language ul " .
2101 "LEFT JOIN language l ON ul.language_id = l.id " .
2102 "WHERE ul.unit = ?";
2103 $sth = $dbh->prepare($query_lang);
2105 foreach my $unit (values(%{$units})) {
2106 ($unit->{"${prefix}base_unit"}, $unit->{"${prefix}factor"}) = AM->get_base_unit($units, $unit->{"name"});
2108 $unit->{"LANGUAGES"} = {};
2109 foreach my $lang (@languages) {
2110 $unit->{"LANGUAGES"}->{$lang->{"template_code"}} = { "template_code" => $lang->{"template_code"} };
2113 $sth->execute($unit->{"name"}) || $form->dberror($query_lang . " (" . $unit->{"name"} . ")");
2114 while ($ref = $sth->fetchrow_hashref()) {
2115 map({ $unit->{"LANGUAGES"}->{$ref->{"template_code"}}->{$_} = $ref->{$_} } keys(%{$ref}));
2122 $main::lxdebug->leave_sub();
2127 sub translate_units {
2128 $main::lxdebug->enter_sub();
2130 my ($self, $form, $template_code, $unit, $amount) = @_;
2132 my $units = $self->retrieve_units(\%main::myconfig, $form);
2134 my $h = $units->{$unit}->{"LANGUAGES"}->{$template_code};
2135 my $new_unit = $unit;
2137 if (($amount != 1) && $h->{"localized_plural"}) {
2138 $new_unit = $h->{"localized_plural"};
2139 } elsif ($h->{"localized"}) {
2140 $new_unit = $h->{"localized"};
2144 $main::lxdebug->leave_sub();
2150 $main::lxdebug->enter_sub();
2152 my ($self, $myconfig, $form, $units) = @_;
2154 my $dbh = $form->dbconnect($myconfig);
2156 foreach my $unit (values(%{$units})) {
2157 my $base_unit = $unit->{"original_base_unit"};
2158 while ($base_unit) {
2159 $units->{$base_unit}->{"DEPENDING_UNITS"} = [] unless ($units->{$base_unit}->{"DEPENDING_UNITS"});
2160 push(@{$units->{$base_unit}->{"DEPENDING_UNITS"}}, $unit->{"name"});
2161 $base_unit = $units->{$base_unit}->{"original_base_unit"};
2165 foreach my $unit (values(%{$units})) {
2166 $unit->{"in_use"} = 0;
2167 map({ $_ = $dbh->quote($_); } @{$unit->{"DEPENDING_UNITS"}});
2169 foreach my $table (qw(parts invoice orderitems)) {
2170 my $query = "SELECT COUNT(*) FROM $table WHERE unit ";
2172 if (0 == scalar(@{$unit->{"DEPENDING_UNITS"}})) {
2173 $query .= "= " . $dbh->quote($unit->{"name"});
2175 $query .= "IN (" . $dbh->quote($unit->{"name"}) . "," . join(",", @{$unit->{"DEPENDING_UNITS"}}) . ")";
2178 my ($count) = $dbh->selectrow_array($query);
2179 $form->dberror($query) if ($dbh->err);
2182 $unit->{"in_use"} = 1;
2190 $main::lxdebug->leave_sub();
2193 sub unit_select_data {
2194 $main::lxdebug->enter_sub();
2196 my ($self, $units, $selected, $empty_entry) = @_;
2201 push(@{$select}, { "name" => "", "base_unit" => "", "factor" => "", "selected" => "" });
2204 foreach my $unit (sort({ lc($a) cmp lc($b) } keys(%{$units}))) {
2205 push(@{$select}, { "name" => $unit,
2206 "base_unit" => $units->{$unit}->{"base_unit"},
2207 "factor" => $units->{$unit}->{"factor"},
2208 "selected" => ($unit eq $selected) ? "selected" : "" });
2211 $main::lxdebug->leave_sub();
2216 sub unit_select_html {
2217 $main::lxdebug->enter_sub();
2219 my ($self, $units, $name, $selected, $convertible_into) = @_;
2221 my $select = "<select name=${name}>";
2223 foreach my $unit (sort({ lc($a) cmp lc($b) } keys(%{$units}))) {
2224 if (!$convertible_into ||
2225 ($units->{$convertible_into} &&
2226 ($units->{$convertible_into}->{"base_unit"} eq $units->{$unit}->{"base_unit"}))) {
2227 $select .= "<option" . (($unit eq $selected) ? " selected" : "") . ">${unit}</option>";
2230 $select .= "</select>";
2232 $main::lxdebug->leave_sub();
2238 $main::lxdebug->enter_sub();
2240 my ($self, $myconfig, $form, $name, $base_unit, $factor, $type, $languages) = @_;
2242 my $dbh = $form->dbconnect_noauto($myconfig);
2244 my $query = "INSERT INTO units (name, base_unit, factor, type) VALUES (?, ?, ?, ?)";
2245 $dbh->do($query, undef, $name, $base_unit, $factor, $type) || $form->dberror($query . " ($name, $base_unit, $factor, $type)");
2248 $query = "INSERT INTO units_language (unit, language_id, localized, localized_plural) VALUES (?, ?, ?, ?)";
2249 my $sth = $dbh->prepare($query);
2250 foreach my $lang (@{$languages}) {
2251 my @values = ($name, $lang->{"id"}, $lang->{"localized"}, $lang->{"localized_plural"});
2252 $sth->execute(@values) || $form->dberror($query . " (" . join(", ", @values) . ")");
2260 $main::lxdebug->leave_sub();
2264 $main::lxdebug->enter_sub();
2266 my ($self, $myconfig, $form, $type, $units, $delete_units) = @_;
2268 my $dbh = $form->dbconnect_noauto($myconfig);
2270 my ($base_unit, $unit, $sth, $query);
2272 $query = "DELETE FROM units_language";
2273 $dbh->do($query) || $form->dberror($query);
2275 if ($delete_units && (0 != scalar(@{$delete_units}))) {
2276 $query = "DELETE FROM units WHERE name IN (";
2277 map({ $query .= "?," } @{$delete_units});
2278 substr($query, -1, 1) = ")";
2279 $dbh->do($query, undef, @{$delete_units}) ||
2280 $form->dberror($query . " (" . join(", ", @{$delete_units}) . ")");
2283 $query = "UPDATE units SET name = ?, base_unit = ?, factor = ? WHERE name = ?";
2284 $sth = $dbh->prepare($query);
2286 my $query_lang = "INSERT INTO units_language (unit, language_id, localized, localized_plural) VALUES (?, ?, ?, ?)";
2287 my $sth_lang = $dbh->prepare($query_lang);
2289 foreach $unit (values(%{$units})) {
2290 $unit->{"depth"} = 0;
2291 my $base_unit = $unit;
2292 while ($base_unit->{"base_unit"}) {
2294 $base_unit = $units->{$base_unit->{"base_unit"}};
2298 foreach $unit (sort({ $a->{"depth"} <=> $b->{"depth"} } values(%{$units}))) {
2299 if ($unit->{"LANGUAGES"}) {
2300 foreach my $lang (@{$unit->{"LANGUAGES"}}) {
2301 next unless ($lang->{"id"} && $lang->{"localized"});
2302 my @values = ($unit->{"name"}, $lang->{"id"}, $lang->{"localized"}, $lang->{"localized_plural"});
2303 $sth_lang->execute(@values) || $form->dberror($query_lang . " (" . join(", ", @values) . ")");
2307 next if ($unit->{"unchanged_unit"});
2309 my @values = ($unit->{"name"}, $unit->{"base_unit"}, $unit->{"factor"}, $unit->{"old_name"});
2310 $sth->execute(@values) || $form->dberror($query . " (" . join(", ", @values) . ")");
2314 $sth_lang->finish();
2318 $main::lxdebug->leave_sub();