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) 1998-2002
11 # Author: Dieter Simader
12 # Email: dsimader@sql-ledger.org
13 # Web: http://www.sql-ledger.org
15 # Contributors: Reed White <alta@alta-research.com>
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 # customer/vendor module
33 #======================================================================
35 # $locale->text('Customers')
36 # $locale->text('Vendors')
37 # $locale->text('Add Customer')
38 # $locale->text('Add Vendor')
45 require "bin/mozilla/common.pl";
52 $lxdebug->enter_sub();
54 $form->{title} = "Add";
57 "$form->{script}?action=add&db=$form->{db}&path=$form->{path}&login=$form->{login}&password=$form->{password}"
58 unless $form->{callback};
60 CT->populate_drop_down_boxes(\%myconfig, \%$form);
65 $lxdebug->leave_sub();
69 $lxdebug->enter_sub();
71 my $vc_business_type = $form->{db} eq "customer" ?
72 $locale->text("Customer type") : $locale->text("Vendor type");
74 $form->get_lists("business_types" => "ALL_BUSINESS_TYPES");
75 my (%labels, @values);
78 if (scalar(@{ $form->{ALL_BUSINESS_TYPES} }) != 0) {
80 foreach my $item (@{ $form->{ALL_BUSINESS_TYPES} }) {
81 push(@values, $item->{id});
82 $labels{$item->{id}} = $item->{description};
87 <th align="right" nowrap>${vc_business_type}</th>
89 . NTI($cgi->popup_menu('-name' => 'business_id', '-values' => \@values,
90 '-labels' => \%labels))
96 $label = ucfirst $form->{db};
97 $form->{title} = $locale->text($label . "s");
104 <form method=post action=$form->{script}>
106 <input type=hidden name=db value=$form->{db}>
110 <th class=listtop>$form->{title}</th>
117 <th align=right nowrap>| . $locale->text($label . ' Number') . qq|</th>
118 <td><input name=$form->{db}number size=35></td>
121 <th align=right nowrap>| . $locale->text('Company Name') . qq|</th>
122 <td><input name=name size=35></td>
125 <th align=right nowrap>| . $locale->text('Contact') . qq|</th>
126 <td><input name=contact size=35></td>
129 <th align=right nowrap>| . $locale->text('E-mail') . qq|</th>
130 <td><input name=email size=35></td>
135 <td><input name=status class=radio type=radio value=all checked> |
136 . $locale->text('All') . qq|
137 <input name=status class=radio type=radio value=orphaned> |
138 . $locale->text('Orphaned') . qq|</td>
142 <td><input name="obsolete" class="radio" type="radio" value="all"> |
143 . $locale->text('All') . qq|
144 <input name="obsolete" class="radio" type="radio" value="Y"> |
145 . $locale->text('Obsolete') . qq|
146 <input name="obsolete" class="radio" type="radio" value="N" checked> |
147 . $locale->text('Not obsolete') . qq|</td>
150 <th align=right nowrap>| . $locale->text('Include in Report') . qq|</th>
154 <td><input name="l_id" type=checkbox class=checkbox value=Y> |
155 . $locale->text('ID') . qq|</td>
156 <td><input name="l_$form->{db}number" type=checkbox class=checkbox value=Y> |
157 . $locale->text($label . ' Number') . qq|</td>
158 <td><input name="l_name" type=checkbox class=checkbox value=Y checked> |
159 . $locale->text('Company Name') . qq|</td>
160 <td><input name="l_address" type=checkbox class=checkbox value=Y> |
161 . $locale->text('Address') . qq|</td>
164 <td><input name="l_contact" type=checkbox class=checkbox value=Y checked> |
165 . $locale->text('Contact') . qq|</td>
166 <td><input name="l_phone" type=checkbox class=checkbox value=Y checked> |
167 . $locale->text('Phone') . qq|</td>
168 <td><input name="l_fax" type=checkbox class=checkbox value=Y> |
169 . $locale->text('Fax') . qq|</td>
170 <td><input name="l_email" type=checkbox class=checkbox value=Y checked> |
171 . $locale->text('E-mail') . qq|</td>
174 <td><input name="l_taxnumber" type=checkbox class=checkbox value=Y> |
175 . $locale->text('Tax Number') . qq|</td>
176 <td><input name="l_sic_code" type=checkbox class=checkbox value=Y> |
177 . $locale->text('SIC') . qq|</td>
178 <td><input name="l_business" type=checkbox class=checkbox value=Y> |
179 . $vc_business_type . qq|</td>
182 <td><input name="l_invnumber" type=checkbox class=checkbox value=Y> |
183 . $locale->text('Invoices') . qq|</td>
184 <td><input name="l_ordnumber" type=checkbox class=checkbox value=Y> |
185 . $locale->text('Orders') . qq|</td>
186 <td><input name="l_quonumber" type=checkbox class=checkbox value=Y> |
187 . $locale->text('Quotations') . qq|</td>
196 <td><hr size=3 noshade></td>
200 <input type=hidden name=nextsub value=list_names>
202 <input type=hidden name=path value=$form->{path}>
203 <input type=hidden name=login value=$form->{login}>
204 <input type=hidden name=password value=$form->{password}>
207 <input type=submit class=submit name=action value="|
208 . $locale->text('Continue') . qq|">
214 $lxdebug->leave_sub();
217 sub search_delivery {
218 $lxdebug->enter_sub();
220 $label = ucfirst $form->{db};
221 $form->{title} = $locale->text($label . "s");
228 <form method=post action=$form->{script}>
230 <input type=hidden name=db value=$form->{db}>
234 <th class=listtop>$form->{title}</th>
241 <th align=right nowrap>| . $locale->text($label . ' Number') . qq|</th>
242 <td><input name=$form->{db}number size=35></td>
245 <th align=right nowrap>| . $locale->text('Company Name') . qq|</th>
246 <td><input name=name size=35></td>
249 <th align=right nowrap>| . $locale->text('Contact') . qq|</th>
250 <td><input name=contact size=35></td>
253 <th align=right nowrap>| . $locale->text('E-mail') . qq|</th>
254 <td><input name=email size=35></td>
258 <td><input name=status class=radio type=radio value=all checked> |
259 . $locale->text('All') . qq|
260 <input name=status class=radio type=radio value=orphaned> |
261 . $locale->text('Orphaned') . qq|</td>
264 <th align=right nowrap>| . $locale->text('Include in Report') . qq|</th>
268 <td><input name="l_id" type=checkbox class=checkbox value=Y> |
269 . $locale->text('ID') . qq|</td>
270 <td><input name="l_$form->{db}number" type=checkbox class=checkbox value=Y> |
271 . $locale->text($label . ' Number') . qq|</td>
272 <td><input name="l_name" type=checkbox class=checkbox value=Y checked> |
273 . $locale->text('Company Name') . qq|</td>
274 <td><input name="l_address" type=checkbox class=checkbox value=Y> |
275 . $locale->text('Address') . qq|</td>
278 <td><input name="l_contact" type=checkbox class=checkbox value=Y checked> |
279 . $locale->text('Contact') . qq|</td>
280 <td><input name="l_phone" type=checkbox class=checkbox value=Y checked> |
281 . $locale->text('Phone') . qq|</td>
282 <td><input name="l_fax" type=checkbox class=checkbox value=Y> |
283 . $locale->text('Fax') . qq|</td>
284 <td><input name="l_email" type=checkbox class=checkbox value=Y checked> |
285 . $locale->text('E-mail') . qq|</td>
288 <td><input name="l_taxnumber" type=checkbox class=checkbox value=Y> |
289 . $locale->text('Tax Number') . qq|</td>
290 <td><input name="l_sic_code" type=checkbox class=checkbox value=Y> |
291 . $locale->text('SIC') . qq|</td>
292 <td><input name="l_business" type=checkbox class=checkbox value=Y> |
293 . $locale->text('Type of Business') . qq|</td>
296 <td><input name="l_invnumber" type=checkbox class=checkbox value=Y> |
297 . $locale->text('Invoices') . qq|</td>
298 <td><input name="l_ordnumber" type=checkbox class=checkbox value=Y> |
299 . $locale->text('Orders') . qq|</td>
300 <td><input name="l_quonumber" type=checkbox class=checkbox value=Y> |
301 . $locale->text('Quotations') . qq|</td>
310 <td><hr size=3 noshade></td>
314 <input type=hidden name=nextsub value=list_names>
316 <input type=hidden name=path value=$form->{path}>
317 <input type=hidden name=login value=$form->{login}>
318 <input type=hidden name=password value=$form->{password}>
321 <input type=submit class=submit name=action value="|
322 . $locale->text('Continue') . qq|">
328 $lxdebug->leave_sub();
332 $lxdebug->enter_sub();
334 CT->search(\%myconfig, \%$form);
337 "$form->{script}?action=list_names&db=$form->{db}&path=$form->{path}&login=$form->{login}&password=$form->{password}&status=$form->{status}&obsolete=$form->{obsolete}";
341 $form->sort_columns(id, name,
342 "$form->{db}number", address,
347 invnumber, ordnumber,
350 foreach $item (@columns) {
351 if ($form->{"l_$item"} eq "Y") {
352 push @column_index, $item;
354 # add column to href and callback
355 $callback .= "&l_$item=Y";
356 $href .= "&l_$item=Y";
360 ($form->{db} eq "customer")
361 ? $locale->text('Customer Number')
362 : $locale->text('Vendor Number');
364 if ($form->{status} eq 'all') {
365 $option = $locale->text('All');
367 if ($form->{status} eq 'orphaned') {
368 $option .= $locale->text('Orphaned');
371 $callback .= "&name=" . $form->escape($form->{name}, 1);
372 $href .= "&name=" . $form->escape($form->{name});
373 $option .= "\n<br>" . $locale->text('Name') . " : $form->{name}";
375 if ($form->{contact}) {
376 $callback .= "&contact=" . $form->escape($form->{contact}, 1);
377 $href .= "&contact=" . $form->escape($form->{contact});
378 $option .= "\n<br>" . $locale->text('Contact') . " : $form->{contact}";
380 if ($form->{"$form->{db}number"}) {
382 qq|&$form->{db}number=| . $form->escape($form->{"$form->{db}number"}, 1);
384 "&$form->{db}number=" . $form->escape($form->{"$form->{db}number"});
386 "\n<br>" . $locale->text('Number') . qq| : $form->{"$form->{db}number"}|;
388 if ($form->{email}) {
389 $callback .= "&email=" . $form->escape($form->{email}, 1);
390 $href .= "&email=" . $form->escape($form->{email});
391 $option .= "\n<br>" . $locale->text('E-mail') . " : $form->{email}";
394 $form->{callback} = "$callback&sort=$form->{sort}";
395 $callback = $form->escape($form->{callback});
398 qq|<th class=listheading>| . $locale->text('ID') . qq|</th>|;
399 $column_header{"$form->{db}number"} =
400 qq|<th><a class=listheading href=$href&sort=$form->{db}number>$number</a></th>|;
401 $column_header{name} =
402 qq|<th><a class=listheading href=$href&sort=name>|
403 . $locale->text('Name')
405 $column_header{address} =
406 qq|<th><a class=listheading href=$href&sort=address>|
407 . $locale->text('Address')
409 $column_header{contact} =
410 qq|<th><a class=listheading href=$href&sort=contact>|
411 . $locale->text('Contact')
413 $column_header{phone} =
414 qq|<th><a class=listheading href=$href&sort=phone>|
415 . $locale->text('Phone')
417 $column_header{fax} =
418 qq|<th><a class=listheading href=$href&sort=fax>|
419 . $locale->text('Fax')
421 $column_header{email} =
422 qq|<th><a class=listheading href=$href&sort=email>|
423 . $locale->text('E-mail')
426 qq|<th><a class=listheading href=$href&sort=cc>|
427 . $locale->text('Cc')
430 $column_header{taxnumber} =
431 qq|<th><a class=listheading href=$href&sort=taxnumber>|
432 . $locale->text('Tax Number')
434 $column_header{sic_code} =
435 qq|<th><a class=listheading href=$href&sort=sic_code>|
436 . $locale->text('SIC')
438 $column_header{business} =
439 qq|<th><a class=listheading href=$href&sort=business>|
440 . $locale->text('Type of Business')
443 $column_header{invnumber} =
444 qq|<th><a class=listheading href=$href&sort=invnumber>|
445 . $locale->text('Invoice')
447 $column_header{ordnumber} =
448 qq|<th><a class=listheading href=$href&sort=ordnumber>|
449 . $locale->text('Order')
451 $column_header{quonumber} =
452 qq|<th><a class=listheading href=$href&sort=quonumber>|
453 . $locale->text('Quotation')
456 $label = ucfirst $form->{db} . "s";
457 $form->{title} = $locale->text($label);
466 <th class=listtop>$form->{title}</th>
475 <tr class=listheading>
478 map { print "$column_header{$_}\n" } @column_index;
484 $ordertype = ($form->{db} eq 'customer') ? 'sales_order' : 'purchase_order';
486 ($form->{db} eq 'customer') ? 'sales_quotation' : 'request_quotation';
488 foreach $ref (@{ $form->{CT} }) {
490 if ($ref->{id} eq $sameid) {
491 map { $column_data{$_} = "<td> </td>" } @column_index;
493 map { $column_data{$_} = "<td>$ref->{$_} </td>" } @column_index;
495 map { $column_data{$_} = "<td>$ref->{$_} </td>" }
496 (invnumber, ordnumber, quonumber);
499 "<td align=left><a href=$form->{script}?action=edit&id=$ref->{id}&db=$form->{db}&path=$form->{path}&login=$form->{login}&password=$form->{password}&status=$form->{status}&callback=$callback>$ref->{name} </td>";
502 $email = $ref->{email};
503 $email =~ s/</\</;
504 $email =~ s/>/\>/;
506 $column_data{email} =
507 qq|<td><a href="mailto:$ref->{email}">$email</a></td>|;
512 if ($ref->{formtype} eq 'invoice') {
513 $column_data{invnumber} =
514 "<td><a href=$ref->{module}.pl?action=edit&id=$ref->{invid}&path=$form->{path}&login=$form->{login}&password=$form->{password}&callback=$callback>$ref->{invnumber} </td>";
517 if ($ref->{formtype} eq 'order') {
518 $column_data{ordnumber} =
519 "<td><a href=$ref->{module}.pl?action=edit&id=$ref->{invid}&type=$ordertype&path=$form->{path}&login=$form->{login}&password=$form->{password}&callback=$callback>$ref->{ordnumber} </td>";
522 if ($ref->{formtype} eq 'quotation') {
523 $column_data{quonumber} =
524 "<td><a href=$ref->{module}.pl?action=edit&id=$ref->{invid}&type=$quotationtype&path=$form->{path}&login=$form->{login}&password=$form->{password}&callback=$callback>$ref->{quonumber} </td>";
533 map { print "$column_data{$_}\n" } @column_index;
539 $sameid = $ref->{id};
548 <td><hr size=3 noshade></td>
553 <form method=post action=$form->{script}>
555 <input name=callback type=hidden value="$form->{callback}">
556 <input name=db type=hidden value=$form->{db}>
558 <input type=hidden name=path value=$form->{path}>
559 <input type=hidden name=login value=$form->{login}>
560 <input type=hidden name=password value=$form->{password}>
562 <input class=submit type=submit name=action value="|
563 . $locale->text('Add') . qq|">
571 $lxdebug->leave_sub();
575 $lxdebug->enter_sub();
577 # show history button
578 $form->{javascript} = qq|<script type=text/javascript src=js/show_history.js></script>|;
579 #/show hhistory button
581 # $locale->text('Edit Customer')
582 # $locale->text('Edit Vendor')
584 CT->get_tuple(\%myconfig, \%$form);
585 CT->populate_drop_down_boxes(\%myconfig, \%$form);
587 # format " into "
588 map { $form->{$_} =~ s/\"/"/g } keys %$form;
590 $form->{title} = "Edit";
593 $form->{discount} *= 100;
598 $lxdebug->leave_sub();
602 $lxdebug->enter_sub();
604 $form->get_lists("employees" => "ALL_SALESMEN",
605 "taxzones" => "ALL_TAXZONES");
607 $form->{taxincluded} = ($form->{taxincluded}) ? "checked" : "";
608 $form->{creditlimit} =
609 $form->format_amount(\%myconfig, $form->{creditlimit}, 0);
610 $form->{discount} = $form->format_amount(\%myconfig, $form->{discount});
612 if ($myconfig{role} eq 'admin') {
615 <th align=right nowrap>| . $locale->text('Bcc') . qq|</th>
616 <td><input name=bcc size=35 value="$form->{bcc}"></td>
620 $form->{obsolete} = "checked" if $form->{obsolete};
622 $lang = qq|<option value=""></option>|;
623 foreach $item (@{ $form->{languages} }) {
624 if ($form->{language_id} eq $item->{id}) {
625 $lang .= qq|<option value="$item->{id}" selected>$item->{description}</option>|;
627 $lang .= qq|<option value="$item->{id}">$item->{description}</option>|;
631 $payment = qq|<option value=""></option>|;
632 foreach $item (@{ $form->{payment_terms} }) {
633 if ($form->{payment_id} eq $item->{id}) {
634 $payment .= qq|<option value="$item->{id}" selected>$item->{description}</option>|;
636 $payment .= qq|<option value="$item->{id}">$item->{description}</option>|;
641 if ($form->{db} eq "customer") {
642 $form->{taxzone_id} = 0;
644 $form->{taxzone_id} = 0;
650 foreach my $item (@{ $form->{"ALL_TAXZONES"} }) {
651 push(@values, $item->{"id"});
652 $labels{$item->{"id"}} = $item->{"description"};
656 <th align=right>| . $locale->text('Steuersatz') . qq|</th>
658 NTI($cgi->popup_menu('-name' => 'taxzone_id', '-default' => $form->{"taxzone_id"},
659 '-values' => \@values, '-labels' => \%labels)) . qq|
664 "$form->{script}?login=$form->{login}&path=$form->{path}&password=$form->{password}&action=get_contact";
666 my $pjx = new CGI::Ajax( 'get_contact' => $get_contact_url );
667 $form->{selectcontact} = "<option value=0></option>";
668 if (@{ $form->{CONTACTS} }) {
669 foreach $item (@{ $form->{CONTACTS} }) {
670 if ($item->{cp_id} == $form->{cp_id}) {
671 $form->{selectcontact} .=
672 qq|<option value=$item->{cp_id} selected>$item->{cp_name}</option>\n|;
674 $form->{selectcontact} .=
675 qq|<option value=$item->{cp_id}>$item->{cp_name}</option>\n|;
680 push(@ { $form->{AJAX} }, $pjx);
681 $ansprechpartner = qq|
683 <th align=right>| . $locale->text('Ansprechpartner') . qq|</th>
684 <td><select id=cp_id name=cp_id onChange="get_contact(['cp_id__' + this.value], ['cp_name', 'cp_greeting', 'cp_title', 'cp_givenname', 'cp_phone1', 'cp_phone2', 'cp_email', 'cp_abteilung', 'cp_fax', 'cp_mobile1', 'cp_mobile2', 'cp_satphone', 'cp_satfax', 'cp_project', 'cp_privatphone', 'cp_privatemail', 'cp_birthday'])">$form->{selectcontact}</select></td>
685 <input type=hidden name=selectcontact value="$form->{selectcontact}">
688 "$form->{script}?login=$form->{login}&path=$form->{path}&password=$form->{password}&action=get_shipto";
690 my $pjy = new CGI::Ajax( 'get_shipto' => $get_shipto_url );
691 $form->{selectshipto} = "<option value=0></option>";
692 $form->{selectshipto} .= "<option value=0>Alle</option>";
693 if (@{ $form->{SHIPTO} }) {
694 foreach $item (@{ $form->{SHIPTO} }) {
695 if ($item->{shipto_id} == $form->{shipto_id}) {
696 $form->{selectshipto} .=
697 "<option value=$item->{shipto_id} selected>$item->{shiptoname} $item->{shiptodepartment_1}\n";
699 $form->{selectshipto} .=
700 "<option value=$item->{shipto_id}>$item->{shiptoname} $item->{shiptodepartment_1}\n";
705 push(@ { $form->{AJAX} }, $pjy);
709 <th align=right>| . $locale->text('Shipping Address') . qq|</th>
710 <td><select id=shipto_id name=shipto_id onChange="get_shipto(['shipto_id__' + this.value], ['shiptoname','shiptodepartment_1', 'shiptodepartment_2','shiptostreet','shiptozipcode','shiptocity','shiptocountry','shiptocontact','shiptophone','shiptofax','shiptoemail'])">$form->{selectshipto}</select></td>
711 <input type=hidden name=selectshipto value="$form->{selectshipto}">
716 "$form->{script}?login=$form->{login}&path=$form->{path}&password=$form->{password}&action=get_delivery";
718 my $pjz = new CGI::Ajax( 'get_delivery' => $get_delivery_url );
720 push(@ { $form->{AJAX} }, $pjz);
724 <th align=right>| . $locale->text('Shipping Address') . qq|</th>
725 <td><select id=delivery_id name=delivery_id onChange="get_delivery(['shipto_id__' + this.value, 'from__' + from.value, 'to__' + to.value, 'id__' + cvid.value, 'db__' + db.value], ['delivery'])">$form->{selectshipto}</select></td>
728 $form->{selectbusiness} = qq|<option>\n|;
730 $form->{selectbusiness} .=
731 qq|<option value=$_->{id}>$_->{description}\n|
732 } @{ $form->{all_business} };
733 if ($form->{business_save}) {
734 $form->{selectbusiness} = $form->{business_save};
736 $form->{selectbusiness} =~
737 s/<option value=$form->{business}>/<option value=$form->{business} selected>/;
739 $label = ucfirst $form->{db};
740 if ($form->{title} eq "Edit") {
741 $form->{title} = $locale->text("$form->{title} $label") . " $form->{name}";
743 $form->{title} = $locale->text("$form->{title} $label");
745 if ($form->{title_save}) {
746 $form->{title} = $form->{title_save};
748 if ($form->{db} eq 'vendor') {
750 <th align=right>| . $locale->text('Kundennummer') . qq|</th>
751 <td><input name=v_customer_id size=10 maxlength=35 value="$form->{v_customer_id}"></td>
755 if ($form->{db} eq 'customer') {
758 <th align=right>| . $locale->text('KNr. beim Kunden') . qq|</th>
759 <td><input name=c_vendor_id size=10 maxlength=35 value="$form->{c_vendor_id}"></td>
764 <th align=right>| . $locale->text('Type of Business') . qq|</th>
765 <td><select name=business>$form->{selectbusiness}</select></td>
770 if ($form->{db} eq "customer") {
771 my (@salesman_values, %salesman_labels);
772 push(@salesman_values, undef);
773 foreach my $item (@{ $form->{ALL_SALESMEN} }) {
774 push(@salesman_values, $item->{id});
775 $salesman_labels{$item->{id}} = $item->{name} ne "" ? $item->{name} : $item->{login};
779 qq| <th align="right">| . $locale->text('Salesman') . qq|</th>
781 NTI($cgi->popup_menu('-name' => 'salesman_id', '-default' => $form->{salesman_id},
782 '-values' => \@salesman_values, '-labels' => \%salesman_labels))
786 ## LINET: Create a drop-down box with all prior titles and greetings.
787 CT->query_titles_and_greetings(\%myconfig, \%$form);
789 $select_title = qq| <select name=selected_cp_title><option></option>|;
790 map({ $select_title .= qq|<option>$_</option>|; } @{ $form->{TITLES} });
791 $select_title .= qq|</select>|;
794 qq| <select name=selected_cp_greeting><option></option>|;
796 { $select_greeting .= qq|<option>$_</option>|; } @{ $form->{GREETINGS} });
797 $select_greeting .= qq|</select>|;
799 $select_company_greeting =
800 qq| <select name=selected_company_greeting><option></option>|;
802 { $select_company_greeting .= qq|<option>$_</option>|; } @{ $form->{COMPANY_GREETINGS} });
803 $select_company_greeting .= qq|</select>|;
806 qq| <select name=selected_cp_abteilung><option></option>|;
808 { $select_department .= qq|<option>$_</option>|; } @{ $form->{DEPARTMENT} });
809 $select_department .= qq|</select>|;
812 if ($form->{db} eq 'customer') {
814 #get pricegroup and form it
815 $form->get_pricegroup(\%myconfig, { all => 1 });
817 $form->{pricegroup} = "$form->{klass}";
818 $form->{pricegroup_id} = "$form->{klass}";
820 if (@{ $form->{all_pricegroup} }) {
822 $form->{selectpricegroup} = qq|<option>\n|;
824 $form->{selectpricegroup} .=
825 qq|<option value="$_->{id}">$_->{pricegroup}\n|
826 } @{ $form->{all_pricegroup} };
829 if ($form->{selectpricegroup}) {
830 $form->{selectpricegroup} = $form->unescape($form->{selectpricegroup});
833 qq|<input type=hidden name=selectpricegroup value="|
834 . $form->escape($form->{selectpricegroup}, 1) . qq|">|;
836 $form->{selectpricegroup} =~
837 s/(<option value="\Q$form->{klass}\E")/$1 selected/;
840 qq|<select name=klass>$form->{selectpricegroup}</select>|;
845 # $locale->text('Customer Number')
846 # $locale->text('Vendor Number')
847 $form->{fokus} = "ct.greeting";
848 $form->{jsscript} = 1;
852 <body onLoad="fokus()">
855 <th class=listtop>$form->{title}</th>
860 <form method=post name="ct" action=$form->{script} onKeyUp="highlight(event)" onClick="highlight(event)">
864 <ul id="maintab" class="shadetabs">
865 <li class="selected"><a href="#" rel="billing">|
866 . $locale->text('Billing Address') . qq|</a></li>
867 <li><a href="#" rel="shipto">|
868 . $locale->text('Shipping Address') . qq|</a></li>
869 <li><a href="#" rel="contacts">Ansprechpartner</a></li>
870 <li><a href="#" rel="deliveries">|
871 . $locale->text('Lieferungen') . qq|</a></li>
875 <div class="tabcontentstyle">
877 <div id="billing" class="tabcontent">
882 <th align=right nowrap>| . $locale->text($label . ' Number') . qq|</th>
883 <td><input name="$form->{db}number" size=35 maxlength=35 value="$form->{"$form->{db}number"}"></td>
886 <th align=right nowrap>| . $locale->text('Greeting') . qq|</th>
887 <td><input id=greeting name=greeting size=30 maxlength=30 value="$form->{greeting}">
888 $select_company_greeting</td>
891 <th align=right nowrap>| . $locale->text('Company Name') . qq|</th>
892 <td><input name=name size=35 maxlength=75 value="$form->{name}"></td>
895 <th align=right nowrap>| . $locale->text('Abteilung') . qq|</th>
896 <td><input name=department_1 size=16 maxlength=75 value="$form->{department_1}">
897 <input name=department_2 size=16 maxlength=75 value="$form->{department_2}"></td>
900 <th align=right nowrap>| . $locale->text('Street') . qq|</th>
901 <td><input name=street size=35 maxlength=75 value="$form->{street}"></td>
904 <th align=right nowrap>|
905 . $locale->text('Zipcode') . "/" . $locale->text('City') . qq|</th>
906 <td><input name=zipcode size=5 maxlength=10 value="$form->{zipcode}">
907 <input name=city size=30 maxlength=75 value="$form->{city}"></td>
910 <th align=right nowrap>| . $locale->text('Country') . qq|</th>
911 <td><input name=country size=35 maxlength=75 value="$form->{country}"></td>
914 <th align=right nowrap>| . $locale->text('Contact') . qq|</th>
915 <td><input name=contact size=28 maxlength=75 value="$form->{contact}"></td>
918 <th align=right nowrap>| . $locale->text('Phone') . qq|</th>
919 <td><input name=phone size=30 maxlength=30 value="$form->{phone}"></td>
922 <th align=right nowrap>| . $locale->text('Fax') . qq|</th>
923 <td><input name=fax size=30 maxlength=30 value="$form->{fax}"></td>
926 <th align=right nowrap>| . $locale->text('E-mail') . qq|</th>
927 <td><input name=email size=45 value="$form->{email}"></td>
930 <th align=right nowrap>| . $locale->text('Homepage') . qq|</th>
931 <td><input name=homepage size=45 value="$form->{homepage}"></td>
936 <th align=right>| . $locale->text('Credit Limit') . qq|</th>
937 <td><input name=creditlimit size=9 value="$form->{creditlimit}"></td>
938 <input type="hidden" name="terms" value="$form->{terms}">
939 <th align=right>| . $locale->text('Payment Terms') . qq|</th>
940 <td><select name=payment_id>$payment</select></td>
941 <th align=right>| . $locale->text('Discount') . qq|</th>
942 <td><input name=discount size=4 value="$form->{discount}">
946 <th align=right>| . $locale->text('Tax Number / SSN') . qq|</th>
947 <td><input name=taxnumber size=20 value="$form->{taxnumber}"></td>
948 <th align=right>| . $locale->text('USt-IdNr.') . qq|</th>
949 <td><input name="ustid" maxlength="14" size="20" value="$form->{ustid}"></td>
953 <th align=right>| . $locale->text('Account Number') . qq|</th>
954 <td><input name=account_number size=10 value="$form->{account_number}"></td>
955 <th align=right>| . $locale->text('Bank Code Number') . qq|</th>
956 <td><input name=bank_code size=10 value="$form->{bank_code}"></td>
957 <th align=right>| . $locale->text('Bank') . qq|</th>
958 <td><input name=bank size=30 value="$form->{bank}"></td>
962 <th align=right>| . $locale->text('Language') . qq|</th>
963 <td><select name=language_id>$lang
966 if ($form->{db} eq 'customer') {
969 <th align=right>| . $locale->text('Preisklasse') . qq|</th>
970 <td>$pricegroup</td>|;
974 <td align=right>| . $locale->text('Obsolete') . qq|</td>
975 <td><input name=obsolete class=checkbox type=checkbox value=1 $form->{obsolete}></td>
984 <th align=left nowrap>| . $locale->text('Notes') . qq|</th>
987 <td><textarea name=notes rows=3 cols=60 wrap=soft>$form->{notes}</textarea></td>
994 <br style="clear: left" /></div>|;
997 <div id="shipto" class="tabcontent">
1002 <th align=right nowrap>| . $locale->text('Company Name') . qq|</th>
1003 <td><input id=shiptoname name=shiptoname size=35 maxlength=75 value="$form->{shiptoname}"></td>
1006 <th align=right nowrap>| . $locale->text('Abteilung') . qq|</th>
1007 <td><input id=shiptodepartment_1 name=shiptodepartment_1 size=16 maxlength=75 value="$form->{shiptodepartment_1}">
1008 <input id=shiptodepartment_2 name=shiptodepartment_2 size=16 maxlength=75 value="$form->{shiptodepartment_2}"></td>
1011 <th align=right nowrap>| . $locale->text('Street') . qq|</th>
1012 <td><input id=shiptostreet name=shiptostreet size=35 maxlength=75 value="$form->{shiptostreet}"></td>
1015 <th align=right nowrap>|
1016 . $locale->text('Zipcode') . "/" . $locale->text('City') . qq|</th>
1017 <td><input id=shiptozipcode name=shiptozipcode size=5 maxlength=10 value="$form->{shiptozipcode}">
1018 <input id=shiptocity name=shiptocity size=30 maxlength=75 value="$form->{shiptocity}"></td>
1021 <th align=right nowrap>| . $locale->text('Country') . qq|</th>
1022 <td><input id=shiptocountry name=shiptocountry size=35 maxlength=35 value="$form->{shiptocountry}"></td>
1025 <th align=right nowrap>| . $locale->text('Contact') . qq|</th>
1026 <td><input id=shiptocontact name=shiptocontact size=30 maxlength=75 value="$form->{shiptocontact}"></td>
1029 <th align=right nowrap>| . $locale->text('Phone') . qq|</th>
1030 <td><input id=shiptophone name=shiptophone size=30 maxlength=30 value="$form->{shiptophone}"></td>
1033 <th align=right nowrap>| . $locale->text('Fax') . qq|</th>
1034 <td><input id=shiptofax name=shiptofax size=30 maxlength=30 value="$form->{shiptofax}"></td>
1037 <th align=right nowrap>| . $locale->text('E-mail') . qq|</th>
1038 <td><input id=shiptoemail name=shiptoemail size=45 value="$form->{shiptoemail}"></td>
1048 <br style="clear: left" /></div>|;
1051 ##LINET - added fields for contact person
1053 <div id="contacts" class="tabcontent">
1057 <input type=hidden name=cp_id value=$form->{cp_id}>
1061 <th align=left nowrap>| . $locale->text('Greeting') . qq|</th>
1062 <td><input id=cp_greeting name=cp_greeting size=40 maxlength=40 value="$form->{cp_greeting}">
1063 $select_greeting</td>
1066 <th align=left nowrap>| . $locale->text('Title') . qq|</th>
1067 <td><input id=cp_title name=cp_title size=40 maxlength=40 value="$form->{cp_title}">
1071 <th align=left nowrap>| . $locale->text('Department') . qq|</th>
1072 <td><input id=cp_abteilung name=cp_abteilung size=40 maxlength=40 value="$form->{cp_abteilung}">
1073 $select_department</td>
1076 <th align=left nowrap>|
1077 . $locale->text('Given Name') . qq|</th>
1078 <td><input id=cp_givenname name=cp_givenname size=40 maxlength=40 value="$form->{cp_givenname}"></td>
1081 <th align=left nowrap>| . $locale->text('Name') . qq|</th>
1082 <td><input id=cp_name name=cp_name size=40 maxlength=40 value="$form->{cp_name}"></td>
1085 <th align=left nowrap>| . $locale->text('Phone1') . qq|</th>
1086 <td><input id=cp_phone1 name=cp_phone1 size=40 maxlength=40 value="$form->{cp_phone1}"></td>
1089 <th align=left nowrap>| . $locale->text('Phone2') . qq|</th>
1090 <td><input id=cp_phone2 name=cp_phone2 size=40 maxlength=40 value="$form->{cp_phone2}"></td>
1093 <th align=left nowrap>| . $locale->text('Fax') . qq|</th>
1094 <td><input id=cp_fax name=cp_fax size=40 maxlength=40 value="$form->{cp_fax}"></td>
1097 <th align=left nowrap>| . $locale->text('Mobile1') . qq|</th>
1098 <td><input id=cp_mobile1 name=cp_mobile1 size=40 maxlength=40 value="$form->{cp_mobile1}"></td>
1101 <th align=left nowrap>| . $locale->text('Mobile2') . qq|</th>
1102 <td><input id=cp_mobile2 name=cp_mobile2 size=40 maxlength=40 value="$form->{cp_mobile2}"></td>
1105 <th align=left nowrap>| . $locale->text('Sat. Phone') . qq|</th>
1106 <td><input id=cp_satphone name=cp_satphone size=40 maxlength=40 value="$form->{cp_satphone}"></td>
1109 <th align=left nowrap>| . $locale->text('Sat. Fax') . qq|</th>
1110 <td><input id=cp_satfax name=cp_satfax size=40 maxlength=40 value="$form->{cp_satfax}"></td>
1113 <th align=left nowrap>| . $locale->text('Project') . qq|</th>
1114 <td><input id=cp_project name=cp_project size=40 maxlength=40 value="$form->{cp_project}"></td>
1117 <th align=left nowrap>| . $locale->text('E-mail') . qq|</th>
1118 <td><input id=cp_email name=cp_email size=40 maxlength=40 value="$form->{cp_email}"></td>
1121 <th align=left nowrap>| . $locale->text('Private Phone') . qq|</th>
1122 <td><input id=cp_privatphone name=cp_privatphone size=40 maxlength=40 value="$form->{cp_privatphone}"></td>
1125 <th align=left nowrap>| . $locale->text('Private E-mail') . qq|</th>
1126 <td><input id=cp_privatemail name=cp_privatemail size=40 maxlength=40 value="$form->{cp_privatemail}"></td>
1129 <th align=left nowrap>| . $locale->text('Birthday') . qq|</th>
1130 <td><input id=cp_birthday name=cp_birthday size=40 maxlength=40 value="$form->{cp_birthday}"></td>
1136 <tr height="5"></tr>|;
1146 <br style="clear: left" /></div>
1147 <div id="deliveries" class="tabcontent">
1151 <th align=left nowrap>| . $locale->text('From') . qq|</th>
1152 <td><input id=from name=from size=10 maxlength=10 value="$form->{from}">
1153 <input type="button" name="fromB" id="trigger_from" value="?"></td>
1154 <th align=left nowrap>| . $locale->text('To (time)') . qq|</th>
1155 <td><input id=to name=to size=10 maxlength=10 value="$form->{to}">
1156 <input type="button" name="toB" id="trigger_to" value="?"></td>
1165 <br style="clear: left" /></div>
1169 | . $form->write_trigger(\%myconfig, 2, "fromB", "BL", "trigger_from",
1170 "toB", "BL", "trigger_to");
1172 $lxdebug->leave_sub();
1176 $lxdebug->enter_sub();
1178 $label = ucfirst $form->{db};
1180 ($form->{db} eq 'customer')
1181 ? $locale->text('Save and Quotation')
1182 : $locale->text('Save and RFQ');
1184 ($form->{db} eq 'customer')
1185 ? $locale->text('Save and AR Transaction')
1186 : $locale->text('Save and AP Transaction');
1188 ##<input class=submit type=submit name=action value="|.$locale->text("Save and Quotation").qq|">
1189 ##<input class=submit type=submit name=action value="|.$locale->text("Save and RFQ").qq|">
1190 ##<input class=submit type=submit name=action value="|.$locale->text("Save and AR Transaction").qq|">
1191 ##<input class=submit type=submit name=action value="|.$locale->text("Save and AP Transaction").qq|">
1194 <input name=id type=hidden id=cvid value=$form->{id}>
1195 <input name=business_save type=hidden value="$form->{selectbusiness}">
1196 <input name=title_save type=hidden value="$form->{title}">
1198 <input type=hidden name=path value=$form->{path}>
1199 <input type=hidden name=login value=$form->{login}>
1200 <input type=hidden name=password value=$form->{password}>
1202 <input type=hidden name=callback value="$form->{callback}">
1203 <input type=hidden name=db id=db value=$form->{db}>
1208 <input class=submit type=submit name=action accesskey="s" value="|
1209 . $locale->text("Save") . qq|">
1210 <input class=submit type=submit name=action accesskey="s" value="|
1211 . $locale->text("Save and Close") . qq|">
1212 <input class=submit type=submit name=action value="$arap">
1213 <input class=submit type=submit name=action value="|
1214 . $locale->text("Save and Invoice") . qq|">
1215 <input class=submit type=submit name=action value="|
1216 . $locale->text("Save and Order") . qq|">
1217 <input class=submit type=submit name=action value="$quotation">
1220 if ($form->{id} && $form->{status} eq 'orphaned') {
1221 print qq|<input class=submit type=submit name=action value="|
1222 . $locale->text('Delete')
1226 # button for saving history
1227 if($form->{id} ne "") {
1229 <input type=button class=submit onclick=set_history_window(|
1231 . qq|); name=history id=history value=|
1232 . $locale->text('history')
1235 # /button for saving history
1240 <script type="text/javascript">
1241 //Start Tab Content script for UL with id="maintab" Separate multiple ids each with a comma.
1242 initializetabcontent("maintab")
1248 $lxdebug->leave_sub();
1251 sub add_transaction {
1252 $lxdebug->enter_sub();
1254 # # saving the history
1255 # if(!exists $form->{addition}) {
1256 # $form->{addition} = "ADD TRANSACTION";
1257 # $form->save_history($form->dbconnect(\%myconfig));
1259 # # /saving the history
1261 $form->isblank("name", $locale->text("Name missing!"));
1262 if ($form->{"db"} eq "customer") {
1263 CT->save_customer(\%myconfig, \%$form);
1265 CT->save_vendor(\%myconfig, \%$form);
1268 $form->{callback} = $form->escape($form->{callback}, 1);
1269 $name = $form->escape("$form->{name}", 1);
1272 "$form->{script}?login=$form->{login}&path=$form->{path}&password=$form->{password}&action=add&vc=$form->{db}&$form->{db}_id=$form->{id}&$form->{db}=$name&type=$form->{type}&callback=$form->{callback}";
1275 $lxdebug->leave_sub();
1278 sub save_and_ap_transaction {
1279 $lxdebug->enter_sub();
1281 $form->{script} = "ap.pl";
1282 # saving the history
1283 if(!exists $form->{addition}) {
1284 $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
1285 $form->{addition} = "SAVED";
1286 $form->save_history($form->dbconnect(\%myconfig));
1288 # /saving the history
1290 $lxdebug->leave_sub();
1293 sub save_and_ar_transaction {
1294 $lxdebug->enter_sub();
1296 $form->{script} = "ar.pl";
1297 # saving the history
1298 if(!exists $form->{addition}) {
1299 $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
1300 $form->{addition} = "SAVED";
1301 $form->save_history($form->dbconnect(\%myconfig));
1303 # /saving the history
1305 $lxdebug->leave_sub();
1308 sub save_and_invoice {
1309 $lxdebug->enter_sub();
1311 $form->{script} = ($form->{db} eq 'customer') ? "is.pl" : "ir.pl";
1312 $form->{type} = "invoice";
1313 # saving the history
1314 if(!exists $form->{addition}) {
1315 $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
1316 $form->{addition} = "SAVED";
1317 $form->save_history($form->dbconnect(\%myconfig));
1319 # /saving the history
1321 $lxdebug->leave_sub();
1325 $lxdebug->enter_sub();
1327 $form->{script} = "oe.pl";
1328 $form->{type} = "request_quotation";
1329 # saving the history
1330 if(!exists $form->{addition}) {
1331 $form->{snumbers} = qq|ordnumber_| . $form->{ordnumber};
1332 $form->{addition} = "SAVED";
1333 $form->save_history($form->dbconnect(\%myconfig));
1335 # /saving the history
1337 $lxdebug->leave_sub();
1340 sub save_and_quotation {
1341 $lxdebug->enter_sub();
1343 $form->{script} = "oe.pl";
1344 $form->{type} = "sales_quotation";
1345 # saving the history
1346 if(!exists $form->{addition}) {
1347 $form->{snumbers} = qq|ordnumber_| . $form->{ordnumber};
1348 $form->{addition} = "SAVED";
1349 $form->save_history($form->dbconnect(\%myconfig));
1351 # /saving the history
1353 $lxdebug->leave_sub();
1356 sub save_and_order {
1357 $lxdebug->enter_sub();
1359 $form->{script} = "oe.pl";
1361 ($form->{db} eq 'customer') ? "sales_order" : "purchase_order";
1362 # saving the history
1363 if(!exists $form->{addition}) {
1364 $form->{snumbers} = qq|ordnumber_| . $form->{ordnumber};
1365 $form->{addition} = "SAVED";
1366 $form->save_history($form->dbconnect(\%myconfig));
1368 # /saving the history
1370 $lxdebug->leave_sub();
1373 sub save_and_close {
1374 $lxdebug->enter_sub();
1376 # $locale->text('Customer saved!')
1377 # $locale->text('Vendor saved!')
1379 $msg = ucfirst $form->{db};
1382 $form->isblank("name", $locale->text("Name missing!"));
1383 if ($form->{"db"} eq "customer") {
1384 $rc = CT->save_customer(\%myconfig, \%$form);
1386 $rc = CT->save_vendor(\%myconfig, \%$form);
1389 $form->error($locale->text('customernumber not unique!'));
1391 # saving the history
1392 if(!exists $form->{addition}) {
1393 $form->{snumbers} = ($form->{"db"} eq "customer" ? qq|customernumber_| . $form->{customernumber} : qq|vendornumber_| . $form->{vendornumber});
1394 $form->{addition} = "SAVED";
1395 $form->save_history($form->dbconnect(\%myconfig));
1397 # /saving the history
1398 $form->redirect($locale->text($msg));
1400 $lxdebug->leave_sub();
1404 $lxdebug->enter_sub();
1406 # $locale->text('Customer saved!')
1407 # $locale->text('Vendor saved!')
1409 $msg = ucfirst $form->{db};
1412 $form->isblank("name", $locale->text("Name missing!"));
1415 if ($form->{"db"} eq "customer") {
1416 $res = CT->save_customer(\%myconfig, \%$form);
1418 $res = CT->save_customer(\%myconfig, \%$form);
1422 if ($form->{"db"} eq "customer") {
1423 $form->error($locale->text('This customer number is already in use.'));
1425 $form->error($locale->text('This vendor number is already in use.'));
1428 # saving the history
1429 if(!exists $form->{addition}) {
1430 $form->{snumbers} = ($form->{"db"} eq "customer" ? qq|customernumber_| . $form->{customernumber} : qq|vendornumber_| . $form->{vendornumber});
1431 $form->{addition} = "SAVED";
1432 $form->save_history($form->dbconnect(\%myconfig));
1434 # /saving the history
1437 $lxdebug->leave_sub();
1441 $lxdebug->enter_sub();
1443 # $locale->text('Customer deleted!')
1444 # $locale->text('Cannot delete customer!')
1445 # $locale->text('Vendor deleted!')
1446 # $locale->text('Cannot delete vendor!')
1448 CT->delete(\%myconfig, \%$form);
1450 $msg = ucfirst $form->{db};
1451 $msg .= " deleted!";
1452 # saving the history
1453 if(!exists $form->{addition}) {
1454 $form->{snumbers} = ($form->{"db"} eq "customer" ? qq|customernumber_| . $form->{customernumber} : qq|vendornumber_| . $form->{vendornumber});
1455 $form->{addition} = "DELETED";
1456 $form->save_history($form->dbconnect(\%myconfig));
1458 # /saving the history
1459 $form->redirect($locale->text($msg));
1461 $msg = "Cannot delete $form->{db}";
1462 $form->error($locale->text($msg));
1464 $lxdebug->leave_sub();
1468 $lxdebug->enter_sub();
1473 $lxdebug->leave_sub();
1477 $lxdebug->enter_sub();
1480 $lxdebug->leave_sub();
1484 $lxdebug->enter_sub();
1486 CT->get_contact(\%myconfig, \%$form);
1489 $result = "$form->{cp_name}";
1490 map { $result .= "__pjx__" . $form->{$_} } qw(cp_greeting cp_title cp_givenname cp_phone1 cp_phone2 cp_email cp_abteilung cp_fax cp_mobile1 cp_mobile2 cp_satphone cp_satfax cp_project cp_privatphone cp_privatemail cp_birthday);
1493 $lxdebug->leave_sub();
1498 $lxdebug->enter_sub();
1500 CT->get_shipto(\%myconfig, \%$form);
1503 $result = "$form->{shiptoname}";
1504 map { $result .= "__pjx__" . $form->{$_} } qw(shiptodepartment_1 shiptodepartment_2 shiptostreet shiptozipcode shiptocity shiptocountry shiptocontact shiptophone shiptofax shiptoemail);
1507 $lxdebug->leave_sub();
1512 $lxdebug->enter_sub();
1514 CT->get_delivery(\%myconfig, \%$form );
1517 $form->sort_columns(shiptoname,
1527 $column_header{shiptoname} =
1528 qq|<th class=listheading>| . $locale->text('Shipping Address') . qq|</th>|;
1529 $column_header{invnumber} =
1530 qq|<th class=listheading>|. $locale->text('Invoice'). qq|</th>|;
1531 $column_header{ordnumber} =
1532 qq|<th class=listheading>|. $locale->text('Order'). qq|</th>|;
1533 $column_header{transdate} =
1534 qq|<th class=listheading>| . $locale->text('Invdate') . qq|</th>|;
1535 $column_header{description} =
1536 qq|<th class=listheading>| . $locale->text('Description') . qq|</th>|;
1537 $column_header{qty} =
1538 qq|<th class=listheading>| . $locale->text('Qty') . qq|</th>|;
1539 $column_header{unit} =
1540 qq|<th class=listheading>| . $locale->text('Unit') . qq|</th>|;
1547 <tr class=listheading>
1550 map { $result .= "$column_header{$_}\n" } @column_index;
1557 foreach $ref (@{ $form->{DELIVERY} }) {
1559 if ($ref->{shiptoname} eq $sameshiptoname) {
1560 map { $column_data{$_} = "<td>$ref->{$_} </td>" } @column_index;
1561 $column_data{shiptoname} = "<td> </td>";
1563 map { $column_data{$_} = "<td>$ref->{$_} </td>" } @column_index;
1569 <tr class=listrow$i>
1572 map { $result .= "$column_data{$_}\n" } @column_index;
1578 $sameshiptoname = $ref->{shiptoname};
1590 $lxdebug->leave_sub();
1594 sub continue { call_sub($form->{nextsub}); }