1 #====================================================================
4 # Based on SQL-Ledger Version 2.1.9
5 # Web http://www.lx-office.org
7 #=====================================================================
8 # SQL-Ledger Accounting
9 # Copyright (C) 1999-2003
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 #======================================================================
33 #======================================================================
38 $main::lxdebug->enter_sub();
40 my ($self, $myconfig, $form) = @_;
43 my $dbh = $form->dbconnect($myconfig);
46 my $ordnumber = 'ordnumber';
48 my ($null, $department_id) = split /--/, $form->{department};
50 my $department = " AND o.department_id = $department_id" if $department_id;
52 my $rate = ($form->{vc} eq 'customer') ? 'buy' : 'sell';
54 if ($form->{type} =~ /_quotation$/) {
56 $ordnumber = 'quonumber';
59 my $number = $form->like(lc $form->{$ordnumber});
60 my $name = $form->like(lc $form->{ $form->{vc} });
62 my $query = qq|SELECT o.id, o.ordnumber, o.transdate, o.reqdate,
63 o.amount, ct.name, o.netamount, o.$form->{vc}_id,
64 ex.$rate AS exchangerate,
65 o.closed, o.quonumber, o.shippingpoint, o.shipvia,
68 JOIN $form->{vc} ct ON (o.$form->{vc}_id = ct.id)
69 LEFT JOIN employee e ON (o.employee_id = e.id)
70 LEFT JOIN exchangerate ex ON (ex.curr = o.curr
71 AND ex.transdate = o.transdate)
72 WHERE o.quotation = '$quotation'
75 # build query if type eq (ship|receive)_order
76 if ($form->{type} =~ /(ship|receive)_order/) {
77 my ($warehouse, $warehouse_id) = split /--/, $form->{warehouse};
79 $query = qq|SELECT DISTINCT ON (o.id) o.id, o.ordnumber, o.transdate,
80 o.reqdate, o.amount, ct.name, o.netamount, o.$form->{vc}_id,
81 ex.$rate AS exchangerate,
82 o.closed, o.quonumber, o.shippingpoint, o.shipvia,
85 JOIN $form->{vc} ct ON (o.$form->{vc}_id = ct.id)
86 JOIN orderitems oi ON (oi.trans_id = o.id)
87 JOIN parts p ON (p.id = oi.parts_id)|;
89 if ($warehouse_id && $form->{type} eq 'ship_order') {
91 JOIN inventory i ON (oi.parts_id = i.parts_id)
96 LEFT JOIN employee e ON (o.employee_id = e.id)
97 LEFT JOIN exchangerate ex ON (ex.curr = o.curr
98 AND ex.transdate = o.transdate)
99 WHERE o.quotation = '0'
100 AND (p.inventory_accno_id > 0 OR p.assembly = '1')
101 AND oi.qty <> oi.ship
104 if ($warehouse_id && $form->{type} eq 'ship_order') {
106 AND i.warehouse_id = $warehouse_id
107 AND i.qty >= (oi.qty - oi.ship)
113 if ($form->{"$form->{vc}_id"}) {
114 $query .= qq| AND o.$form->{vc}_id = $form->{"$form->{vc}_id"}|;
116 if ($form->{ $form->{vc} }) {
117 $query .= " AND lower(ct.name) LIKE '$name'";
120 if (!$form->{open} && !$form->{closed}) {
121 $query .= " AND o.id = 0";
122 } elsif (!($form->{open} && $form->{closed})) {
123 $query .= ($form->{open}) ? " AND o.closed = '0'" : " AND o.closed = '1'";
126 my $sortorder = join ', ',
127 ("o.id", $form->sort_columns(transdate, $ordnumber, name));
128 $sortorder = $form->{sort} unless $sortorder;
130 $query .= " AND lower($ordnumber) LIKE '$number'" if $form->{$ordnumber};
131 $query .= " AND o.transdate >= '$form->{transdatefrom}'"
132 if $form->{transdatefrom};
133 $query .= " AND o.transdate <= '$form->{transdateto}'"
134 if $form->{transdateto};
135 $query .= " ORDER by $sortorder";
137 my $sth = $dbh->prepare($query);
138 $sth->execute || $form->dberror($query);
141 while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
142 $ref->{exchangerate} = 1 unless $ref->{exchangerate};
143 push @{ $form->{OE} }, $ref if $ref->{id} != $id{ $ref->{id} };
144 $id{ $ref->{id} } = $ref->{id};
150 $main::lxdebug->leave_sub();
154 $main::lxdebug->enter_sub();
156 my ($self, $myconfig, $form) = @_;
158 # connect to database, turn off autocommit
159 my $dbh = $form->dbconnect_noauto($myconfig);
161 my ($query, $sth, $null);
162 my $exchangerate = 0;
164 ($null, $form->{employee_id}) = split /--/, $form->{employee};
165 unless ($form->{employee_id}) {
166 $form->get_employee($dbh);
169 ($null, $form->{contact_id}) = split /--/, $form->{contact};
170 $form->{contact_id} *= 1;
172 my $ml = ($form->{type} eq 'sales_order') ? 1 : -1;
176 &adj_onhand($dbh, $form, $ml) if $form->{type} =~ /_order$/;
178 $query = qq|DELETE FROM orderitems
179 WHERE trans_id = $form->{id}|;
180 $dbh->do($query) || $form->dberror($query);
182 $query = qq|DELETE FROM shipto
183 WHERE trans_id = $form->{id}|;
184 $dbh->do($query) || $form->dberror($query);
189 my $uid = rand() . time;
191 $uid .= $form->{login};
193 $uid = substr($uid, 2, 75);
195 $query = qq|INSERT INTO oe (ordnumber, employee_id)
196 VALUES ('$uid', $form->{employee_id})|;
197 $dbh->do($query) || $form->dberror($query);
199 $query = qq|SELECT o.id FROM oe o
200 WHERE o.ordnumber = '$uid'|;
201 $sth = $dbh->prepare($query);
202 $sth->execute || $form->dberror($query);
205 ($form->{id}) = $sth->fetchrow_array;
209 map { $form->{$_} =~ s/\'/\'\'/g }
210 qw(ordnumber quonumber shippingpoint shipvia notes intnotes message);
225 for my $i (1 .. $form->{rowcount}) {
228 $form->{"${_}_$i"} = $form->parse_amount($myconfig, $form->{"${_}_$i"})
231 $form->{"orderitems_id_$i"} = "";
234 if ($form->{"qty_$i"}) {
236 map { $form->{"${_}_$i"} =~ s/\'/\'\'/g }
237 qw(partnumber description unit);
239 # set values to 0 if nothing entered
240 $form->{"discount_$i"} =
241 $form->parse_amount($myconfig, $form->{"discount_$i"}) / 100;
243 $form->{"sellprice_$i"} =
244 $form->parse_amount($myconfig, $form->{"sellprice_$i"});
245 $fxsellprice = $form->{"sellprice_$i"};
247 my ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
249 my $decimalplaces = ($dec > 2) ? $dec : 2;
252 $form->round_amount($form->{"sellprice_$i"} * $form->{"discount_$i"},
254 $form->{"sellprice_$i"} =
255 $form->round_amount($form->{"sellprice_$i"} - $discount,
258 $form->{"inventory_accno_$i"} *= 1;
259 $form->{"expense_accno_$i"} *= 1;
262 $form->round_amount($form->{"sellprice_$i"} * $form->{"qty_$i"}, 2);
264 @taxaccounts = split / /, $form->{"taxaccounts_$i"};
268 map { $taxrate += $form->{"${_}_rate"} } @taxaccounts;
270 if ($form->{taxincluded}) {
271 $taxamount = $linetotal * $taxrate / (1 + $taxrate);
272 $taxbase = $linetotal - $taxamount;
274 # we are not keeping a natural price, do not round
275 $form->{"sellprice_$i"} =
276 $form->{"sellprice_$i"} * (1 / (1 + $taxrate));
278 $taxamount = $linetotal * $taxrate;
279 $taxbase = $linetotal;
282 if ($form->round_amount($taxrate, 7) == 0) {
283 if ($form->{taxincluded}) {
284 foreach $item (@taxaccounts) {
286 $form->round_amount($linetotal * $form->{"${item}_rate"} /
287 (1 + abs($form->{"${item}_rate"})),
290 $taxaccounts{$item} += $taxamount;
291 $taxdiff += $taxamount;
293 $taxbase{$item} += $taxbase;
295 $taxaccounts{ $taxaccounts[0] } += $taxdiff;
297 foreach $item (@taxaccounts) {
298 $taxaccounts{$item} += $linetotal * $form->{"${item}_rate"};
299 $taxbase{$item} += $taxbase;
303 foreach $item (@taxaccounts) {
304 $taxaccounts{$item} +=
305 $taxamount * $form->{"${item}_rate"} / $taxrate;
306 $taxbase{$item} += $taxbase;
310 $netamount += $form->{"sellprice_$i"} * $form->{"qty_$i"};
312 $project_id = 'NULL';
313 if ($form->{"projectnumber_$i"}) {
314 $project_id = $form->{"projectnumber_$i"};
317 ($form->{"reqdate_$i"}) ? qq|'$form->{"reqdate_$i"}'| : "NULL";
319 # get pricegroup_id and save ist
320 ($null, my $pricegroup_id) = split /--/, $form->{"sellprice_drag_$i"};
323 # save detail record in orderitems table
324 $query = qq|INSERT INTO orderitems (|;
325 $query .= "id, " if $form->{"orderitems_id_$i"};
326 $query .= qq|trans_id, parts_id, description, qty, sellprice, discount,
327 unit, reqdate, project_id, serialnumber, ship, pricegroup_id)
329 $query .= qq|$form->{"orderitems_id_$i"},|
330 if $form->{"orderitems_id_$i"};
331 $query .= qq|$form->{id}, $form->{"id_$i"},
332 '$form->{"description_$i"}', $form->{"qty_$i"},
333 $fxsellprice, $form->{"discount_$i"},
334 '$form->{"unit_$i"}', $reqdate, (SELECT id from project where projectnumber = '$project_id'),
335 '$form->{"serialnumber_$i"}', $form->{"ship_$i"},
337 $dbh->do($query) || $form->dberror($query);
339 $form->{"sellprice_$i"} = $fxsellprice;
340 $form->{"discount_$i"} *= 100;
344 # set values which could be empty
345 map { $form->{$_} *= 1 }
346 qw(vendor_id customer_id taxincluded closed quotation);
348 $reqdate = ($form->{reqdate}) ? qq|'$form->{reqdate}'| : "NULL";
352 map { $tax += $form->round_amount($taxaccounts{$_}, 2) } keys %taxaccounts;
354 $amount = $form->round_amount($netamount + $tax, 2);
355 $netamount = $form->round_amount($netamount, 2);
357 if ($form->{currency} eq $form->{defaultcurrency}) {
358 $form->{exchangerate} = 1;
361 $form->check_exchangerate($myconfig,
364 ($form->{vc} eq 'customer') ? 'buy' : 'sell');
367 $form->{exchangerate} =
370 : $form->parse_amount($myconfig, $form->{exchangerate});
374 # fill in subject if there is none
375 if ($form->{type} =~ /_order$/) {
377 $form->{subject} = qq|$form->{label} $form->{ordnumber}|
378 unless $form->{subject};
381 $form->{subject} = qq|$form->{label} $form->{quonumber}|
382 unless $form->{subject};
385 # if there is a message stuff it into the intnotes
386 my $cc = "Cc: $form->{cc}\\r\n" if $form->{cc};
387 my $bcc = "Bcc: $form->{bcc}\\r\n" if $form->{bcc};
388 my $now = scalar localtime;
389 $form->{intnotes} .= qq|\r
390 \r| if $form->{intnotes};
392 $form->{intnotes} .= qq|[email]\r
395 $cc${bcc}Subject: $form->{subject}\r
397 Message: $form->{message}\r| if $form->{message};
399 ($null, $form->{department_id}) = split(/--/, $form->{department});
400 $form->{department_id} *= 1;
403 $query = qq|UPDATE oe set
404 ordnumber = '$form->{ordnumber}',
405 quonumber = '$form->{quonumber}',
406 cusordnumber = '$form->{cusordnumber}',
407 transdate = '$form->{transdate}',
408 vendor_id = $form->{vendor_id},
409 customer_id = $form->{customer_id},
411 netamount = $netamount,
413 taxincluded = '$form->{taxincluded}',
414 shippingpoint = '$form->{shippingpoint}',
415 shipvia = '$form->{shipvia}',
416 notes = '$form->{notes}',
417 intnotes = '$form->{intnotes}',
418 curr = '$form->{currency}',
419 closed = '$form->{closed}',
420 quotation = '$quotation',
421 department_id = $form->{department_id},
422 employee_id = $form->{employee_id},
423 cp_id = $form->{contact_id}
424 WHERE id = $form->{id}|;
425 $dbh->do($query) || $form->dberror($query);
427 $form->{ordtotal} = $amount;
429 if ($form->{webdav}) {
430 &webdav_folder($myconfig, $form);
434 $form->{name} = $form->{ $form->{vc} };
435 $form->{name} =~ s/--$form->{"$form->{vc}_id"}//;
436 $form->add_shipto($dbh, $form->{id});
438 # save printed, emailed, queued
439 $form->save_status($dbh);
441 if (($form->{currency} ne $form->{defaultcurrency}) && !$exchangerate) {
442 if ($form->{vc} eq 'customer') {
443 $form->update_exchangerate($dbh, $form->{currency}, $form->{transdate},
444 $form->{exchangerate}, 0);
446 if ($form->{vc} eq 'vendor') {
447 $form->update_exchangerate($dbh, $form->{currency}, $form->{transdate},
448 0, $form->{exchangerate});
452 if ($form->{type} =~ /_order$/) {
455 &adj_onhand($dbh, $form, $ml * -1);
456 &adj_inventory($dbh, $myconfig, $form);
459 my $rc = $dbh->commit;
462 $main::lxdebug->leave_sub();
467 # this function closes multiple orders given in $form->{ordnumber_#}.
468 # use this for multiple orders that don't have to be saved back
469 # single orders should use OE::save instead.
471 $main::lxdebug->enter_sub();
473 my ($self, $myconfig ,$form) = @_;
475 for my $i (1 .. $form->{rowcount}) {
478 $form->{"${_}_$i"} = $form->parse_amount($myconfig, $form->{"${_}_$i"})
481 $form->{"orderitems_id_$i"} = "";
484 if ($form->{"qty_$i"}) {
486 map { $form->{"${_}_$i"} =~ s/\'/\'\'/g }
487 qw(partnumber description unit);
489 # set values to 0 if nothing entered
490 $form->{"discount_$i"} =
491 $form->parse_amount($myconfig, $form->{"discount_$i"}) / 100;
493 $form->{"sellprice_$i"} =
494 $form->parse_amount($myconfig, $form->{"sellprice_$i"});
495 $fxsellprice = $form->{"sellprice_$i"};
497 my ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
499 my $decimalplaces = ($dec > 2) ? $dec : 2;
502 $form->round_amount($form->{"sellprice_$i"} * $form->{"discount_$i"},
504 $form->{"sellprice_$i"} =
505 $form->round_amount($form->{"sellprice_$i"} - $discount,
508 $form->{"inventory_accno_$i"} *= 1;
509 $form->{"expense_accno_$i"} *= 1;
513 map { push @ids, $form->{"ordnumber_$_"} if $form->{"ordnumber_$_"} } (1 .. $form->{rowcount});
515 my $dbh = $form->dbconnect($myconfig);
516 $query = qq|UPDATE oe SET
518 WHERE ordnumber IN (|.join(', ', map{ $dbh->quote($_) }@ids).qq|)|;
519 $dbh->do($query) || $form->dberror($query);
522 $main::lxdebug->leave_sub();
526 $main::lxdebug->enter_sub();
528 my ($self, $myconfig, $form, $spool) = @_;
530 # connect to database
531 my $dbh = $form->dbconnect_noauto($myconfig);
534 my $query = qq|SELECT s.spoolfile FROM status s
535 WHERE s.trans_id = $form->{id}|;
536 $sth = $dbh->prepare($query);
537 $sth->execute || $self->dberror($query);
542 while (($spoolfile) = $sth->fetchrow_array) {
543 push @spoolfiles, $spoolfile;
547 $query = qq|SELECT o.parts_id, o.ship FROM orderitems o
548 WHERE o.trans_id = $form->{id}|;
549 $sth = $dbh->prepare($query);
550 $sth->execute || $self->dberror($query);
552 while (my ($id, $ship) = $sth->fetchrow_array) {
553 $form->update_balance($dbh, "parts", "onhand", qq|id = $id|, $ship * -1);
558 $query = qq|DELETE FROM inventory
559 WHERE oe_id = $form->{id}|;
560 $dbh->do($query) || $form->dberror($query);
562 # delete status entries
563 $query = qq|DELETE FROM status
564 WHERE trans_id = $form->{id}|;
565 $dbh->do($query) || $form->dberror($query);
568 $query = qq|DELETE FROM oe
569 WHERE id = $form->{id}|;
570 $dbh->do($query) || $form->dberror($query);
572 # delete individual entries
573 $query = qq|DELETE FROM orderitems
574 WHERE trans_id = $form->{id}|;
575 $dbh->do($query) || $form->dberror($query);
577 $query = qq|DELETE FROM shipto
578 WHERE trans_id = $form->{id}|;
579 $dbh->do($query) || $form->dberror($query);
581 my $rc = $dbh->commit;
585 foreach $spoolfile (@spoolfiles) {
586 unlink "$spool/$spoolfile" if $spoolfile;
590 $main::lxdebug->leave_sub();
596 $main::lxdebug->enter_sub();
598 my ($self, $myconfig, $form) = @_;
600 # connect to database
601 my $dbh = $form->dbconnect_noauto($myconfig);
605 # translate the ids (given by id_# and trans_id_#) into one array of ids, so we can join them later
606 map { push @ids, $form->{"trans_id_$_"} if ($form->{"id_$_"}) } (1 .. $form->{"rowcount"});
608 # if called in multi id mode, and still only got one id, switch back to single id
609 if ($form->{"rowcount"} and $#ids == 0) {
610 $form->{"id"} = $ids[0];
616 # get default accounts and last order number
617 $query = qq|SELECT (SELECT c.accno FROM chart c
618 WHERE d.inventory_accno_id = c.id) AS inventory_accno,
619 (SELECT c.accno FROM chart c
620 WHERE d.income_accno_id = c.id) AS income_accno,
621 (SELECT c.accno FROM chart c
622 WHERE d.expense_accno_id = c.id) AS expense_accno,
623 (SELECT c.accno FROM chart c
624 WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
625 (SELECT c.accno FROM chart c
626 WHERE d.fxloss_accno_id = c.id) AS fxloss_accno,
630 $query = qq|SELECT (SELECT c.accno FROM chart c
631 WHERE d.inventory_accno_id = c.id) AS inventory_accno,
632 (SELECT c.accno FROM chart c
633 WHERE d.income_accno_id = c.id) AS income_accno,
634 (SELECT c.accno FROM chart c
635 WHERE d.expense_accno_id = c.id) AS expense_accno,
636 (SELECT c.accno FROM chart c
637 WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
638 (SELECT c.accno FROM chart c
639 WHERE d.fxloss_accno_id = c.id) AS fxloss_accno,
640 d.curr AS currencies,
641 current_date AS transdate, current_date AS reqdate
644 my $sth = $dbh->prepare($query);
645 $sth->execute || $form->dberror($query);
647 my $ref = $sth->fetchrow_hashref(NAME_lc);
648 map { $form->{$_} = $ref->{$_} } keys %$ref;
651 ($form->{currency}) = split /:/, $form->{currencies};
653 if ($form->{id} or @ids) {
655 # retrieve order for single id
656 # NOTE: this query is intended to fetch all information only ONCE.
657 # so if any of these infos is important (or even different) for any item,
658 # it will be killed out and then has to be fetched from the item scope query further down
659 $query = qq|SELECT o.cp_id, o.ordnumber, o.transdate, o.reqdate,
660 o.taxincluded, o.shippingpoint, o.shipvia, o.notes, o.intnotes,
661 o.curr AS currency, e.name AS employee, o.employee_id,
662 o.$form->{vc}_id, cv.name AS $form->{vc}, o.amount AS invtotal,
663 o.closed, o.reqdate, o.quonumber, o.department_id, o.cusordnumber,
664 d.description AS department
666 JOIN $form->{vc} cv ON (o.$form->{vc}_id = cv.id)
667 LEFT JOIN employee e ON (o.employee_id = e.id)
668 LEFT JOIN department d ON (o.department_id = d.id)
670 ? qq|WHERE o.id = $form->{id}|
671 : qq|WHERE o.id IN (|.join(', ', @ids).qq|)|
674 #$main::lxdebug->message(0, $query);
676 $sth = $dbh->prepare($query);
677 $sth->execute || $form->dberror($query);
679 $ref = $sth->fetchrow_hashref(NAME_lc);
680 map { $form->{$_} = $ref->{$_} } keys %$ref;
682 # destroy all entries for multiple ids that yield different information
683 while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
684 map { undef $form->{$_} if ($ref->{$_} ne $form->{$_}) } keys %$ref;
687 # if not given, fill transdate with current_date
688 $form->{transdate} = $form->current_date($myconfig) unless $form->{transdate};
692 # shipto and pinted/mailed/queued status makes only sense for single id retrieve
694 $query = qq|SELECT s.* FROM shipto s
695 WHERE s.trans_id = $form->{id}|;
696 $sth = $dbh->prepare($query);
697 $sth->execute || $form->dberror($query);
699 $ref = $sth->fetchrow_hashref(NAME_lc);
700 map { $form->{$_} = $ref->{$_} } keys %$ref;
703 # get printed, emailed and queued
704 $query = qq|SELECT s.printed, s.emailed, s.spoolfile, s.formname
706 WHERE s.trans_id = $form->{id}|;
707 $sth = $dbh->prepare($query);
708 $sth->execute || $form->dberror($query);
710 while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
711 $form->{printed} .= "$ref->{formname} " if $ref->{printed};
712 $form->{emailed} .= "$ref->{formname} " if $ref->{emailed};
713 $form->{queued} .= "$ref->{formname} $ref->{spoolfile} " if $ref->{spoolfile};
716 map { $form->{$_} =~ s/ +$//g } qw(printed emailed queued);
719 my %oid = ('Pg' => 'oid',
720 'Oracle' => 'rowid');
722 # retrieve individual items
723 # this query looks up all information about the items
724 # stuff different from the whole will not be overwritten, but saved with a suffix.
725 $query = qq|SELECT o.id AS orderitems_id,
726 c1.accno AS inventory_accno,
727 c2.accno AS income_accno,
728 c3.accno AS expense_accno,
729 oe.ordnumber, oe.transdate, oe.cusordnumber,
730 p.partnumber, p.assembly, o.description, o.qty,
731 o.sellprice, o.parts_id AS id, o.unit, o.discount, p.bin, p.notes AS partnotes,
732 o.reqdate, o.project_id, o.serialnumber, o.ship,
734 pg.partsgroup, o.pricegroup_id, (SELECT pricegroup FROM pricegroup WHERE id=o.pricegroup_id) as pricegroup
736 JOIN parts p ON (o.parts_id = p.id)
737 JOIN oe ON (o.trans_id = oe.id)
738 LEFT JOIN chart c1 ON (p.inventory_accno_id = c1.id)
739 LEFT JOIN chart c2 ON (p.income_accno_id = c2.id)
740 LEFT JOIN chart c3 ON (p.expense_accno_id = c3.id)
741 LEFT JOIN project pr ON (o.project_id = pr.id)
742 LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
744 ? qq|WHERE o.trans_id = $form->{id}|
745 : qq|WHERE o.trans_id IN (|.join(", ", @ids).qq|)|
747 ORDER BY o.$oid{$myconfig->{dbdriver}}|;
749 $sth = $dbh->prepare($query);
750 $sth->execute || $form->dberror($query);
752 while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
754 #set expense_accno=inventory_accno if they are different => bilanz
756 ($ref->{expense_accno} != $ref->{inventory_accno})
757 ? $ref->{inventory_accno}
758 : $ref->{expense_accno};
760 # get tax rates and description
762 ($form->{vc} eq "customer") ? $ref->{income_accno} : $vendor_accno;
763 $query = qq|SELECT c.accno, c.description, t.rate, t.taxnumber
765 WHERE c.id=t.chart_id AND t.taxkey in (SELECT taxkey_id from chart where accno = '$accno_id')
767 $stw = $dbh->prepare($query);
768 $stw->execute || $form->dberror($query);
769 $ref->{taxaccounts} = "";
770 while ($ptr = $stw->fetchrow_hashref(NAME_lc)) {
772 # if ($customertax{$ref->{accno}}) {
773 $ref->{taxaccounts} .= "$ptr->{accno} ";
774 if (!($form->{taxaccounts} =~ /$ptr->{accno}/)) {
775 $form->{"$ptr->{accno}_rate"} = $ptr->{rate};
776 $form->{"$ptr->{accno}_description"} = $ptr->{description};
777 $form->{"$ptr->{accno}_taxnumber"} = $ptr->{taxnumber};
778 $form->{taxaccounts} .= "$ptr->{accno} ";
783 chop $ref->{taxaccounts};
784 push @{ $form->{form_details} }, $ref;
792 $form->lastname_used($dbh, $myconfig, $form->{vc})
793 unless $form->{"$form->{vc}_id"};
797 $form->{exchangerate} =
798 $form->get_exchangerate($dbh, $form->{currency}, $form->{transdate},
799 ($form->{vc} eq 'customer') ? "buy" : "sell");
801 if ($form->{webdav}) {
802 &webdav_folder($myconfig, $form);
805 my $rc = $dbh->commit;
808 $main::lxdebug->leave_sub();
814 $main::lxdebug->enter_sub();
816 my ($self, $myconfig, $form) = @_;
818 # connect to database
819 my $dbh = $form->dbconnect($myconfig);
827 my %oid = ('Pg' => 'oid',
828 'Oracle' => 'rowid');
830 # sort items by partsgroup
831 for $i (1 .. $form->{rowcount}) {
833 if ($form->{"partsgroup_$i"} && $form->{groupitems}) {
834 $form->format_string("partsgroup_$i");
835 $partsgroup = $form->{"partsgroup_$i"};
837 push @partsgroup, [$i, $partsgroup];
840 # if there is a warehouse limit picking
841 if ($form->{warehouse_id} && $form->{formname} =~ /(pick|packing)_list/) {
843 # run query to check for inventory
844 $query = qq|SELECT sum(i.qty) AS qty
847 AND i.warehouse_id = ?|;
848 $sth = $dbh->prepare($query) || $form->dberror($query);
850 for $i (1 .. $form->{rowcount}) {
851 $sth->execute($form->{"id_$i"}, $form->{warehouse_id}) || $form->dberror;
853 ($qty) = $sth->fetchrow_array;
856 $form->{"qty_$i"} = 0 if $qty == 0;
858 if ($form->parse_amount($myconfig, $form->{"ship_$i"}) > $qty) {
859 $form->{"ship_$i"} = $form->format_amount($myconfig, $qty);
865 foreach $item (sort { $a->[1] cmp $b->[1] } @partsgroup) {
868 if ($item->[1] ne $sameitem) {
869 push(@{ $form->{description} }, qq|$item->[1]|);
870 $sameitem = $item->[1];
872 map { push(@{ $form->{$_} }, "") }
873 qw(runningnumber number qty ship unit bin partnotes serialnumber reqdate sellprice listprice netprice discount linetotal);
876 $form->{"qty_$i"} = $form->parse_amount($myconfig, $form->{"qty_$i"});
878 if ($form->{"qty_$i"} != 0) {
880 # add number, description and qty to $form->{number}, ....
881 push(@{ $form->{runningnumber} }, $i);
882 push(@{ $form->{number} }, qq|$form->{"partnumber_$i"}|);
883 push(@{ $form->{description} }, qq|$form->{"description_$i"}|);
884 push(@{ $form->{qty} },
885 $form->format_amount($myconfig, $form->{"qty_$i"}));
886 push(@{ $form->{ship} },
887 $form->format_amount($myconfig, $form->{"ship_$i"}));
888 push(@{ $form->{unit} }, qq|$form->{"unit_$i"}|);
889 push(@{ $form->{bin} }, qq|$form->{"bin_$i"}|);
890 push(@{ $form->{"partnotes"} }, qq|$form->{"partnotes_$i"}|);
891 push(@{ $form->{serialnumber} }, qq|$form->{"serialnumber_$i"}|);
892 push(@{ $form->{reqdate} }, qq|$form->{"reqdate_$i"}|);
894 push(@{ $form->{sellprice} }, $form->{"sellprice_$i"});
896 push(@{ $form->{listprice} }, $form->{"listprice_$i"});
898 my $sellprice = $form->parse_amount($myconfig, $form->{"sellprice_$i"});
899 my ($dec) = ($sellprice =~ /\.(\d+)/);
901 my $decimalplaces = ($dec > 2) ? $dec : 2;
905 $sellprice * $form->parse_amount($myconfig,
906 $form->{"discount_$i"}) / 100,
909 # keep a netprice as well, (sellprice - discount)
910 $form->{"netprice_$i"} = $sellprice - $discount;
913 $form->round_amount($form->{"qty_$i"} * $form->{"netprice_$i"}, 2);
915 push(@{ $form->{netprice} },
916 ($form->{"netprice_$i"} != 0)
917 ? $form->format_amount(
918 $myconfig, $form->{"netprice_$i"},
925 ? $form->format_amount($myconfig, $discount * -1, $decimalplaces)
927 $linetotal = ($linetotal != 0) ? $linetotal : " ";
929 push(@{ $form->{discount} }, $discount);
931 $form->{ordtotal} += $linetotal;
933 push(@{ $form->{linetotal} },
934 $form->format_amount($myconfig, $linetotal, 2));
936 my ($taxamount, $taxbase);
939 map { $taxrate += $form->{"${_}_rate"} } split / /,
940 $form->{"taxaccounts_$i"};
942 if ($form->{taxincluded}) {
945 $taxamount = $linetotal * $taxrate / (1 + $taxrate);
946 $taxbase = $linetotal / (1 + $taxrate);
948 $taxamount = $linetotal * $taxrate;
949 $taxbase = $linetotal;
952 if ($taxamount != 0) {
953 foreach my $item (split / /, $form->{"taxaccounts_$i"}) {
954 $taxaccounts{$item} +=
955 $taxamount * $form->{"${item}_rate"} / $taxrate;
956 $taxbase{$item} += $taxbase;
960 $tax_rate = $taxrate*100;
961 push(@{ $form->{tax_rate} }, qq|$tax_rate|);
963 if ($form->{"assembly_$i"}) {
966 # get parts and push them onto the stack
968 if ($form->{groupitems}) {
970 qq|ORDER BY pg.partsgroup, a.$oid{$myconfig->{dbdriver}}|;
972 $sortorder = qq|ORDER BY a.$oid{$myconfig->{dbdriver}}|;
975 $query = qq|SELECT p.partnumber, p.description, p.unit, a.qty,
978 JOIN parts p ON (a.parts_id = p.id)
979 LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
981 AND a.id = '$form->{"id_$i"}'
983 $sth = $dbh->prepare($query);
984 $sth->execute || $form->dberror($query);
986 while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
987 if ($form->{groupitems} && $ref->{partsgroup} ne $sameitem) {
988 map { push(@{ $form->{$_} }, "") }
989 qw(runningnumber ship bin serialnumber number unit bin qty reqdate sellprice listprice netprice discount linetotal);
990 $sameitem = ($ref->{partsgroup}) ? $ref->{partsgroup} : "--";
991 push(@{ $form->{description} }, $sameitem);
994 push(@{ $form->{description} },
995 $form->format_amount($myconfig, $ref->{qty} * $form->{"qty_$i"}
997 . qq|, $ref->{partnumber}, $ref->{description}|);
999 map { push(@{ $form->{$_} }, "") }
1000 qw(number unit qty runningnumber ship bin serialnumber reqdate sellprice listprice netprice discount linetotal);
1010 foreach $item (sort keys %taxaccounts) {
1011 if ($form->round_amount($taxaccounts{$item}, 2) != 0) {
1012 push(@{ $form->{taxbase} },
1013 $form->format_amount($myconfig, $taxbase{$item}, 2));
1015 $tax += $taxamount = $form->round_amount($taxaccounts{$item}, 2);
1017 push(@{ $form->{tax} }, $form->format_amount($myconfig, $taxamount, 2));
1018 push(@{ $form->{taxdescription} }, $form->{"${item}_description"});
1019 push(@{ $form->{taxrate} },
1020 $form->format_amount($myconfig, $form->{"${item}_rate"} * 100));
1021 push(@{ $form->{taxnumber} }, $form->{"${item}_taxnumber"});
1025 $form->{subtotal} = $form->format_amount($myconfig, $form->{ordtotal}, 2);
1027 ($form->{taxincluded}) ? $form->{ordtotal} : $form->{ordtotal} + $tax;
1030 $form->{quototal} = $form->{ordtotal} =
1031 $form->format_amount($myconfig, $form->{ordtotal}, 2);
1033 # myconfig variables
1034 map { $form->{$_} = $myconfig->{$_} }
1035 (qw(company address tel fax signature businessnumber));
1036 $form->{username} = $myconfig->{name};
1040 $main::lxdebug->leave_sub();
1043 sub project_description {
1044 $main::lxdebug->enter_sub();
1046 my ($self, $dbh, $id) = @_;
1048 my $query = qq|SELECT p.description
1051 my $sth = $dbh->prepare($query);
1052 $sth->execute || $form->dberror($query);
1054 ($_) = $sth->fetchrow_array;
1058 $main::lxdebug->leave_sub();
1063 sub get_warehouses {
1064 $main::lxdebug->enter_sub();
1066 my ($self, $myconfig, $form) = @_;
1068 my $dbh = $form->dbconnect($myconfig);
1071 my $query = qq|SELECT id, description
1074 my $sth = $dbh->prepare($query);
1075 $sth->execute || $form->dberror($query);
1077 while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1078 push @{ $form->{all_warehouses} }, $ref;
1084 $main::lxdebug->leave_sub();
1087 sub save_inventory {
1088 $main::lxdebug->enter_sub();
1090 my ($self, $myconfig, $form) = @_;
1092 my ($null, $warehouse_id) = split /--/, $form->{warehouse};
1096 ($null, $employee_id) = split /--/, $form->{employee};
1098 my $ml = ($form->{type} eq 'ship_order') ? -1 : 1;
1100 my $dbh = $form->dbconnect_noauto($myconfig);
1106 $query = qq|SELECT o.serialnumber, o.ship
1108 WHERE o.trans_id = ?
1111 $sth = $dbh->prepare($query) || $form->dberror($query);
1113 $query = qq|SELECT sum(i.qty)
1115 WHERE i.parts_id = ?
1116 AND i.warehouse_id = ?|;
1117 $wth = $dbh->prepare($query) || $form->dberror($query);
1119 for my $i (1 .. $form->{rowcount} - 1) {
1122 (abs($form->{"ship_$i"}) > abs($form->{"qty_$i"}))
1124 : $form->{"ship_$i"};
1126 if ($warehouse_id && $form->{type} eq 'ship_order') {
1128 $wth->execute($form->{"id_$i"}, $warehouse_id) || $form->dberror;
1130 ($qty) = $wth->fetchrow_array;
1141 $query = qq|INSERT INTO inventory (parts_id, warehouse_id,
1142 qty, oe_id, orderitems_id, shippingdate, employee_id)
1143 VALUES ($form->{"id_$i"}, $warehouse_id,
1144 $ship, $form->{"id"},
1145 $form->{"orderitems_id_$i"}, '$form->{shippingdate}',
1147 $dbh->do($query) || $form->dberror($query);
1149 # add serialnumber, ship to orderitems
1150 $sth->execute($form->{id}, $form->{"orderitems_id_$i"})
1152 ($serialnumber, $ship) = $sth->fetchrow_array;
1155 $serialnumber .= " " if $serialnumber;
1156 $serialnumber .= qq|$form->{"serialnumber_$i"}|;
1157 $ship += $form->{"ship_$i"};
1159 $query = qq|UPDATE orderitems SET
1160 serialnumber = '$serialnumber',
1162 WHERE trans_id = $form->{id}
1163 AND id = $form->{"orderitems_id_$i"}|;
1164 $dbh->do($query) || $form->dberror($query);
1166 # update order with ship via
1167 $query = qq|UPDATE oe SET
1168 shippingpoint = '$form->{shippingpoint}',
1169 shipvia = '$form->{shipvia}'
1170 WHERE id = $form->{id}|;
1171 $dbh->do($query) || $form->dberror($query);
1173 # update onhand for parts
1174 $form->update_balance($dbh, "parts", "onhand",
1175 qq|id = $form->{"id_$i"}|,
1176 $form->{"ship_$i"} * $ml);
1181 my $rc = $dbh->commit;
1184 $main::lxdebug->leave_sub();
1190 $main::lxdebug->enter_sub();
1192 my ($dbh, $form, $ml) = @_;
1194 my $query = qq|SELECT oi.parts_id, oi.ship, p.inventory_accno_id, p.assembly
1196 JOIN parts p ON (p.id = oi.parts_id)
1197 WHERE oi.trans_id = $form->{id}|;
1198 my $sth = $dbh->prepare($query);
1199 $sth->execute || $form->dberror($query);
1201 $query = qq|SELECT sum(p.inventory_accno_id)
1203 JOIN assembly a ON (a.parts_id = p.id)
1205 my $ath = $dbh->prepare($query) || $form->dberror($query);
1209 while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1211 if ($ref->{inventory_accno_id} || $ref->{assembly}) {
1213 # do not update if assembly consists of all services
1214 if ($ref->{assembly}) {
1215 $ath->execute($ref->{parts_id}) || $form->dberror($query);
1217 ($ispa) = $sth->fetchrow_array;
1224 # adjust onhand in parts table
1225 $form->update_balance($dbh, "parts", "onhand",
1226 qq|id = $ref->{parts_id}|,
1227 $ref->{ship} * $ml);
1233 $main::lxdebug->leave_sub();
1237 $main::lxdebug->enter_sub();
1239 my ($dbh, $myconfig, $form) = @_;
1241 my %oid = ('Pg' => 'oid',
1242 'Oracle' => 'rowid');
1244 # increase/reduce qty in inventory table
1245 my $query = qq|SELECT oi.id, oi.parts_id, oi.ship
1247 WHERE oi.trans_id = $form->{id}|;
1248 my $sth = $dbh->prepare($query);
1249 $sth->execute || $form->dberror($query);
1251 $query = qq|SELECT $oid{$myconfig->{dbdriver}} AS oid, qty,
1252 (SELECT SUM(qty) FROM inventory
1253 WHERE oe_id = $form->{id}
1254 AND orderitems_id = ?) AS total
1256 WHERE oe_id = $form->{id}
1257 AND orderitems_id = ?|;
1258 my $ith = $dbh->prepare($query) || $form->dberror($query);
1261 my $ml = ($form->{type} =~ /(ship|sales)_order/) ? -1 : 1;
1263 while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1265 $ith->execute($ref->{id}, $ref->{id}) || $form->dberror($query);
1267 while (my $inv = $ith->fetchrow_hashref(NAME_lc)) {
1269 if (($qty = (($inv->{total} * $ml) - $ref->{ship})) >= 0) {
1270 $qty = $inv->{qty} if ($qty > ($inv->{qty} * $ml));
1272 $form->update_balance($dbh, "inventory", "qty",
1273 qq|$oid{$myconfig->{dbdriver}} = $inv->{oid}|,
1282 # delete inventory entries if qty = 0
1283 $query = qq|DELETE FROM inventory
1284 WHERE oe_id = $form->{id}
1286 $dbh->do($query) || $form->dberror($query);
1288 $main::lxdebug->leave_sub();
1292 $main::lxdebug->enter_sub();
1294 my ($self, $myconfig, $form) = @_;
1296 my ($null, $warehouse_id) = split /--/, $form->{warehouse};
1299 my $dbh = $form->dbconnect($myconfig);
1301 my $query = qq|SELECT p.id, p.partnumber, p.description, p.onhand,
1304 LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
1305 WHERE p.onhand > 0|;
1307 if ($form->{partnumber}) {
1308 $var = $form->like(lc $form->{partnumber});
1310 AND lower(p.partnumber) LIKE '$var'";
1312 if ($form->{description}) {
1313 $var = $form->like(lc $form->{description});
1315 AND lower(p.description) LIKE '$var'";
1317 if ($form->{partsgroup}) {
1318 $var = $form->like(lc $form->{partsgroup});
1320 AND lower(pg.partsgroup) LIKE '$var'";
1323 $sth = $dbh->prepare($query);
1324 $sth->execute || $form->dberror($query);
1326 $query = qq|SELECT sum(i.qty), w.description, w.id
1328 LEFT JOIN warehouse w ON (w.id = i.warehouse_id)
1329 WHERE i.parts_id = ?
1330 AND NOT i.warehouse_id = $warehouse_id
1331 GROUP BY w.description, w.id|;
1332 $wth = $dbh->prepare($query) || $form->dberror($query);
1334 while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
1336 $wth->execute($ref->{id}) || $form->dberror;
1338 while (($qty, $warehouse, $warehouse_id) = $wth->fetchrow_array) {
1339 push @{ $form->{all_inventory} },
1340 { 'id' => $ref->{id},
1341 'partnumber' => $ref->{partnumber},
1342 'description' => $ref->{description},
1343 'partsgroup' => $ref->{partsgroup},
1345 'warehouse_id' => $warehouse_id,
1346 'warehouse' => $warehouse }
1356 @{ $form->{all_inventory} } =
1357 sort { $a->{ $form->{sort} } cmp $b->{ $form->{sort} } }
1358 @{ $form->{all_inventory} };
1360 $main::lxdebug->leave_sub();
1362 return @{ $form->{all_inventory} };
1366 $main::lxdebug->enter_sub();
1368 my ($self, $myconfig, $form) = @_;
1370 my $dbh = $form->dbconnect_noauto($myconfig);
1372 my $query = qq|INSERT INTO inventory
1373 (warehouse_id, parts_id, qty, shippingdate, employee_id)
1374 VALUES (?, ?, ?, ?, ?)|;
1375 $sth = $dbh->prepare($query) || $form->dberror($query);
1377 $form->get_employee($dbh);
1382 $shippingdate = "$a[5]-$a[4]-$a[3]";
1384 for my $i (1 .. $form->{rowcount}) {
1385 $qty = $form->parse_amount($myconfig, $form->{"transfer_$i"});
1387 $qty = $form->{"qty_$i"} if ($qty > $form->{"qty_$i"});
1392 $sth->execute($form->{warehouse_id}, $form->{"id_$i"}, $qty,
1393 $shippingdate, $form->{employee_id})
1399 $sth->execute($form->{"warehouse_id_$i"},
1400 $form->{"id_$i"}, $qty * -1, $shippingdate,
1401 $form->{employee_id})
1408 my $rc = $dbh->commit;
1411 $main::lxdebug->leave_sub();
1417 $main::lxdebug->enter_sub();
1419 my ($myconfig, $form) = @_;
1422 $path = "webdav/angebote/" . $form->{quonumber}, last SWITCH
1423 if ($form->{type} eq "sales_quotation");
1424 $path = "webdav/bestellungen/" . $form->{ordnumber}, last SWITCH
1425 if ($form->{type} eq "sales_order");
1426 $path = "webdav/anfragen/" . $form->{quonumber}, last SWITCH
1427 if ($form->{type} eq "request_quotation");
1428 $path = "webdav/lieferantenbestellungen/" . $form->{ordnumber}, last SWITCH
1429 if ($form->{type} eq "purchase_order");
1433 mkdir($path, 0770) or die "can't make directory $!\n";
1437 foreach $file (@files) {
1438 $file =~ /\/([^\/]*)$/;
1440 $ENV{'SCRIPT_NAME'} =~ /\/([^\/]*)\//;
1442 $link = "http://" . $ENV{'SERVER_NAME'} . "/" . $lxerp . "/" . $file;
1443 $form->{WEBDAV}{$fname} = $link;
1448 $main::lxdebug->leave_sub();