Merge von 599-602,605,614,615 aus unstable: Preisgruppen Teil 1
[kivitendo-erp.git] / bin / mozilla / ct.pl
1 #=====================================================================
2 # LX-Office ERP
3 # Copyright (C) 2004
4 # Based on SQL-Ledger Version 2.1.9
5 # Web http://www.lx-office.org
6 #
7 #=====================================================================
8 # SQL-Ledger Accounting
9 # Copyright (c) 1998-2002
10 #
11 #  Author: Dieter Simader
12 #   Email: dsimader@sql-ledger.org
13 #     Web: http://www.sql-ledger.org
14 #
15 #  Contributors: Reed White <alta@alta-research.com>
16 #
17 # This program is free software; you can redistribute it and/or modify
18 # it under the terms of the GNU General Public License as published by
19 # the Free Software Foundation; either version 2 of the License, or
20 # (at your option) any later version.
21 #
22 # This program is distributed in the hope that it will be useful,
23 # but WITHOUT ANY WARRANTY; without even the implied warranty of
24 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
25 # GNU General Public License for more details.
26 # You should have received a copy of the GNU General Public License
27 # along with this program; if not, write to the Free Software
28 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
29 #======================================================================
30 #
31 # customer/vendor module
32 #
33 #======================================================================
34
35 # $locale->text('Customers')
36 # $locale->text('Vendors')
37 # $locale->text('Add Customer')
38 # $locale->text('Add Vendor')
39
40 use SL::CT;
41
42 1;
43
44 # end of main
45
46 sub add {
47   $lxdebug->enter_sub();
48
49   $form->{title} = "Add";
50
51   $form->{callback} =
52     "$form->{script}?action=add&db=$form->{db}&path=$form->{path}&login=$form->{login}&password=$form->{password}"
53     unless $form->{callback};
54
55   CT->taxaccounts(\%myconfig, \%$form);
56
57   &form_header;
58   &form_footer;
59
60   $lxdebug->leave_sub();
61 }
62
63 sub search {
64   $lxdebug->enter_sub();
65
66   $label = ucfirst $form->{db};
67   $form->{title} = $locale->text($label . "s");
68
69   if ($form->{db} eq 'vendor') {
70     $gifi = qq|
71                 <td><input name="l_gifi_accno" type=checkbox class=checkbox value=Y> |
72       . $locale->text('GIFI') . qq|</td>
73 |;
74   }
75
76   $form->header;
77
78   print qq|
79 <body>
80
81 <form method=post action=$form->{script}>
82
83 <input type=hidden name=db value=$form->{db}>
84
85 <table width=100%>
86   <tr>
87     <th class=listtop>$form->{title}</th>
88   </tr>
89   <tr height="5"></tr>
90   <tr valign=top>
91     <td>
92       <table>
93         <tr>
94           <th align=right nowrap>| . $locale->text($label . ' Number') . qq|</th>
95           <td><input name=$form->{db}number size=35></td>
96         </tr>
97         <tr>
98           <th align=right nowrap>| . $locale->text('Company Name') . qq|</th>
99           <td><input name=name size=35></td>
100         </tr>
101         <tr>
102           <th align=right nowrap>| . $locale->text('Contact') . qq|</th>
103           <td><input name=contact size=35></td>
104         </tr>
105         <tr>
106           <th align=right nowrap>| . $locale->text('E-mail') . qq|</th>
107           <td><input name=email size=35></td>
108         </tr>
109         <tr>
110           <td></td>
111           <td><input name=status class=radio type=radio value=all checked>&nbsp;|
112     . $locale->text('All') . qq|
113           <input name=status class=radio type=radio value=orphaned>&nbsp;|
114     . $locale->text('Orphaned') . qq|</td>
115         </tr>
116         <tr>
117           <th align=right nowrap>| . $locale->text('Include in Report') . qq|</th>
118           <td>
119             <table>
120               <tr>
121                 <td><input name="l_id" type=checkbox class=checkbox value=Y> |
122     . $locale->text('ID') . qq|</td>
123                 <td><input name="l_$form->{db}number" type=checkbox class=checkbox value=Y> |
124     . $locale->text($label . ' Number') . qq|</td>
125                 <td><input name="l_name" type=checkbox class=checkbox value=Y checked> |
126     . $locale->text('Company Name') . qq|</td>
127                 <td><input name="l_address" type=checkbox class=checkbox value=Y> |
128     . $locale->text('Address') . qq|</td>
129               </tr>
130               <tr>
131                 <td><input name="l_contact" type=checkbox class=checkbox value=Y checked> |
132     . $locale->text('Contact') . qq|</td>
133                 <td><input name="l_phone" type=checkbox class=checkbox value=Y checked> |
134     . $locale->text('Phone') . qq|</td>
135                 <td><input name="l_fax" type=checkbox class=checkbox value=Y> |
136     . $locale->text('Fax') . qq|</td>
137                 <td><input name="l_email" type=checkbox class=checkbox value=Y checked> |
138     . $locale->text('E-mail') . qq|</td>
139               </tr>
140               <tr>
141                 <td><input name="l_taxnumber" type=checkbox class=checkbox value=Y> |
142     . $locale->text('Tax Number') . qq|</td>
143                 $gifi
144                 <td><input name="l_sic_code" type=checkbox class=checkbox value=Y> |
145     . $locale->text('SIC') . qq|</td>
146                 <td><input name="l_business" type=checkbox class=checkbox value=Y> |
147     . $locale->text('Type of Business') . qq|</td>
148               </tr>
149               <tr>
150                 <td><input name="l_invnumber" type=checkbox class=checkbox value=Y> |
151     . $locale->text('Invoices') . qq|</td>
152                 <td><input name="l_ordnumber" type=checkbox class=checkbox value=Y> |
153     . $locale->text('Orders') . qq|</td>
154                 <td><input name="l_quonumber" type=checkbox class=checkbox value=Y> |
155     . $locale->text('Quotations') . qq|</td>
156               </tr>
157             </table>
158           </td>
159         </tr>
160       </table>
161     </td>
162   </tr>
163   <tr>
164     <td><hr size=3 noshade></td>
165   </tr>
166 </table>
167
168 <input type=hidden name=nextsub value=list_names>
169
170 <input type=hidden name=path value=$form->{path}>
171 <input type=hidden name=login value=$form->{login}>
172 <input type=hidden name=password value=$form->{password}>
173
174 <br>
175 <input type=submit class=submit name=action value="|
176     . $locale->text('Continue') . qq|">
177 </form>
178
179 </body>
180 </html>
181 |;
182   $lxdebug->leave_sub();
183 }
184
185 sub list_names {
186   $lxdebug->enter_sub();
187
188   CT->search(\%myconfig, \%$form);
189
190   $callback =
191     "$form->{script}?action=list_names&db=$form->{db}&path=$form->{path}&login=$form->{login}&password=$form->{password}&status=$form->{status}";
192   $href = $callback;
193
194   @columns =
195     $form->sort_columns(id, name,
196                         "$form->{db}number", address,
197                         contact,             phone,
198                         fax,                 email,
199                         taxnumber,           gifi_accno,
200                         sic_code,            business,
201                         invnumber,           ordnumber,
202                         quonumber);
203
204   foreach $item (@columns) {
205     if ($form->{"l_$item"} eq "Y") {
206       push @column_index, $item;
207
208       # add column to href and callback
209       $callback .= "&l_$item=Y";
210       $href     .= "&l_$item=Y";
211     }
212   }
213   $number =
214     ($form->{db} eq "customer")
215     ? $locale->text('Customer Number')
216     : $locale->text('Vendor Number');
217
218   if ($form->{status} eq 'all') {
219     $option = $locale->text('All');
220   }
221   if ($form->{status} eq 'orphaned') {
222     $option .= $locale->text('Orphaned');
223   }
224   if ($form->{name}) {
225     $callback .= "&name=" . $form->escape($form->{name}, 1);
226     $href .= "&name=" . $form->escape($form->{name});
227     $option .= "\n<br>" . $locale->text('Name') . " : $form->{name}";
228   }
229   if ($form->{contact}) {
230     $callback .= "&contact=" . $form->escape($form->{contact}, 1);
231     $href .= "&contact=" . $form->escape($form->{contact});
232     $option .= "\n<br>" . $locale->text('Contact') . " : $form->{contact}";
233   }
234   if ($form->{"$form->{db}number"}) {
235     $callback .=
236       qq|&$form->{db}number=| . $form->escape($form->{"$form->{db}number"}, 1);
237     $href .=
238       "&$form->{db}number=" . $form->escape($form->{"$form->{db}number"});
239     $option .=
240       "\n<br>" . $locale->text('Number') . qq| : $form->{"$form->{db}number"}|;
241   }
242   if ($form->{email}) {
243     $callback .= "&email=" . $form->escape($form->{email}, 1);
244     $href .= "&email=" . $form->escape($form->{email});
245     $option .= "\n<br>" . $locale->text('E-mail') . " : $form->{email}";
246   }
247
248   $form->{callback} = "$callback&sort=$form->{sort}";
249   $callback = $form->escape($form->{callback});
250
251   $column_header{id} =
252     qq|<th class=listheading>| . $locale->text('ID') . qq|</th>|;
253   $column_header{"$form->{db}number"} =
254     qq|<th><a class=listheading href=$href&sort=$form->{db}number>$number</a></th>|;
255   $column_header{name} =
256       qq|<th><a class=listheading href=$href&sort=name>|
257     . $locale->text('Name')
258     . qq|</a></th>|;
259   $column_header{address} =
260       qq|<th><a class=listheading href=$href&sort=address>|
261     . $locale->text('Address')
262     . qq|</a></th>|;
263   $column_header{contact} =
264       qq|<th><a class=listheading href=$href&sort=contact>|
265     . $locale->text('Contact')
266     . qq|</a></th>|;
267   $column_header{phone} =
268       qq|<th><a class=listheading href=$href&sort=phone>|
269     . $locale->text('Phone')
270     . qq|</a></th>|;
271   $column_header{fax} =
272       qq|<th><a class=listheading href=$href&sort=fax>|
273     . $locale->text('Fax')
274     . qq|</a></th>|;
275   $column_header{email} =
276       qq|<th><a class=listheading href=$href&sort=email>|
277     . $locale->text('E-mail')
278     . qq|</a></th>|;
279   $column_header{cc} =
280       qq|<th><a class=listheading href=$href&sort=cc>|
281     . $locale->text('Cc')
282     . qq|</a></th>|;
283
284   $column_header{taxnumber} =
285       qq|<th><a class=listheading href=$href&sort=taxnumber>|
286     . $locale->text('Tax Number')
287     . qq|</a></th>|;
288   $column_header{gifi_accno} =
289       qq|<th><a class=listheading href=$href&sort=gifi_accno>|
290     . $locale->text('GIFI')
291     . qq|</a></th>|;
292   $column_header{sic_code} =
293       qq|<th><a class=listheading href=$href&sort=sic_code>|
294     . $locale->text('SIC')
295     . qq|</a></th>|;
296   $column_header{business} =
297       qq|<th><a class=listheading href=$href&sort=business>|
298     . $locale->text('Type of Business')
299     . qq|</a></th>|;
300
301   $column_header{invnumber} =
302       qq|<th><a class=listheading href=$href&sort=invnumber>|
303     . $locale->text('Invoice')
304     . qq|</a></th>|;
305   $column_header{ordnumber} =
306       qq|<th><a class=listheading href=$href&sort=ordnumber>|
307     . $locale->text('Order')
308     . qq|</a></th>|;
309   $column_header{quonumber} =
310       qq|<th><a class=listheading href=$href&sort=quonumber>|
311     . $locale->text('Quotation')
312     . qq|</a></th>|;
313
314   $label = ucfirst $form->{db} . "s";
315   $form->{title} = $locale->text($label);
316
317   $form->header;
318
319   print qq|
320 <body>
321
322 <table width=100%>
323   <tr>
324     <th class=listtop>$form->{title}</th>
325   </tr>
326   <tr height="5"></tr>
327   <tr>
328     <td>$option</td>
329   </tr>
330   <tr>
331     <td>
332       <table width=100%>
333         <tr class=listheading>
334 |;
335
336   map { print "$column_header{$_}\n" } @column_index;
337
338   print qq|
339         </tr>
340 |;
341
342   $ordertype = ($form->{db} eq 'customer') ? 'sales_order' : 'purchase_order';
343   $quotationtype =
344     ($form->{db} eq 'customer') ? 'sales_quotation' : 'request_quotation';
345
346   foreach $ref (@{ $form->{CT} }) {
347
348     if ($ref->{id} eq $sameid) {
349       map { $column_data{$_} = "<td>&nbsp;</td>" } @column_index;
350     } else {
351       map { $column_data{$_} = "<td>$ref->{$_}&nbsp;</td>" } @column_index;
352
353       map { $column_data{$_} = "<td>$ref->{$_}&nbsp;</td>" }
354         (invnumber, ordnumber, quonumber);
355
356       $column_data{name} =
357         "<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}&nbsp;</td>";
358
359       if ($ref->{email}) {
360         $email = $ref->{email};
361         $email =~ s/</\&lt;/;
362         $email =~ s/>/\&gt;/;
363
364         $column_data{email} =
365           qq|<td><a href="mailto:$ref->{email}">$email</a></td>|;
366       }
367
368     }
369
370     if ($ref->{formtype} eq 'invoice') {
371       $column_data{invnumber} =
372         "<td><a href=$ref->{module}.pl?action=edit&id=$ref->{invid}&path=$form->{path}&login=$form->{login}&password=$form->{password}&callback=$callback>$ref->{invnumber}&nbsp;</td>";
373     }
374
375     if ($ref->{formtype} eq 'order') {
376       $column_data{ordnumber} =
377         "<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}&nbsp;</td>";
378     }
379
380     if ($ref->{formtype} eq 'quotation') {
381       $column_data{quonumber} =
382         "<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}&nbsp;</td>";
383     }
384
385     $i++;
386     $i %= 2;
387     print "
388         <tr class=listrow$i>
389 ";
390
391     map { print "$column_data{$_}\n" } @column_index;
392
393     print qq|
394         </tr>
395 |;
396
397     $sameid = $ref->{id};
398
399   }
400
401   print qq|
402       </table>
403     </td>
404   </tr>
405   <tr>
406     <td><hr size=3 noshade></td>
407   </tr>
408 </table>
409
410 <br>
411 <form method=post action=$form->{script}>
412
413 <input name=callback type=hidden value="$form->{callback}">
414 <input name=db type=hidden value=$form->{db}>
415
416 <input type=hidden name=path value=$form->{path}>
417 <input type=hidden name=login value=$form->{login}>
418 <input type=hidden name=password value=$form->{password}>
419
420 <input class=submit type=submit name=action value="|
421     . $locale->text('Add') . qq|">|;
422
423   if ($form->{menubar}) {
424     require "$form->{path}/menu.pl";
425     &menubar;
426   }
427
428   print qq|
429   </form>
430
431 </body>
432 </html>
433 |;
434
435   $lxdebug->leave_sub();
436 }
437
438 sub edit {
439   $lxdebug->enter_sub();
440
441   # $locale->text('Edit Customer')
442   # $locale->text('Edit Vendor')
443
444   CT->get_tuple(\%myconfig, \%$form);
445
446   # format " into &quot;
447   map { $form->{$_} =~ s/\"/&quot;/g } keys %$form;
448
449   $form->{title} = "Edit";
450
451   # format discount
452   $form->{discount} *= 100;
453
454   &form_header;
455   &form_footer;
456
457   $lxdebug->leave_sub();
458 }
459
460 sub form_header {
461   $lxdebug->enter_sub();
462
463   $form->{taxincluded} = ($form->{taxincluded}) ? "checked" : "";
464   $form->{creditlimit} =
465     $form->format_amount(\%myconfig, $form->{creditlimit}, 0);
466
467   if ($myconfig{role} eq 'admin') {
468     $bcc = qq|
469         <tr>
470           <th align=right nowrap>| . $locale->text('Bcc') . qq|</th>
471           <td><input name=bcc size=35 value="$form->{bcc}"></td>
472         </tr>
473 |;
474   }
475   $form->{obsolete} = "checked" if $form->{obsolete};
476   %langs = (de => "deutsch", en => "englisch", fr => "französisch");
477   $lang = qq|<option value=""></option>|;
478   foreach $item (keys %langs) {
479     if ($form->{language} eq $item) {
480       $lang .= qq|<option value="$item" selected>$langs{$item}</option>|;
481     } else {
482       $lang .= qq|<option value="$item">$langs{$item}</option>|;
483     }
484   }
485
486   foreach $item (split / /, $form->{taxaccounts}) {
487     if (($form->{tax}{$item}{taxable}) || !($form->{id})) {
488       $taxable .=
489         qq| <input name="tax_$item" value=1 class=checkbox type=checkbox checked>&nbsp;<b>$form->{tax}{$item}{description}</b>|;
490     } else {
491       $taxable .=
492         qq| <input name="tax_$item" value=1 class=checkbox type=checkbox>&nbsp;<b>$form->{tax}{$item}{description}</b>|;
493     }
494   }
495
496 ##LINET
497   $taxable = "";
498
499   if ($taxable) {
500     $tax = qq|
501   <tr>
502     <th align=right>| . $locale->text('Taxable') . qq|</th>
503     <td colspan=2>
504       <table>
505         <tr>
506           <td>$taxable</td>
507           <td><input name=taxincluded class=checkbox type=checkbox value=1 $form->{taxincluded}></td>
508           <th align=left>| . $locale->text('Tax Included') . qq|</th>
509         </tr>
510       </table>
511     </td>
512   </tr>
513 |;
514   }
515   $form->{selectbusiness} = qq|<option>\n|;
516   map {
517     $form->{selectbusiness} .=
518       qq|<option value=$_->{id}>$_->{description}\n|
519   } @{ $form->{all_business} };
520   if ($form->{business_save}) {
521     $form->{selectbusiness} = $form->{business_save};
522   }
523   $form->{selectbusiness} =~
524     s/<option value=$form->{business}>/<option value=$form->{business} selected>/;
525
526   $label = ucfirst $form->{db};
527   $form->{title} = $locale->text("$form->{title} $label");
528   if ($form->{title_save}) {
529     $form->{title} = $form->{title_save};
530   }
531   if ($form->{db} eq 'vendor') {
532     $customer = qq|
533            <th align=right>| . $locale->text('Kundennummer') . qq|</th>
534            <td><input name=v_customer_id size=10 tabindex=18 maxlength=35 value="$form->{v_customer_id}"></td>
535 |;
536   }
537
538   if ($form->{db} eq 'customer') {
539
540     $customer = qq|
541            <th align=right>| . $locale->text('KNr. beim Kunden') . qq|</th>
542            <td><input name=c_vendor_id size=10 tabindex=18 maxlength=35 value="$form->{c_vendor_id}"></td>
543 |;
544   }
545   $business_salesman = "";
546   $business          = "<th></th><td></td>";
547   if ($vertreter) {
548     $business_salesman = qq|
549         <tr>
550           <td colspan=3>
551             <table>
552              <th align=right>| . $locale->text('Type of Business') . qq|</th>
553              <td><select name=business tabindex=1>$form->{selectbusiness}</select></td>
554              <th align=right>| . $locale->text('Salesman') . qq|</th>
555              <td><input name=salesman tabindex=2 value="$form->{salesman}"></td>
556              <input type=hidden name=salesman_id value="$form->{salesman_id}">
557              <input type=hidden name=oldsalesman value="$form->{oldsalesman}">
558             </table>
559           </td>
560        <tr>|;
561     $business = qq|
562              <th align=right>| . $locale->text('Username') . qq|</th>
563              <td><input name=username maxlength=50 tabindex=22 value="$form->{username}"></td>
564              <th align=right>| . $locale->text('Password') . qq|</th>
565              <td><input name=user_password maxlength=12 tabindex=23 value="$form->{user_password}"></td>|;
566   } else {
567     $business = qq|
568           <th align=right>| . $locale->text('Type of Business') . qq|</th>
569           <td><select name=business tabindex=22>$form->{selectbusiness}</select></td>
570       |;
571   }
572
573 ## LINET: Create a drop-down box with all prior titles and greetings.
574   CT->query_titles_and_greetings(\%myconfig, \%$form);
575
576   $select_title = qq|&nbsp;<select name=selected_cp_title><option></option>|;
577   map({ $select_title .= qq|<option>$_</option>|; } @{ $form->{TITLES} });
578   $select_title .= qq|</select>|;
579
580   $select_greeting =
581     qq|&nbsp;<select name=selected_cp_greeting><option></option>|;
582   map(
583      { $select_greeting .= qq|<option>$_</option>|; } @{ $form->{GREETINGS} });
584   $select_greeting .= qq|</select>|;
585 ## /LINET
586
587   if ($form->{db} eq 'customer') {
588   #get pricegroup and form it
589   $form->get_pricegroup(\%myconfig, { all => 1 });
590
591   $form->{pricegroup}    = "$form->{klass}";
592   $form->{pricegroup_id} = "$form->{klass}";
593
594   if (@{ $form->{all_pricegroup} }) {
595
596     $form->{selectpricegroup} = qq|<option>\n|;
597     map {
598       $form->{selectpricegroup} .=
599         qq|<option value="$_->{id}">$_->{pricegroup}\n|
600     } @{ $form->{all_pricegroup} };
601   }
602
603   if ($form->{selectpricegroup}) {
604     $form->{selectpricegroup} = $form->unescape($form->{selectpricegroup});
605
606     $pricegroup =
607       qq|<input type=hidden name=selectpricegroup value="|
608       . $form->escape($form->{selectpricegroup}, 1) . qq|">|;
609
610     $form->{selectpricegroup} =~
611       s/(<option value="\Q$form->{klass}\E")/$1 selected/;
612
613     $pricegroup .= qq|<select name=klass>$form->{selectpricegroup}</select>|;
614
615     $group = $locale->text('Hola');
616   }
617  }
618   # $locale->text('Customer Number')
619   # $locale->text('Vendor Number')
620   $form->{fokus} = "ct.name";
621   $form->header;
622
623   print qq|
624 <body onLoad="fokus()">
625 <form method=post name="ct" action=$form->{script}>
626
627 <table width=100%>
628   <tr>
629     <th class=listtop>$form->{title}</th>
630   </tr>
631   <tr>
632     <td>
633       <table width=100%>
634         <tr class=listheading>
635           <th class=listheading colspan=2 width=50%>|
636     . $locale->text('Billing Address') . qq|</th>
637           <th class=listheading width=50%>|
638     . $locale->text('Shipping Address') . qq|</th>
639         </tr>
640         <tr height="5"></tr>
641         $business_salesman
642         <tr>
643           <th align=right nowrap>| . $locale->text($label . ' Number') . qq|</th>
644           <td><input name="$form->{db}number" size=35 maxlength=35 value="$form->{"$form->{db}number"}"></td>
645         </tr>
646         <tr>
647           <th align=right nowrap>| . $locale->text('Company Name') . qq|</th>
648           <td><input name=name size=35 maxlength=35 tabindex=1 value="$form->{name}"></td>
649           <td><input name=shiptoname size=35 maxlength=75 value="$form->{shiptoname}"></td>
650         </tr>
651         <tr>
652           <th align=right nowrap>| . $locale->text('Abteilung') . qq|</th>
653           <td><input name=department_1 size=16 maxlength=75 tabindex=2 value="$form->{department_1}">
654           <input name=department_2 size=16 maxlength=75 tabindex=3 value="$form->{department_2}"></td>
655           <td><input name=shiptodepartment_1 size=16 maxlength=75 value="$form->{shiptodepartment_1}">
656           <input name=shiptodepartment_2 size=16 maxlength=75 value="$form->{shiptodepartment_2}"></td>
657         </tr>
658         <tr>
659           <th align=right nowrap>| . $locale->text('Street') . qq|</th>
660           <td><input name=street size=35 tabindex=4 maxlength=75 value="$form->{street}"></td>
661           <td><input name=shiptostreet size=35 maxlength=35 value="$form->{shiptostreet}"></td>
662         </tr>
663         <tr>
664           <th align=right nowrap>|
665     . $locale->text('Zipcode') . "/" . $locale->text('City') . qq|</th>
666           <td><input name=zipcode size=5 tabindex=5 maxlength=10 value="$form->{zipcode}">
667           <input name=city size=30 tabindex=6 maxlength=75 value="$form->{city}"></td>
668           <td><input name=shiptozipcode size=5 maxlength=10 value="$form->{shiptozipcode}">
669           <input name=shiptocity size=30 maxlength=75 value="$form->{shiptocity}"></td>
670         </tr>
671         <tr>
672           <th align=right nowrap>| . $locale->text('Country') . qq|</th>
673           <td><input name=country size=35 tabindex=7 maxlength=75 value="$form->{country}"></td>
674           <td><input name=shiptocountry size=35 maxlength=35 value="$form->{shiptocountry}"></td>
675         </tr>
676         <tr>
677           <th align=right nowrap>| . $locale->text('Contact') . qq|</th>
678           <td><input name=contact size=28 tabindex=8 maxlength=75 value="$form->{contact}"></td>
679           <td><input name=shiptocontact size=30 maxlength=75 value="$form->{shiptocontact}"></td>
680         </tr>
681         <tr>
682           <th align=right nowrap>| . $locale->text('Phone') . qq|</th>
683           <td><input name=phone size=30 tabindex=9 maxlength=30 value="$form->{phone}"></td>
684           <td><input name=shiptophone size=30 maxlength=30 value="$form->{shiptophone}"></td>
685         </tr>
686         <tr>
687           <th align=right nowrap>| . $locale->text('Fax') . qq|</th>
688           <td><input name=fax size=30 tabindex=10 maxlength=30 value="$form->{fax}"></td>
689           <td><input name=shiptofax size=30 maxlength=30 value="$form->{shiptofax}"></td>
690         </tr>
691         <tr>
692           <th align=right nowrap>| . $locale->text('E-mail') . qq|</th>
693           <td><input name=email tabindex=11 size=45 value="$form->{email}"></td>
694           <td><input name=shiptoemail size=45 value="$form->{shiptoemail}"></td>
695         </tr>
696         <tr>
697           <th align=right nowrap>| . $locale->text('Homepage') . qq|</th>
698           <td><input name=homepage tabindex=12 size=45 value="$form->{homepage}"></td>
699         </tr>
700         <tr>
701         </tr>|;
702 ##LINET - added fields for contact person
703   print qq|       <tr>
704          <td colspan=3>
705                 <input type=hidden name=cp_id value=$form->{cp_id}>
706                 <table>
707                 <tr>
708                   <th align=right nowrap>|
709     . $locale->text('Contact Person') . qq|</th>
710                 </tr>
711                 <tr>
712                   <th></th>
713                   <th align=left nowrap>| . $locale->text('Greeting') . qq|</th>
714                   <td><input name=cp_greeting size=30 maxlength=30 value="$form->{cp_greeting}">&nbsp;
715                   $select_greeting</td>
716                   <th align=left nowrap>| . $locale->text('Title') . qq|</th>
717                   <td><input name=cp_title size=30 maxlength=30 value="$form->{cp_title}">&nbsp;
718                   $select_title</td>
719                 </tr>
720                 <tr>
721                   <th></th>
722                   <th align=left nowrap>|
723     . $locale->text('Given Name') . qq|</th>
724                   <td><input name=cp_givenname size=30 maxlength=40 value="$form->{cp_givenname}"></td>
725                   <th align=left nowrap>| . $locale->text('Name') . qq|</th>
726                   <td><input name=cp_name size=30 maxlength=40 value="$form->{cp_name}"></td>
727                 </tr>
728                 <tr>
729                   <th></th>
730                   <th align=left nowrap>| . $locale->text('Phone1') . qq|</th>
731                   <td><input name=cp_phone1 size=30 maxlength=30 value="$form->{cp_phone1}"></td>
732                   <th align=left nowrap>| . $locale->text('Phone2') . qq|</th>
733                   <td><input name=cp_phone2 size=30 maxlength=30 value="$form->{cp_phone2}"></td>
734                 </tr>
735                 <tr>
736                   <th></th>
737                   <th align=left nowrap>| . $locale->text('E-mail') . qq|</th>
738                   <td><input name=cp_email size=30 maxlength=40 value="$form->{cp_email}"></td>
739                   <th></th>
740                   <th></th>
741                 </tr>                </table>
742         </td>
743         </tr>
744         <tr height="5"></tr>|;
745 ##/LINET
746   print qq|        $bcc
747         $tax
748       </table>
749     </td>
750   </tr>
751   <tr>
752     <td>
753       <table>
754         <tr>
755           <th align=right>| . $locale->text('Credit Limit') . qq|</th>
756           <td><input name=creditlimit tabindex=13 size=9 value="$form->{creditlimit}"></td>
757           <th align=right>| . $locale->text('Terms: Net') . qq|</th>
758           <td><input name=terms tabindex=14 size=2 value="$form->{terms}">|
759     . $locale->text('days') . qq|</td>
760           <th align=right>| . $locale->text('Discount') . qq|</th>
761           <td><input name=discount tabindex=15 size=4 value="$form->{discount}">
762           %</td>
763         </tr>
764         <tr>
765           <th align=right>| . $locale->text('Tax Number / SSN') . qq|</th>
766           <td><input name=taxnumber tabindex=16 size=20 value="$form->{taxnumber}"></td>
767           <th align=right>| . $locale->text('USt-IdNr.') . qq|</th>
768           <td><input name=ustid tabindex=17 size=20 value="$form->{ustid}"></td>
769           $customer
770         </tr>
771         <tr>
772           <th align=right>| . $locale->text('Account Number') . qq|</th>
773           <td><input name=account_number size=10 tabindex=19 value="$form->{account_number}"></td>
774           <th align=right>| . $locale->text('Bank Code Number') . qq|</th>
775           <td><input name=bank_code size=10 tabindex=20 value="$form->{bank_code}"></td>
776           <th align=right>| . $locale->text('Bank') . qq|</th>
777           <td><input name=bank size=30 tabindex=21 value="$form->{bank}"></td>
778         </tr>
779         <tr>
780           $business
781           <th align=right>| . $locale->text('Language') . qq|</th>
782           <td><select name=language tabindex=23>$lang
783                           </select></td>|;
784 if ($form->{db} eq 'customer'){
785
786 print qq|
787           <th align=right>| . $locale->text('Preisklasse') . qq|</th>
788           <td>$pricegroup</td>|;
789 }
790   print qq|        </tr>
791         <tr>
792           <td align=right>| . $locale->text('Obsolete') . qq|</td>
793           <td><input name=obsolete class=checkbox type=checkbox value=1 $form->{obsolete}></td>
794         </tr>
795       </table>
796     </td>
797   </tr>
798   <tr>
799     <th align=left nowrap>| . $locale->text('Notes') . qq|</th>
800   </tr>
801   <tr>
802     <td><textarea name=notes rows=3 cols=60 wrap=soft>$form->{notes}</textarea></td>
803   </tr>
804   <tr>
805     <td><hr size=3 noshade></td>
806   </tr>
807 </table>
808 |;
809
810   $lxdebug->leave_sub();
811 }
812
813 sub form_footer {
814   $lxdebug->enter_sub();
815
816   $label     = ucfirst $form->{db};
817   $quotation =
818     ($form->{db} eq 'customer')
819     ? $locale->text('Save and Quotation')
820     : $locale->text('Save and RFQ');
821   $arap =
822     ($form->{db} eq 'customer')
823     ? $locale->text('Save and AR Transaction')
824     : $locale->text('Save and AP Transaction');
825   if ($vertreter) {
826     $update_button =
827       qq|<input class=submit type=submit name=action accesskey="u" value="|
828       . $locale->text("Update") . qq|">|;
829   } else {
830     $update_button = "";
831   }
832
833 ##<input class=submit type=submit name=action value="|.$locale->text("Save and Quotation").qq|">
834 ##<input class=submit type=submit name=action value="|.$locale->text("Save and RFQ").qq|">
835 ##<input class=submit type=submit name=action value="|.$locale->text("Save and AR Transaction").qq|">
836 ##<input class=submit type=submit name=action value="|.$locale->text("Save and AP Transaction").qq|">
837
838   print qq|
839 <input name=id type=hidden value=$form->{id}>
840 <input name=taxaccounts type=hidden value="$form->{taxaccounts}">
841 <input name=business_save type=hidden value="$form->{selectbusiness}">
842 <input name=title_save type=hidden value="$form->{title}">
843
844 <input type=hidden name=path value=$form->{path}>
845 <input type=hidden name=login value=$form->{login}>
846 <input type=hidden name=password value=$form->{password}>
847
848 <input type=hidden name=callback value="$form->{callback}">
849 <input type=hidden name=db value=$form->{db}>
850
851
852
853 <br>
854 $update_button
855 <input class=submit type=submit name=action accesskey="s" value="|
856     . $locale->text("Save") . qq|">
857 <input class=submit type=submit name=action value="$arap">
858 <input class=submit type=submit name=action value="|
859     . $locale->text("Save and Invoice") . qq|">
860 <input class=submit type=submit name=action value="|
861     . $locale->text("Save and Order") . qq|">
862 <input class=submit type=submit name=action value="$quotation">
863 |;
864
865   if ($form->{id} && $form->{status} eq 'orphaned') {
866     print qq|<input class=submit type=submit name=action value="|
867       . $locale->text('Delete')
868       . qq|">\n|;
869   }
870
871   if ($form->{menubar}) {
872     require "$form->{path}/menu.pl";
873     &menubar;
874   }
875
876   print qq|
877
878   </form>
879
880 </body>
881 </html>
882 |;
883
884   $lxdebug->leave_sub();
885 }
886
887 sub add_transaction {
888   $lxdebug->enter_sub();
889
890   $form->isblank("name", $locale->text("Name missing!"));
891   &{"CT::save_$form->{db}"}("", \%myconfig, \%$form);
892
893   $form->{callback} = $form->escape($form->{callback}, 1);
894   $name = $form->escape("$form->{name}", 1);
895
896   $form->{callback} =
897     "$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}";
898
899   $form->redirect;
900
901   $lxdebug->leave_sub();
902 }
903
904 sub save_and_ap_transaction {
905   $lxdebug->enter_sub();
906
907   $form->{script} = "ap.pl";
908   &add_transaction;
909
910   $lxdebug->leave_sub();
911 }
912
913 sub save_and_ar_transaction {
914   $lxdebug->enter_sub();
915
916   $form->{script} = "ar.pl";
917   &add_transaction;
918
919   $lxdebug->leave_sub();
920 }
921
922 sub save_and_invoice {
923   $lxdebug->enter_sub();
924
925   $form->{script} = ($form->{db} eq 'customer') ? "is.pl" : "ir.pl";
926   $form->{type} = "invoice";
927   &add_transaction;
928
929   $lxdebug->leave_sub();
930 }
931
932 sub save_and_rfq {
933   $lxdebug->enter_sub();
934
935   $form->{script} = "oe.pl";
936   $form->{type}   = "request_quotation";
937   &add_transaction;
938
939   $lxdebug->leave_sub();
940 }
941
942 sub save_and_quotation {
943   $lxdebug->enter_sub();
944
945   $form->{script} = "oe.pl";
946   $form->{type}   = "sales_quotation";
947   &add_transaction;
948
949   $lxdebug->leave_sub();
950 }
951
952 sub save_and_order {
953   $lxdebug->enter_sub();
954
955   $form->{script} = "oe.pl";
956   $form->{type}   =
957     ($form->{db} eq 'customer') ? "sales_order" : "purchase_order";
958   &add_transaction;
959
960   $lxdebug->leave_sub();
961 }
962
963 sub save {
964   $lxdebug->enter_sub();
965
966   # $locale->text('Customer saved!')
967   # $locale->text('Vendor saved!')
968
969   $msg = ucfirst $form->{db};
970   $imsg .= " saved!";
971
972   $form->isblank("name", $locale->text("Name missing!"));
973   if ($vertreter && $form->{db} eq "customer") {
974     $form->isblank("salesman_id", $locale->text("Salesman missing!"));
975   }
976   &{"CT::save_$form->{db}"}("", \%myconfig, \%$form);
977
978   $form->redirect($locale->text($msg));
979
980   $lxdebug->leave_sub();
981 }
982
983 sub delete {
984   $lxdebug->enter_sub();
985
986   # $locale->text('Customer deleted!')
987   # $locale->text('Cannot delete customer!')
988   # $locale->text('Vendor deleted!')
989   # $locale->text('Cannot delete vendor!')
990
991   CT->delete(\%myconfig, \%$form);
992
993   $msg = ucfirst $form->{db};
994   $msg .= " deleted!";
995   $form->redirect($locale->text($msg));
996
997   $msg = "Cannot delete $form->{db}";
998   $form->error($locale->text($msg));
999
1000   $lxdebug->leave_sub();
1001 }
1002
1003 sub display {
1004   $lxdebug->enter_sub();
1005
1006   &form_header();
1007   &form_footer();
1008
1009   $lxdebug->leave_sub();
1010 }
1011
1012 sub update {
1013   $lxdebug->enter_sub();
1014
1015   &check_salesman($form->{salesman});
1016
1017   #  $form->get_salesman(\%myconfig, $form->{salesman});
1018   &display();
1019   $lxdebug->leave_sub();
1020 }
1021
1022 sub check_salesman {
1023   $lxdebug->enter_sub();
1024
1025   my ($name) = @_;
1026
1027   my ($new_name, $new_id) = split /--/, $form->{$name};
1028   my $i = 0;
1029
1030   # check name, combine name and id
1031   if ($form->{"oldsalesman"} ne $form->{"salesman"}) {
1032
1033     # return one name or a list of names in $form->{name_list}
1034     if (($i = $form->get_salesman(\%myconfig, $name)) > 1) {
1035       &select_salesman($name);
1036       exit;
1037     }
1038
1039     if ($i == 1) {
1040
1041       # we got one name
1042       $form->{"salesman_id"} = $form->{salesman_list}[0]->{id};
1043       $form->{salesman}      = $form->{salesman_list}[0]->{name};
1044       $form->{"oldsalesman"} = $form->{salesman};
1045
1046     } else {
1047
1048       # name is not on file
1049       # $locale->text('Customer not on file!')
1050       # $locale->text('Vendor not on file!')
1051       $msg = ucfirst $name . " not on file or locked!";
1052       $form->error($locale->text($msg));
1053     }
1054   }
1055
1056   $lxdebug->leave_sub();
1057
1058   return $i;
1059 }
1060
1061 sub select_salesman {
1062   $lxdebug->enter_sub();
1063
1064   my ($table) = @_;
1065
1066   @column_index = qw(ndx name);
1067
1068   $label             = ucfirst $table;
1069   $column_data{ndx}  = qq|<th>&nbsp;</th>|;
1070   $column_data{name} =
1071     qq|<th class=listheading>| . $locale->text($label) . qq|</th>|;
1072
1073   # list items with radio button on a form
1074   $form->header;
1075
1076   $title = $locale->text('Select from one of the names below');
1077
1078   print qq|
1079 <body>
1080
1081 <form method=post action=$form->{script}>
1082
1083 <table width=100%>
1084   <tr>
1085     <th class=listtop>$title</th>
1086   </tr>
1087   <tr space=5></tr>
1088   <tr>
1089     <td>
1090       <table width=100%>
1091         <tr class=listheading>|;
1092
1093   map { print "\n$column_data{$_}" } @column_index;
1094
1095   print qq|
1096         </tr>
1097 |;
1098
1099   my $i = 0;
1100   foreach $ref (@{ $form->{salesman_list} }) {
1101     $checked = ($i++) ? "" : "checked";
1102
1103     $ref->{name} =~ s/\"/&quot;/g;
1104
1105     $column_data{ndx} =
1106       qq|<td><input name=ndx class=radio type=radio value=$i $checked></td>|;
1107     $column_data{name} =
1108       qq|<td><input name="new_name_$i" type=hidden value="$ref->{name}">$ref->{name}</td>|;
1109
1110     $j++;
1111     $j %= 2;
1112     print qq|
1113         <tr class=listrow$j>|;
1114
1115     map { print "\n$column_data{$_}" } @column_index;
1116
1117     print qq|
1118         </tr>
1119
1120 <input name="new_id_$i" type=hidden value=$ref->{id}>
1121
1122 |;
1123
1124   }
1125
1126   print qq|
1127       </table>
1128     </td>
1129   </tr>
1130   <tr>
1131     <td><hr size=3 noshade></td>
1132   </tr>
1133 </table>
1134
1135 <input name=lastndx type=hidden value=$i>
1136
1137 |;
1138
1139   # delete variables
1140   map { delete $form->{$_} } qw(action name_list header);
1141
1142   # save all other form variables
1143   foreach $key (keys %${form}) {
1144     $form->{$key} =~ s/\"/&quot;/g;
1145     print qq|<input name=$key type=hidden value="$form->{$key}">\n|;
1146   }
1147
1148   print qq|
1149 <input type=hidden name=nextsub value=salesman_selected>
1150
1151 <input type=hidden name=vc value=$table>
1152 <br>
1153 <input class=submit type=submit name=action value="|
1154     . $locale->text('Continue') . qq|">
1155 </form>
1156
1157 </body>
1158 </html>
1159 |;
1160
1161   $lxdebug->leave_sub();
1162 }
1163
1164 sub salesman_selected {
1165   $lxdebug->enter_sub();
1166
1167   # replace the variable with the one checked
1168
1169   # index for new item
1170   $i = $form->{ndx};
1171
1172   $form->{salesman}      = $form->{"new_name_$i"};
1173   $form->{"salesman_id"} = $form->{"new_id_$i"};
1174   $form->{"oldsalesman"} = $form->{salesman};
1175
1176   # delete all the new_ variables
1177   for $i (1 .. $form->{lastndx}) {
1178     map { delete $form->{"new_${_}_$i"} } (id, name);
1179   }
1180
1181   map { delete $form->{$_} } qw(ndx lastndx nextsub);
1182
1183   &update(1);
1184
1185   $lxdebug->leave_sub();
1186 }
1187
1188 sub continue { &{ $form->{nextsub} } }