Kosmetik: Perltidy-Lauf nach den Einstellungen in doc/programmierrichtlinien.txt...
[kivitendo-erp.git] / bin / mozilla / io.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 # Veraendert 2005-01-05 - Marco Welter <mawe@linux-studio.de> - Neue Optik  #
8 #############################################################################
9 # SQL-Ledger, Accounting
10 # Copyright (c) 1998-2002
11 #
12 #  Author: Dieter Simader
13 #   Email: dsimader@sql-ledger.org
14 #     Web: http://www.sql-ledger.org
15 #
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 #
32 # common routines used in is, ir, oe
33 #
34 #######################################################################
35
36 # any custom scripts for this one
37 if (-f "$form->{path}/custom_io.pl") {
38   eval { require "$form->{path}/custom_io.pl"; };
39 }
40 if (-f "$form->{path}/$form->{login}_io.pl") {
41   eval { require "$form->{path}/$form->{login}_io.pl"; };
42 }
43
44 1;
45
46 # end of main
47
48 # this is for our long dates
49 # $locale->text('January')
50 # $locale->text('February')
51 # $locale->text('March')
52 # $locale->text('April')
53 # $locale->text('May ')
54 # $locale->text('June')
55 # $locale->text('July')
56 # $locale->text('August')
57 # $locale->text('September')
58 # $locale->text('October')
59 # $locale->text('November')
60 # $locale->text('December')
61
62 # this is for our short month
63 # $locale->text('Jan')
64 # $locale->text('Feb')
65 # $locale->text('Mar')
66 # $locale->text('Apr')
67 # $locale->text('May')
68 # $locale->text('Jun')
69 # $locale->text('Jul')
70 # $locale->text('Aug')
71 # $locale->text('Sep')
72 # $locale->text('Oct')
73 # $locale->text('Nov')
74 # $locale->text('Dec')
75 use SL::IS;
76 use SL::PE;
77 use Data::Dumper;
78 ########################################
79 # Eintrag fuer Version 2.2.0 geaendert #
80 # neue Optik im Rechnungsformular      #
81 ########################################
82 sub display_row {
83   $lxdebug->enter_sub();
84   my $numrows = shift;
85   if ($lizenzen && $form->{vc} eq "customer") {
86     if ($form->{type} =~ /sales_order/) {
87       @column_index = (runningnumber, partnumber, description, ship, qty);
88     } elsif ($form->{type} =~ /sales_quotation/) {
89       @column_index = (runningnumber, partnumber, description, qty);
90     } else {
91       @column_index = (runningnumber, partnumber, description, qty);
92     }
93   } else {
94     if (   ($form->{type} =~ /purchase_order/)
95         || ($form->{type} =~ /sales_order/)) {
96       @column_index = (runningnumber, partnumber, description, ship, qty);
97         } else {
98       @column_index = (runningnumber, partnumber, description, qty);
99     }
100   }
101 ############## ENDE Neueintrag ##################
102
103   push @column_index, qw(unit);
104
105   #for pricegroups column
106   if (   $form->{type} =~ (/sales_quotation/)
107       or (($form->{level} =~ /Sales/) and ($form->{type} =~ /invoice/))
108       or (($form->{level} eq undef) and ($form->{type} =~ /invoice/))
109       or ($form->{type} =~ /sales_order/)) {
110     push @column_index, qw(sellprice_drag);
111   }
112
113   push @column_index, qw(sellprice);
114
115   if ($form->{vc} eq 'customer') {
116     push @column_index, qw(discount);
117   }
118
119   push @column_index, "linetotal";
120
121   my $colspan = $#column_index + 1;
122
123   $form->{invsubtotal} = 0;
124   map { $form->{"${_}_base"} = 0 } (split / /, $form->{taxaccounts});
125
126 ########################################
127   # Eintrag fuer Version 2.2.0 geaendert #
128   # neue Optik im Rechnungsformular      #
129 ########################################
130   $column_data{runningnumber} =
131       qq|<th align=left nowrap width=5 class=listheading>|
132     . $locale->text('No.')
133     . qq|</th>|;
134   $column_data{partnumber} =
135       qq|<th align=left nowrap width=12 class=listheading>|
136     . $locale->text('Number')
137     . qq|</th>|;
138   $column_data{description} =
139       qq|<th align=left nowrap width=30 class=listheading>|
140     . $locale->text('Part Description')
141     . qq|</th>|;
142   $column_data{ship} =
143       qq|<th align=left nowrap width=5 class=listheading>|
144     . $locale->text('Ship')
145     . qq|</th>|;
146   $column_data{qty} =
147       qq|<th align=left nowrap width=5 class=listheading>|
148     . $locale->text('Qty')
149     . qq|</th>|;
150   $column_data{unit} =
151       qq|<th align=left nowrap width=5 class=listheading>|
152     . $locale->text('Unit')
153     . qq|</th>|;
154   $column_data{license} =
155       qq|<th align=left nowrap width=10 class=listheading>|
156     . $locale->text('License')
157     . qq|</th>|;
158   $column_data{serialnr} =
159       qq|<th align=left nowrap width=10 class=listheading>|
160     . $locale->text('Serial No.')
161     . qq|</th>|;
162   $column_data{projectnr} =
163       qq|<th align=left nowrap width=10 class=listheading>|
164     . $locale->text('Project')
165     . qq|</th>|;
166   $column_data{sellprice} =
167       qq|<th align=left nowrap width=15 class=listheading>|
168     . $locale->text('Price')
169     . qq|</th>|;
170   $column_data{sellprice_drag} =
171       qq|<th align=left nowrap width=15 class=listheading>|
172     . $locale->text('Pricegroup')
173     . qq|</th>|;
174   $column_data{discount} =
175       qq|<th align=left class=listheading>|
176     . $locale->text('Discount')
177     . qq|</th>|;
178   $column_data{linetotal} =
179       qq|<th align=left nowrap width=10 class=listheading>|
180     . $locale->text('Extended')
181     . qq|</th>|;
182   $column_data{bin} =
183       qq|<th align=left nowrap width=10 class=listheading>|
184     . $locale->text('Bin')
185     . qq|</th>|;
186 ############## ENDE Neueintrag ##################
187
188   print qq|
189   <tr>
190     <td>
191       <table width=100%>
192         <tr class=listheading>|;
193
194   map { print "\n$column_data{$_}" } @column_index;
195
196   print qq|
197         </tr>
198 |;
199
200   $runningnumber = $locale->text('No.');
201   $deliverydate  = $locale->text('Delivery Date');
202   $serialnumber  = $locale->text('Serial No.');
203   $projectnumber = $locale->text('Project');
204   $partsgroup    = $locale->text('Group');
205   $reqdate       = $locale->text('Reqdate');
206
207   $delvar = 'deliverydate';
208
209   if ($form->{type} =~ /_order$/ || $form->{type} =~ /_quotation$/) {
210     $deliverydate = $locale->text('Required by');
211     $delvar       = 'reqdate';
212   }
213
214   for $i (1 .. $numrows) {
215
216     # undo formatting
217     map {
218       $form->{"${_}_$i"} =
219         $form->parse_amount(\%myconfig, $form->{"${_}_$i"})
220     } qw(qty ship discount sellprice price_new price_old);
221
222     ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
223     $dec           = length $dec;
224     $decimalplaces = ($dec > 2) ? $dec : 2;
225
226     $discount =
227       $form->round_amount(
228                         $form->{"sellprice_$i"} * $form->{"discount_$i"} / 100,
229                         $decimalplaces);
230
231     $linetotal =
232       $form->round_amount($form->{"sellprice_$i"} - $discount, $decimalplaces);
233     $linetotal = $form->round_amount($linetotal * $form->{"qty_$i"}, 2);
234
235     # convert " to &quot;
236     map { $form->{"${_}_$i"} =~ s/\"/&quot;/g }
237       qw(partnumber description unit);
238
239 ########################################
240     # Eintrag fuer Version 2.2.0 geaendert #
241     # neue Optik im Rechnungsformular      #
242 ########################################
243     $column_data{runningnumber} =
244       qq|<td><input name="runningnumber_$i" size=5 value=$i></td>|;    # HuT
245 ############## ENDE Neueintrag ##################
246
247     $column_data{partnumber} =
248       qq|<td><input name="partnumber_$i" size=12 value="$form->{"partnumber_$i"}"></td>|;
249
250     if (($rows = $form->numtextrows($form->{"description_$i"}, 30, 6)) > 1) {
251       $column_data{description} =
252         qq|<td><textarea name="description_$i" rows=$rows cols=30 wrap=soft>$form->{"description_$i"}</textarea></td>|;
253     } else {
254       $column_data{description} =
255         qq|<td><input name="description_$i" size=30 value="$form->{"description_$i"}"></td>|;
256     }
257
258     (my $qty_dec) = ($form->{"qty_$i"} =~ /\.(\d+)/);
259     $qty_dec = length $qty_dec;
260
261     $column_data{qty} =
262         qq|<td align=right><input name="qty_$i" size=5 value=|
263       . $form->format_amount(\%myconfig, $form->{"qty_$i"}, $qty_dec)
264       . qq|></td>|;
265     $column_data{ship} =
266         qq|<td align=right><input name="ship_$i" size=5 value=|
267       . $form->format_amount(\%myconfig, $form->{"ship_$i"})
268       . qq|></td>|;
269     $column_data{unit} =
270       qq|<td><input name="unit_$i" size=5 value="$form->{"unit_$i"}"></td>|;
271
272     # build in dragdrop for pricesgroups
273     if ($form->{"prices_$i"}) {
274       $price_tmp =
275         $form->format_amount(\%myconfig, $form->{"price_new_$i"}, 2);
276
277       $column_data{sellprice_drag} =
278         qq|<td align=right><select name="sellprice_drag_$i">$form->{"prices_$i"}</select></td>|;
279       $column_data{sellprice} =
280         qq|<td><input name="sellprice_$i" size=5 value=$price_tmp></td>|;
281     } else {
282
283       # for last row and report
284       # set pricegroup dragdrop from report menu
285       if ($form->{"sellprice_$i"} != 0) {
286         $prices =
287           qq|<option value="$form->{"sellprice_$i"}--$form->{"pricegroup_id_$i"}" selected>$form->{"pricegroup_$i"}</option>\n|;
288
289         $form->{"pricegroup_old_$i"} = $form->{"pricegroup_id_$i"};
290
291         $column_data{sellprice_drag} =
292           qq|<td align=right><select name="sellprice_drag_$i">$prices</select></td>|;
293
294       } else {
295
296         # for last row
297         $column_data{sellprice_drag} =
298           qq|<td align=right><input name="sellprice_$i" size=9 value=|
299           . $form->format_amount(\%myconfig, $form->{"prices_$i"},
300                                  $decimalplaces)
301           . qq|></td>|;
302       }
303
304       $column_data{sellprice} =
305         qq|<td><input name="sellprice_$i" size=5 value=|
306         . $form->format_amount(\%myconfig, $form->{"sellprice_$i"},
307                                $decimalplaces)
308         . qq|></td>|;
309     }
310     $column_data{discount} =
311         qq|<td align=right><input name="discount_$i" size=3 value=|
312       . $form->format_amount(\%myconfig, $form->{"discount_$i"})
313       . qq|></td>|;
314     $column_data{linetotal} =
315         qq|<td align=right>|
316       . $form->format_amount(\%myconfig, $linetotal, 2)
317       . qq|</td>|;
318     $column_data{bin} = qq|<td>$form->{"bin_$i"}</td>|;
319
320 ########################################
321     # Eintrag fuer Version 2.2.0 geaendert #
322     # neue Optik im Rechnungsformular      #
323 ########################################
324     #     if ($lizenzen &&  $form->{type} eq "invoice" &&  $form->{vc} eq "customer") {
325     #     $column_data{license} = qq|<td><select name="licensenumber_$i">$form->{"lizenzen_$i"}></select></td>|;
326     #     }
327     #
328     #     if ($form->{type} !~ /_quotation/) {
329     #     $column_data{serialnr} = qq|<td><input name="serialnumber_$i" size=10 value="$form->{"serialnumber_$i"}"></td>|;
330     #     }
331     #
332     #     $column_data{projectnr} = qq|<td><input name="projectnumber_$i" size=10 value="$form->{"projectnumber_$i"}"></td>|;
333 ############## ENDE Neueintrag ##################
334
335     print qq|
336         <tr valign=top>|;
337
338     map { print "\n$column_data{$_}" } @column_index;
339
340     print qq|
341         </tr>
342
343 <input type=hidden name="orderitems_id_$i" value=$form->{"orderitems_id_$i"}>
344 <input type=hidden name="bo_$i" value=$form->{"bo_$i"}>
345
346 <input type=hidden name="pricegroup_old_$i" value=$form->{"pricegroup_old_$i"}>
347 <input type=hidden name="price_old_$i" value=$form->{"price_old_$i"}>
348 <input type=hidden name="price_new_$i" value=|
349       . $form->format_amount(\%myconfig, $form->{"price_new_$i"}) . qq|>
350
351 <input type=hidden name="id_$i" value=$form->{"id_$i"}>
352 <input type=hidden name="inventory_accno_$i" value=$form->{"inventory_accno_$i"}>
353 <input type=hidden name="bin_$i" value="$form->{"bin_$i"}">
354 <input type=hidden name="partsgroup_$i" value="$form->{"partsgroup_$i"}">
355 <input type=hidden name="partnotes_$i" value="$form->{"partnotes_$i"}">
356 <input type=hidden name="income_accno_$i" value=$form->{"income_accno_$i"}>
357 <input type=hidden name="expense_accno_$i" value=$form->{"expense_accno_$i"}>
358 <input type=hidden name="listprice_$i" value="$form->{"listprice_$i"}">
359 <input type=hidden name="assembly_$i" value="$form->{"assembly_$i"}">
360 <input type=hidden name="taxaccounts_$i" value="$form->{"taxaccounts_$i"}">
361 <input type=hidden name="ordnumber_$i" value="$form->{"ordnumber_$i"}">
362 <input type=hidden name="transdate_$i" value="$form->{"transdate_$i"}">
363 <input type=hidden name="cusordnumber_$i" value="$form->{"cusordnumber_$i"}">
364
365 |;
366
367 ########################################
368     # Eintrag fuer Version 2.2.0 geaendert #
369     # neue Optik im Rechnungsformular      #
370 ########################################
371     # print second row
372     print qq|
373         <tr>
374           <td colspan=$colspan>
375 |;
376     if ($lizenzen && $form->{type} eq "invoice" && $form->{vc} eq "customer") {
377       my $selected = $form->{"licensenumber_$i"};
378       my $lizenzen_quoted;
379       $form->{"lizenzen_$i"} =~ s/ selected//g;
380       $form->{"lizenzen_$i"} =~
381         s/value="${selected}"\>/value="${selected}" selected\>/;
382       $lizenzen_quoted = $form->{"lizenzen_$i"};
383       $lizenzen_quoted =~ s/\"/&quot;/g;
384       print qq|
385         <b>Lizenz\#</b>&nbsp;<select name="licensenumber_$i" size=1>
386         $form->{"lizenzen_$i"}
387         </select>
388         <input type=hidden name="lizenzen_$i" value="${lizenzen_quoted}">
389 |;
390     }
391     if ($form->{type} !~ /_quotation/) {
392       print qq|
393           <b>$serialnumber</b>&nbsp;<input name="serialnumber_$i" size=15 value="$form->{"serialnumber_$i"}">|;
394     }
395
396     print qq|
397           <b>$projectnumber</b>&nbsp;<input name="projectnumber_$i" size=10 value="$form->{"projectnumber_$i"}">
398                   <input type=hidden name="oldprojectnumber_$i" value="$form->{"oldprojectnumber_$i"}">
399                   <input type=hidden name="project_id_$i" value="$form->{"project_id_$i"}">
400 |;
401     if ($form->{type} eq 'invoice' or $form->{type} =~ /order/) {
402       my $reqdate_term =
403         ($form->{type} eq 'invoice')
404         ? 'deliverydate'
405         : 'reqdate';    # invoice uses a different term for the same thing.
406       print qq|
407         <b>${$reqdate_term}</b>&nbsp;<input name="${reqdate_term}_$i" size=11 value="$form->{"${reqdate_term}_$i"}">
408 |;
409     }
410
411     print qq|
412           </td>
413         </tr>
414
415 |;
416
417 ############## ENDE Neueintrag ##################
418
419     map { $form->{"${_}_base"} += $linetotal }
420       (split / /, $form->{"taxaccounts_$i"});
421
422     $form->{invsubtotal} += $linetotal;
423   }
424
425   print qq|
426       </table>
427     </td>
428   </tr>
429 |;
430
431   $lxdebug->leave_sub();
432 }
433
434 ##################################################
435 # build html-code for pricegroups in variable $form->{prices_$j}
436
437 sub set_pricegroup {
438   my $rowcount = shift;
439   $lxdebug->enter_sub();
440   for $j (1 .. $rowcount) {
441     my $pricegroup_old = $form->{"pricegroup_old_$i"};
442     if ($form->{PRICES}{$j}) {
443       $len    = 0;
444       $prices = '';
445       $price  = 0;
446       foreach $item (@{ $form->{PRICES}{$j} }) {
447
448         #$price = $form->round_amount($myconfig,  $item->{price}, 5);
449         #$price = $form->format_amount($myconfig, $item->{price}, 2);
450         $price         = $item->{price};
451         $pricegroup_id = $item->{pricegroup_id};
452         $pricegroup    = $item->{pricegroup};
453
454         # build dragdrop for pricegroups
455         $prices .=
456           qq|<option value="$price--$pricegroup_id"$item->{selected}>$pricegroup</option>\n|;
457
458         $len += 1;
459
460         #        map {
461         #               $form->{"${_}_$j"} =
462         #               $form->format_amount(\%myconfig, $form->{"${_}_$j"})
463         #              } qw(sellprice price_new price_old);
464
465         # set new selectedpricegroup_id and prices for "Preis"
466         if ($item->{selected} && ($pricegroup_id != 0)) {
467           $form->{"pricegroup_old_$j"} = $pricegroup_id;
468           $form->{"price_new_$j"}      = $price;
469           $form->{"sellprice_$j"}      = $price;
470         }
471         if ($pricegroup_id == 0) {
472           $form->{"price_new_$j"} = $form->{"sellprice_$j"};
473         }
474         if ($len > 1) {
475           $form->{"prices_$j"} = $prices;
476         }
477       }
478     }
479   }
480   $lxdebug->leave_sub();
481 }
482
483 sub select_item {
484   $lxdebug->enter_sub();
485   @column_index = qw(ndx partnumber description onhand sellprice);
486
487   $column_data{ndx}        = qq|<th>&nbsp;</th>|;
488   $column_data{partnumber} =
489     qq|<th class=listheading>| . $locale->text('Number') . qq|</th>|;
490   $column_data{description} =
491     qq|<th class=listheading>| . $locale->text('Part Description') . qq|</th>|;
492   $column_data{sellprice} =
493     qq|<th class=listheading>| . $locale->text('Price') . qq|</th>|;
494   $column_data{onhand} =
495     qq|<th class=listheading>| . $locale->text('Qty') . qq|</th>|;
496
497   # list items with radio button on a form
498   $form->header;
499
500   $title   = $locale->text('Select from one of the items below');
501   $colspan = $#column_index + 1;
502
503   print qq|
504 <body>
505
506 <form method=post action=$form->{script}>
507
508 <table width=100%>
509   <tr>
510     <th class=listtop colspan=$colspan>$title</th>
511   </tr>
512   <tr height="5"></tr>
513   <tr class=listheading>|;
514
515   map { print "\n$column_data{$_}" } @column_index;
516
517   print qq|</tr>|;
518
519   my $i = 0;
520   foreach $ref (@{ $form->{item_list} }) {
521     $checked = ($i++) ? "" : "checked";
522
523     if ($lizenzen) {
524       if ($ref->{inventory_accno} > 0) {
525         $ref->{"lizenzen"} = qq|<option></option>|;
526         foreach $item (@{ $form->{LIZENZEN}{ $ref->{"id"} } }) {
527           $ref->{"lizenzen"} .=
528             qq|<option value=\"$item->{"id"}\">$item->{"licensenumber"}</option>|;
529         }
530         $ref->{"lizenzen"} .= qq|<option value=-1>Neue Lizenz</option>|;
531         $ref->{"lizenzen"} =~ s/\"/&quot;/g;
532       }
533     }
534
535     map { $ref->{$_} =~ s/\"/&quot;/g } qw(partnumber description unit);
536
537     #sk tradediscount
538     $ref->{sellprice} =
539       $form->round_amount($ref->{sellprice} * (1 - $form->{tradediscount}), 2);
540     $column_data{ndx} =
541       qq|<td><input name=ndx class=radio type=radio value=$i $checked></td>|;
542     $column_data{partnumber} =
543       qq|<td><input name="new_partnumber_$i" type=hidden value="$ref->{partnumber}">$ref->{partnumber}</td>|;
544     $column_data{description} =
545       qq|<td><input name="new_description_$i" type=hidden value="$ref->{description}">$ref->{description}</td>|;
546     $column_data{sellprice} =
547       qq|<td align=right><input name="new_sellprice_$i" type=hidden value=$ref->{sellprice}>|
548       . $form->format_amount(\%myconfig, $ref->{sellprice}, 2, "&nbsp;")
549       . qq|</td>|;
550     $column_data{onhand} =
551       qq|<td align=right><input name="new_onhand_$i" type=hidden value=$ref->{onhand}>|
552       . $form->format_amount(\%myconfig, $ref->{onhand}, '', "&nbsp;")
553       . qq|</td>|;
554
555     $j++;
556     $j %= 2;
557     print qq|
558 <tr class=listrow$j>|;
559
560     map { print "\n$column_data{$_}" } @column_index;
561
562     print qq|
563 </tr>
564
565 <input name="new_bin_$i" type=hidden value="$ref->{bin}">
566 <input name="new_listprice_$i" type=hidden value=$ref->{listprice}>
567 <input name="new_inventory_accno_$i" type=hidden value=$ref->{inventory_accno}>
568 <input name="new_income_accno_$i" type=hidden value=$ref->{income_accno}>
569 <input name="new_expense_accno_$i" type=hidden value=$ref->{expense_accno}>
570 <input name="new_unit_$i" type=hidden value="$ref->{unit}">
571 <input name="new_weight_$i" type=hidden value="$ref->{weight}">
572 <input name="new_assembly_$i" type=hidden value="$ref->{assembly}">
573 <input name="new_taxaccounts_$i" type=hidden value="$ref->{taxaccounts}">
574 <input name="new_partsgroup_$i" type=hidden value="$ref->{partsgroup}">
575
576 <input name="new_id_$i" type=hidden value=$ref->{id}>
577
578 |;
579     if ($lizenzen) {
580       print qq|
581 <input name="new_lizenzen_$i" type=hidden value="$ref->{lizenzen}">
582 |;
583     }
584
585   }
586
587   print qq|
588 <tr><td colspan=8><hr size=3 noshade></td></tr>
589 </table>
590
591 <input name=lastndx type=hidden value=$i>
592
593 |;
594
595   # delete action variable
596   map { delete $form->{$_} } qw(action item_list header);
597
598   # save all other form variables
599   foreach $key (keys %${form}) {
600     $form->{$key} =~ s/\"/&quot;/g;
601     print qq|<input name=$key type=hidden value="$form->{$key}">\n|;
602   }
603
604   print qq|
605 <input type=hidden name=nextsub value=item_selected>
606
607 <br>
608 <input class=submit type=submit name=action value="|
609     . $locale->text('Continue') . qq|">
610 </form>
611
612 </body>
613 </html>
614 |;
615
616   $lxdebug->leave_sub();
617 }
618
619 sub item_selected {
620   $lxdebug->enter_sub();
621
622   # replace the last row with the checked row
623   $i = $form->{rowcount};
624   $i = $form->{assembly_rows} if ($form->{item} eq 'assembly');
625
626   # index for new item
627   $j = $form->{ndx};
628
629   #sk
630   #($form->{"sellprice_$i"},$form->{"$pricegroup_old_$i"}) = split /--/, $form->{"sellprice_$i"};
631   #$form->{"sellprice_$i"} = $form->{"sellprice_$i"};
632
633   # if there was a price entered, override it
634   $sellprice = $form->parse_amount(\%myconfig, $form->{"sellprice_$i"});
635
636   map { $form->{"${_}_$i"} = $form->{"new_${_}_$j"} }
637     qw(id partnumber description sellprice listprice inventory_accno income_accno expense_accno bin unit weight assembly taxaccounts partsgroup);
638
639   if ($lizenzen) {
640     map { $form->{"${_}_$i"} = $form->{"new_${_}_$j"} } qw(lizenzen);
641   }
642
643   ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
644   $dec           = length $dec;
645   $decimalplaces = ($dec > 2) ? $dec : 2;
646
647   if ($sellprice) {
648     $form->{"sellprice_$i"} = $sellprice;
649   } else {
650
651     # if there is an exchange rate adjust sellprice
652     if (($form->{exchangerate} * 1) != 0) {
653       $form->{"sellprice_$i"} /= $form->{exchangerate};
654       $form->{"sellprice_$i"} =
655         $form->round_amount($form->{"sellprice_$i"}, $decimalplaces);
656     }
657   }
658
659   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
660     qw(sellprice listprice weight);
661
662   $form->{sellprice} += ($form->{"sellprice_$i"} * $form->{"qty_$i"});
663   $form->{weight}    += ($form->{"weight_$i"} * $form->{"qty_$i"});
664
665   $amount =
666     $form->{"sellprice_$i"} * (1 - $form->{"discount_$i"} / 100) *
667     $form->{"qty_$i"};
668   map { $form->{"${_}_base"} += $amount }
669     (split / /, $form->{"taxaccounts_$i"});
670   map { $amount += ($form->{"${_}_base"} * $form->{"${_}_rate"}) } split / /,
671     $form->{"taxaccounts_$i"}
672     if !$form->{taxincluded};
673
674   $form->{creditremaining} -= $amount;
675
676   $form->{"runningnumber_$i"} = $i;
677
678   # delete all the new_ variables
679   for $i (1 .. $form->{lastndx}) {
680     map { delete $form->{"new_${_}_$i"} }
681       qw(partnumber description sellprice bin listprice inventory_accno income_accno expense_accno unit assembly taxaccounts id);
682   }
683
684   map { delete $form->{$_} } qw(ndx lastndx nextsub);
685
686   # format amounts
687   map {
688     $form->{"${_}_$i"} =
689       $form->format_amount(\%myconfig, $form->{"${_}_$i"}, $decimalplaces)
690   } qw(sellprice listprice) if $form->{item} ne 'assembly';
691
692   # get pricegroups for parts
693   IS->get_pricegroups_for_parts(\%myconfig, \%$form);
694
695   # build up html code for prices_$i
696   set_pricegroup($form->{rowcount});
697
698   &display_form;
699
700   $lxdebug->leave_sub();
701 }
702
703 sub new_item {
704   $lxdebug->enter_sub();
705
706   # change callback
707   $form->{old_callback} = $form->escape($form->{callback}, 1);
708   $form->{callback} = $form->escape("$form->{script}?action=display_form", 1);
709
710   # delete action
711   delete $form->{action};
712
713   # save all other form variables in a previousform variable
714   foreach $key (keys %$form) {
715
716     # escape ampersands
717     $form->{$key} =~ s/&/%26/g;
718     $previousform .= qq|$key=$form->{$key}&|;
719   }
720   chop $previousform;
721   $previousform = $form->escape($previousform, 1);
722
723   $i = $form->{rowcount};
724   map { $form->{"${_}_$i"} =~ s/\"/&quot;/g } qw(partnumber description);
725
726   $form->header;
727
728   print qq|
729 <body>
730
731 <h4 class=error>| . $locale->text('Item not on file!') . qq|
732
733 <p>
734 | . $locale->text('What type of item is this?') . qq|</h4>
735
736 <form method=post action=ic.pl>
737
738 <p>
739
740   <input class=radio type=radio name=item value=part checked>&nbsp;|
741     . $locale->text('Part') . qq|<br>
742   <input class=radio type=radio name=item value=service>&nbsp;|
743     . $locale->text('Service')
744
745     . qq|
746 <input type=hidden name=previousform value="$previousform">
747 <input type=hidden name=partnumber value="$form->{"partnumber_$i"}">
748 <input type=hidden name=description value="$form->{"description_$i"}">
749 <input type=hidden name=rowcount value=$form->{rowcount}>
750 <input type=hidden name=taxaccount2 value=$form->{taxaccounts}>
751 <input type=hidden name=vc value=$form->{vc}>
752
753 <input type=hidden name=path value=$form->{path}>
754 <input type=hidden name=login value=$form->{login}>
755 <input type=hidden name=password value=$form->{password}>
756
757 <input type=hidden name=nextsub value=add>
758
759 <p>
760 <input class=submit type=submit name=action value="|
761     . $locale->text('Continue') . qq|">
762 </form>
763
764 </body>
765 </html>
766 |;
767
768   $lxdebug->leave_sub();
769 }
770
771 sub display_form {
772   $lxdebug->enter_sub();
773
774   # if we have a display_form
775   if ($form->{display_form}) {
776     &{"$form->{display_form}"};
777     exit;
778   }
779
780   #   if (   $form->{print_and_post}
781   #       && $form->{second_run}
782   #       && ($form->{action} eq "display_form")) {
783   #     for (keys %$form) { $old_form->{$_} = $form->{$_} }
784   #     $old_form->{rowcount}++;
785   #
786   #     #$form->{rowcount}--;
787   #     #$form->{rowcount}--;
788   #
789   #     $form->{print_and_post} = 0;
790   #
791   #     &print_form($old_form);
792   #     exit;
793   #   }
794   #
795   #   $form->{action}   = "";
796   #   $form->{resubmit} = 0;
797   #
798   #   if ($form->{print_and_post} && !$form->{second_run}) {
799   #     $form->{second_run} = 1;
800   #     $form->{action}     = "display_form";
801   #     $form->{rowcount}--;
802   #     my $rowcount = $form->{rowcount};
803   #
804   #     # get pricegroups for parts
805   #     IS->get_pricegroups_for_parts(\%myconfig, \%$form);
806   #
807   #     # build up html code for prices_$i
808   #     set_pricegroup($rowcount);
809   #
810   #     $form->{resubmit} = 1;
811   #
812   #   }
813   &form_header;
814
815   $numrows    = ++$form->{rowcount};
816   $subroutine = "display_row";
817
818   if ($form->{item} eq 'part') {
819
820     #set preisgruppenanzahl
821     $numrows    = $form->{price_rows};
822     $subroutine = "price_row";
823
824     &{$subroutine}($numrows);
825
826     $numrows    = ++$form->{makemodel_rows};
827     $subroutine = "makemodel_row";
828   }
829   if ($form->{item} eq 'assembly') {
830     $numrows    = ++$form->{price_rows};
831     $subroutine = "price_row";
832
833     &{$subroutine}($numrows);
834
835     $numrows    = ++$form->{makemodel_rows};
836     $subroutine = "makemodel_row";
837
838     # create makemodel rows
839     &{$subroutine}($numrows);
840
841     $numrows    = ++$form->{assembly_rows};
842     $subroutine = "assembly_row";
843   }
844   if ($form->{item} eq 'service') {
845     $numrows    = $form->{price_rows};
846     $subroutine = "price_row";
847
848     &{$subroutine}($numrows);
849
850     $numrows = 0;
851   }
852
853   # create rows
854   &{$subroutine}($numrows) if $numrows;
855
856   &form_footer;
857
858   $lxdebug->leave_sub();
859 }
860
861 sub check_form {
862   $lxdebug->enter_sub();
863   my @a     = ();
864   my $count = 0;
865   my @flds  = (
866     qw(id partnumber description qty ship sellprice unit discount inventory_accno income_accno expense_accno listprice taxaccounts bin assembly weight projectnumber project_id oldprojectnumber runningnumber serialnumber partsgroup)
867   );
868
869   # remove any makes or model rows
870   if ($form->{item} eq 'part') {
871     map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
872       qw(listprice sellprice lastcost weight rop);
873
874     @flds = (make, model);
875     for my $i (1 .. ($form->{makemodel_rows})) {
876       if (($form->{"make_$i"} ne "") || ($form->{"model_$i"} ne "")) {
877         push @a, {};
878         my $j = $#a;
879
880         map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
881         $count++;
882       }
883     }
884
885     $form->redo_rows(\@flds, \@a, $count, $form->{makemodel_rows});
886     $form->{makemodel_rows} = $count;
887
888   } elsif ($form->{item} eq 'assembly') {
889
890     $form->{sellprice} = 0;
891     $form->{weight}    = 0;
892     map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
893       qw(listprice rop stock);
894
895     @flds =
896       qw(id qty unit bom partnumber description sellprice weight runningnumber partsgroup);
897
898     for my $i (1 .. ($form->{assembly_rows} - 1)) {
899       if ($form->{"qty_$i"}) {
900         push @a, {};
901         my $j = $#a;
902
903         $form->{"qty_$i"} = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
904
905         map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
906
907         #($form->{"sellprice_$i"},$form->{"$pricegroup_old_$i"}) = split /--/, $form->{"sellprice_$i"};
908
909         $form->{sellprice} += ($form->{"qty_$i"} * $form->{"sellprice_$i"});
910         $form->{weight}    += ($form->{"qty_$i"} * $form->{"weight_$i"});
911         $count++;
912       }
913     }
914
915     $form->{sellprice} = $form->round_amount($form->{sellprice}, 2);
916
917     $form->redo_rows(\@flds, \@a, $count, $form->{assembly_rows});
918     $form->{assembly_rows} = $count;
919
920     $count = 0;
921     @flds  = qw(make model);
922     @a     = ();
923
924     for my $i (1 .. ($form->{makemodel_rows})) {
925       if (($form->{"make_$i"} ne "") || ($form->{"model_$i"} ne "")) {
926         push @a, {};
927         my $j = $#a;
928
929         map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
930         $count++;
931       }
932     }
933
934     $form->redo_rows(\@flds, \@a, $count, $form->{makemodel_rows});
935     $form->{makemodel_rows} = $count;
936
937   } else {
938
939     # this section applies to invoices and orders
940     # remove any empty numbers
941     if ($form->{rowcount}) {
942       for my $i (1 .. $form->{rowcount} - 1) {
943         if ($form->{"partnumber_$i"}) {
944           push @a, {};
945           my $j = $#a;
946
947           map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
948           $count++;
949           if ($lizenzen) {
950             if ($form->{"licensenumber_$i"} == -1) {
951               &new_license($i);
952               exit;
953             }
954           }
955         }
956       }
957
958       $form->redo_rows(\@flds, \@a, $count, $form->{rowcount});
959       $form->{rowcount} = $count;
960
961       $form->{creditremaining} -= &invoicetotal;
962
963     }
964   }
965
966   #sk
967   # if pricegroups
968   if (   $form->{type} =~ (/sales_quotation/)
969       or (($form->{level} =~ /Sales/) and ($form->{type} =~ /invoice/))
970       or (($form->{level} eq undef) and ($form->{type} =~ /invoice/))
971       or ($form->{type} =~ /sales_order/)) {
972
973     # get pricegroups for parts
974     IS->get_pricegroups_for_parts(\%myconfig, \%$form);
975
976     # build up html code for prices_$i
977     set_pricegroup($form->{rowcount});
978
979   }
980
981   &display_form;
982
983   $lxdebug->leave_sub();
984 }
985
986 sub invoicetotal {
987   $lxdebug->enter_sub();
988
989   $form->{oldinvtotal} = 0;
990
991   # add all parts and deduct paid
992   map { $form->{"${_}_base"} = 0 } split / /, $form->{taxaccounts};
993
994   my ($amount, $sellprice, $discount, $qty);
995
996   for my $i (1 .. $form->{rowcount}) {
997     $sellprice = $form->parse_amount(\%myconfig, $form->{"sellprice_$i"});
998     $discount  = $form->parse_amount(\%myconfig, $form->{"discount_$i"});
999     $qty       = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
1000
1001     #($form->{"sellprice_$i"}, $form->{"$pricegroup_old_$i"}) = split /--/, $form->{"sellprice_$i"};
1002
1003     $amount = $sellprice * (1 - $discount / 100) * $qty;
1004     map { $form->{"${_}_base"} += $amount }
1005       (split / /, $form->{"taxaccounts_$i"});
1006     $form->{oldinvtotal} += $amount;
1007   }
1008
1009   map { $form->{oldinvtotal} += ($form->{"${_}_base"} * $form->{"${_}_rate"}) }
1010     split / /, $form->{taxaccounts}
1011     if !$form->{taxincluded};
1012
1013   $form->{oldtotalpaid} = 0;
1014   for $i (1 .. $form->{paidaccounts}) {
1015     $form->{oldtotalpaid} += $form->{"paid_$i"};
1016   }
1017
1018   $lxdebug->leave_sub();
1019
1020   # return total
1021   return ($form->{oldinvtotal} - $form->{oldtotalpaid});
1022 }
1023
1024 sub validate_items {
1025   $lxdebug->enter_sub();
1026
1027   # check if items are valid
1028   if ($form->{rowcount} == 1) {
1029     &update;
1030     exit;
1031   }
1032
1033   for $i (1 .. $form->{rowcount} - 1) {
1034     $form->isblank("partnumber_$i",
1035                    $locale->text('Number missing in Row') . " $i");
1036   }
1037
1038   $lxdebug->leave_sub();
1039 }
1040
1041 sub order {
1042   $lxdebug->enter_sub();
1043   if ($form->{second_run}) {
1044     $form->{print_and_post} = 0;
1045   }
1046   $form->{ordnumber} = $form->{invnumber};
1047
1048   map { delete $form->{$_} } qw(id printed emailed queued);
1049   if ($form->{script} eq 'ir.pl' || $form->{type} eq 'request_quotation') {
1050     $form->{title} = $locale->text('Add Purchase Order');
1051     $form->{vc}    = 'vendor';
1052     $form->{type}  = 'purchase_order';
1053     $buysell       = 'sell';
1054   }
1055   if ($form->{script} eq 'is.pl' || $form->{type} eq 'sales_quotation') {
1056     $form->{title} = $locale->text('Add Sales Order');
1057     $form->{vc}    = 'customer';
1058     $form->{type}  = 'sales_order';
1059     $buysell       = 'buy';
1060   }
1061   $form->{script} = 'oe.pl';
1062
1063   $form->{shipto} = 1;
1064
1065   $form->{rowcount}--;
1066
1067   ($null, $form->{cp_id}) = split /--/, $form->{contact};
1068   $form->{cp_id} *= 1;
1069
1070   require "$form->{path}/$form->{script}";
1071
1072   map { $form->{"select$_"} = "" } ($form->{vc}, currency);
1073
1074   $currency = $form->{currency};
1075
1076   &order_links;
1077
1078   $form->{currency}     = $currency;
1079   $form->{exchangerate} = "";
1080   $form->{forex}        = "";
1081   $form->{exchangerate} = $exchangerate
1082     if (
1083         $form->{forex} = (
1084                   $exchangerate =
1085                     $form->check_exchangerate(
1086                     \%myconfig, $form->{currency}, $form->{transdate}, $buysell
1087                     )));
1088
1089   &prepare_order;
1090   &display_form;
1091
1092   $lxdebug->leave_sub();
1093 }
1094
1095 sub quotation {
1096   $lxdebug->enter_sub();
1097   if ($form->{second_run}) {
1098     $form->{print_and_post} = 0;
1099   }
1100   map { delete $form->{$_} } qw(id printed emailed queued);
1101
1102   if ($form->{script} eq 'ir.pl' || $form->{type} eq 'purchase_order') {
1103     $form->{title} = $locale->text('Add Request for Quotation');
1104     $form->{vc}    = 'vendor';
1105     $form->{type}  = 'request_quotation';
1106     $buysell       = 'sell';
1107   }
1108   if ($form->{script} eq 'is.pl' || $form->{type} eq 'sales_order') {
1109     $form->{title} = $locale->text('Add Quotation');
1110     $form->{vc}    = 'customer';
1111     $form->{type}  = 'sales_quotation';
1112     $buysell       = 'buy';
1113   }
1114
1115   ($null, $form->{cp_id}) = split /--/, $form->{contact};
1116   $form->{cp_id} *= 1;
1117
1118   $form->{script} = 'oe.pl';
1119
1120   $form->{shipto} = 1;
1121
1122   $form->{rowcount}--;
1123
1124   require "$form->{path}/$form->{script}";
1125
1126   map { $form->{"select$_"} = "" } ($form->{vc}, currency);
1127
1128   $currency = $form->{currency};
1129
1130   &order_links;
1131
1132   $form->{currency}     = $currency;
1133   $form->{exchangerate} = "";
1134   $form->{forex}        = "";
1135   $form->{exchangerate} = $exchangerate
1136     if (
1137         $form->{forex} = (
1138                   $exchangerate =
1139                     $form->check_exchangerate(
1140                     \%myconfig, $form->{currency}, $form->{transdate}, $buysell
1141                     )));
1142
1143   &prepare_order;
1144   &display_form;
1145
1146   $lxdebug->leave_sub();
1147 }
1148
1149 sub e_mail {
1150   $lxdebug->enter_sub();
1151   if ($form->{second_run}) {
1152     $form->{print_and_post} = 0;
1153     $form->{resubmit}       = 0;
1154   }
1155   if ($myconfig{role} eq 'admin') {
1156     $bcc = qq|
1157           <th align=right nowrap=true>| . $locale->text('Bcc') . qq|</th>
1158           <td><input name=bcc size=30 value="$form->{bcc}"></td>
1159 |;
1160   }
1161
1162   if ($form->{formname} =~ /(pick|packing|bin)_list/) {
1163     $form->{email} = $form->{shiptoemail} if $form->{shiptoemail};
1164   }
1165
1166   $name = $form->{ $form->{vc} };
1167   $name =~ s/--.*//g;
1168   $title = $locale->text('E-mail') . " $name";
1169
1170   $form->{oldmedia} = $form->{media};
1171   $form->{media}    = "email";
1172
1173   $form->header;
1174
1175   print qq|
1176 <body>
1177
1178 <form method=post action=$form->{script}>
1179
1180 <table width=100%>
1181   <tr class=listtop>
1182     <th class=listtop>$title</th>
1183   </tr>
1184   <tr height="5"></tr>
1185   <tr>
1186     <td>
1187       <table width=100%>
1188         <tr>
1189           <th align=right nowrap>| . $locale->text('To') . qq|</th>
1190           <td><input name=email size=30 value="$form->{email}"></td>
1191           <th align=right nowrap>| . $locale->text('Cc') . qq|</th>
1192           <td><input name=cc size=30 value="$form->{cc}"></td>
1193         </tr>
1194         <tr>
1195           <th align=right nowrap>| . $locale->text('Subject') . qq|</th>
1196           <td><input name=subject size=30 value="$form->{subject}"></td>
1197           $bcc
1198         </tr>
1199       </table>
1200     </td>
1201   </tr>
1202   <tr>
1203     <td>
1204       <table width=100%>
1205         <tr>
1206           <th align=left nowrap>| . $locale->text('Message') . qq|</th>
1207         </tr>
1208         <tr>
1209           <td><textarea name=message rows=15 cols=60 wrap=soft>$form->{message}</textarea></td>
1210         </tr>
1211       </table>
1212     </td>
1213   </tr>
1214   <tr>
1215     <td>
1216 |;
1217
1218   &print_options;
1219
1220   map { delete $form->{$_} }
1221     qw(action email cc bcc subject message formname sendmode format header override);
1222
1223   # save all other variables
1224   foreach $key (keys %$form) {
1225     $form->{$key} =~ s/\"/&quot;/g;
1226     print qq|<input type=hidden name=$key value="$form->{$key}">\n|;
1227   }
1228
1229   print qq|
1230     </td>
1231   </tr>
1232   <tr>
1233     <td><hr size=3 noshade></td>
1234   </tr>
1235 </table>
1236
1237 <input type=hidden name=nextsub value=send_email>
1238
1239 <br>
1240 <input name=action class=submit type=submit value="|
1241     . $locale->text('Continue') . qq|">
1242 </form>
1243
1244 </body>
1245 </html>
1246 |;
1247
1248   $lxdebug->leave_sub();
1249 }
1250
1251 sub send_email {
1252   $lxdebug->enter_sub();
1253
1254   $old_form = new Form;
1255
1256   map { $old_form->{$_} = $form->{$_} } keys %$form;
1257   $old_form->{media} = $form->{oldmedia};
1258
1259   &print_form($old_form);
1260
1261   $lxdebug->leave_sub();
1262 }
1263
1264 sub print_options {
1265   $lxdebug->enter_sub();
1266   $form->{sendmode} = "attachment";
1267   $form->{copies}   = 3 unless $form->{copies};
1268
1269   $form->{PD}{ $form->{formname} } = "selected";
1270   $form->{DF}{ $form->{format} }   = "selected";
1271   $form->{OP}{ $form->{media} }    = "selected";
1272   $form->{SM}{ $form->{sendmode} } = "selected";
1273
1274   if ($form->{type} eq 'purchase_order') {
1275     $type = qq|<select name=formname>
1276             <option value=purchase_order $form->{PD}{purchase_order}>|
1277       . $locale->text('Purchase Order') . qq|
1278             <option value=bin_list $form->{PD}{bin_list}>|
1279       . $locale->text('Bin List');
1280   }
1281
1282   if ($form->{type} eq 'sales_order') {
1283     $type = qq|<select name=formname>
1284             <option value=sales_order $form->{PD}{sales_order}>|
1285       . $locale->text('Confirmation') . qq|
1286             <option value=pick_list $form->{PD}{pick_list}>|
1287       . $locale->text('Pick List') . qq|
1288             <option value=packing_list $form->{PD}{packing_list}>|
1289       . $locale->text('Packing List');
1290   }
1291
1292   if ($form->{type} =~ /_quotation$/) {
1293     $type = qq|<select name=formname>
1294             <option value="$`_quotation" $form->{PD}{"$`_quotation"}>|
1295       . $locale->text('Quotation') . qq|
1296 |;
1297   }
1298
1299   if ($form->{type} eq 'invoice') {
1300     $type = qq|<select name=formname>
1301             <option value=invoice $form->{PD}{invoice}>| . $locale->text('Invoice');
1302   }
1303
1304   if ($form->{type} eq 'ship_order') {
1305     $type = qq|<select name=formname>
1306             <option value=pick_list $form->{PD}{pick_list}>|
1307       . $locale->text('Pick List') . qq|
1308             <option value=packing_list $form->{PD}{packing_list}>|
1309       . $locale->text('Packing List');
1310   }
1311
1312   if ($form->{type} eq 'receive_order') {
1313     $type = qq|<select name=formname>
1314             <option value=bin_list $form->{PD}{bin_list}>|
1315       . $locale->text('Bin List');
1316   }
1317
1318   if ($form->{media} eq 'email') {
1319     $media = qq|<select name=sendmode>
1320             <option value=attachment $form->{SM}{attachment}>|
1321       . $locale->text('Attachment') . qq|
1322             <option value=inline $form->{SM}{inline}>| . $locale->text('In-line');
1323   } else {
1324     $media = qq|<select name=media>
1325             <option value=screen $form->{OP}{screen}>| . $locale->text('Screen');
1326     if ($myconfig{printer} && $latex) {
1327       $media .= qq|
1328             <option value=printer $form->{OP}{printer}>|
1329         . $locale->text('Printer');
1330     }
1331     if ($latex) {
1332       $media .= qq|
1333             <option value=queue $form->{OP}{queue}>| . $locale->text('Queue');
1334     }
1335   }
1336
1337   $format = qq|<select name=format>
1338             <option value=html $form->{DF}{html}>html|;
1339
1340   if ($latex) {
1341     $format = qq|<select name=format>
1342             <option value=pdf $form->{DF}{pdf}>| . $locale->text('PDF') . qq|
1343             <option value=html $form->{DF}{html}>html
1344             <option value=postscript $form->{DF}{postscript}>|
1345       . $locale->text('Postscript');
1346   }
1347
1348   $language = qq|<select name=language>
1349                  <option value=""></option>|;
1350   %lang = (de => "deutsch", en => "englisch", fr => "französisch");
1351   foreach $item (keys %lang) {
1352     if ($form->{language} eq $item) {
1353       $language .= qq|<option value="$item" selected>$lang{$item}</option>|;
1354     } else {
1355       $language .= qq|<option value="$item">$lang{$item}</option>|;
1356     }
1357   }
1358
1359   print qq|
1360 <table width=100% cellspacing=0 cellpadding=0>
1361   <tr>
1362     <td>
1363       <table>
1364         <tr>
1365           <td>$type</select></td>
1366           <td>$language</select</td>
1367           <td>$format</select></td>
1368           <td>$media</select></td>
1369 |;
1370
1371   if ($myconfig{printer} && $latex && $form->{media} ne 'email') {
1372     print qq|
1373           <td>| . $locale->text('Copies') . qq|
1374           <input name=copies size=2 value=$form->{copies}></td>
1375 |;
1376   }
1377
1378   $form->{groupitems} = "checked" if $form->{groupitems};
1379
1380   print qq|
1381           <td>| . $locale->text('Group Items') . qq|</td>
1382           <td><input name=groupitems type=checkbox class=checkbox $form->{groupitems}></td>
1383         </tr>
1384       </table>
1385     </td>
1386     <td align=right>
1387       <table>
1388         <tr>
1389 |;
1390
1391   if ($form->{printed} =~ /$form->{formname}/) {
1392     print qq|
1393           <th>\|| . $locale->text('Printed') . qq|\|</th>
1394 |;
1395   }
1396
1397   if ($form->{emailed} =~ /$form->{formname}/) {
1398     print qq|
1399           <th>\|| . $locale->text('E-mailed') . qq|\|</th>
1400 |;
1401   }
1402
1403   if ($form->{queued} =~ /$form->{formname}/) {
1404     print qq|
1405           <th>\|| . $locale->text('Queued') . qq|\|</th>
1406 |;
1407   }
1408
1409   print qq|
1410         </tr>
1411       </table>
1412     </td>
1413   </tr>
1414 </table>
1415 |;
1416
1417   $lxdebug->leave_sub();
1418 }
1419
1420 sub print {
1421   $lxdebug->enter_sub();
1422
1423   # if this goes to the printer pass through
1424   if ($form->{media} eq 'printer' || $form->{media} eq 'queue') {
1425     $form->error($locale->text('Select postscript or PDF!'))
1426       if ($form->{format} !~ /(postscript|pdf)/);
1427
1428     $old_form = new Form;
1429     map { $old_form->{$_} = $form->{$_} } keys %$form;
1430   }
1431
1432   &print_form($old_form);
1433
1434   $lxdebug->leave_sub();
1435 }
1436
1437 sub print_form {
1438   $lxdebug->enter_sub();
1439   my ($old_form) = @_;
1440
1441   $inv       = "inv";
1442   $due       = "due";
1443   $numberfld = "invnumber";
1444
1445   $display_form =
1446     ($form->{display_form}) ? $form->{display_form} : "display_form";
1447
1448   # $form->{"notes"} will be overridden by the customer's/vendor's "notes" field. So save it here.
1449   $form->{ $form->{"formname"} . "notes" } = $form->{"notes"};
1450
1451   if ($form->{formname} eq "invoice") {
1452     $form->{label} = $locale->text('Invoice');
1453   }
1454   if ($form->{formname} eq "packing_list") {
1455
1456     # this is from an invoice
1457     $form->{label} = $locale->text('Packing List');
1458   }
1459   if ($form->{formname} eq 'sales_order') {
1460     $inv                  = "ord";
1461     $due                  = "req";
1462     $form->{"${inv}date"} = $form->{transdate};
1463     $form->{label}        = $locale->text('Sales Order');
1464     $numberfld            = "sonumber";
1465     $order                = 1;
1466   }
1467   if ($form->{formname} eq 'packing_list' && $form->{type} ne 'invoice') {
1468
1469     # we use the same packing list as from an invoice
1470     $inv = "ord";
1471     $due = "req";
1472     $form->{invdate} = $form->{"${inv}date"} = $form->{transdate};
1473     $form->{label} = $locale->text('Packing List');
1474     $order = 1;
1475   }
1476   if ($form->{formname} eq 'pick_list') {
1477     $inv                  = "ord";
1478     $due                  = "req";
1479     $form->{"${inv}date"} =
1480       ($form->{transdate}) ? $form->{transdate} : $form->{invdate};
1481     $form->{label} = $locale->text('Pick List');
1482     $order = 1 unless $form->{type} eq 'invoice';
1483   }
1484   if ($form->{formname} eq 'purchase_order') {
1485     $inv                  = "ord";
1486     $due                  = "req";
1487     $form->{"${inv}date"} = $form->{transdate};
1488     $form->{label}        = $locale->text('Purchase Order');
1489     $numberfld            = "ponumber";
1490     $order                = 1;
1491   }
1492   if ($form->{formname} eq 'bin_list') {
1493     $inv                  = "ord";
1494     $due                  = "req";
1495     $form->{"${inv}date"} = $form->{transdate};
1496     $form->{label}        = $locale->text('Bin List');
1497     $order                = 1;
1498   }
1499   if ($form->{formname} eq 'sales_quotation') {
1500     $inv                  = "quo";
1501     $due                  = "req";
1502     $form->{"${inv}date"} = $form->{transdate};
1503     $form->{label}        = $locale->text('Quotation');
1504     $numberfld            = "sqnumber";
1505     $order                = 1;
1506   }
1507   if ($form->{formname} eq 'request_quotation') {
1508     $inv                  = "quo";
1509     $due                  = "req";
1510     $form->{"${inv}date"} = $form->{transdate};
1511     $form->{label}        = $locale->text('Quotation');
1512     $numberfld            = "rfqnumber";
1513     $order                = 1;
1514   }
1515
1516   $form->isblank("email", $locale->text('E-mail address missing!'))
1517     if ($form->{media} eq 'email');
1518   $form->isblank("${inv}date",
1519                  $locale->text($form->{label} . ' Date missing!'));
1520
1521   # $locale->text('Invoice Number missing!')
1522   # $locale->text('Invoice Date missing!')
1523   # $locale->text('Packing List Number missing!')
1524   # $locale->text('Packing List Date missing!')
1525   # $locale->text('Order Number missing!')
1526   # $locale->text('Order Date missing!')
1527   # $locale->text('Quotation Number missing!')
1528   # $locale->text('Quotation Date missing!')
1529
1530   # assign number
1531   if (!$form->{"${inv}number"} && !$form->{preview}) {
1532     $form->{"${inv}number"} = $form->update_defaults(\%myconfig, $numberfld);
1533     if ($form->{media} ne 'email') {
1534
1535       # get pricegroups for parts
1536       IS->get_pricegroups_for_parts(\%myconfig, \%$form);
1537
1538       # build up html code for prices_$i
1539       set_pricegroup($form->{rowcount});
1540
1541       $form->{rowcount}--;
1542
1543       &{"$display_form"};
1544       exit;
1545     }
1546   }
1547
1548   &validate_items;
1549
1550   # Save the email address given in the form because it should override the setting saved for the customer/vendor.
1551   my ($saved_email, $saved_cc, $saved_bcc) =
1552     ($form->{"email"}, $form->{"cc"}, $form->{"bcc"});
1553
1554   $language = $form->{language};
1555   &{"$form->{vc}_details"};
1556   $form->{language} = $language;
1557
1558   $form->{"email"} = $saved_email if ($saved_email);
1559   $form->{"cc"}    = $saved_cc    if ($saved_cc);
1560   $form->{"bcc"}   = $saved_bcc   if ($saved_bcc);
1561
1562   @a = ();
1563   foreach $i (1 .. $form->{rowcount}) {
1564     push @a,
1565       ("partnumber_$i", "description_$i",
1566        "partsgroup_$i", "serialnumber_$i",
1567        "bin_$i",        "unit_$i",
1568        "transdate_$i",  "ordnumber_$i");
1569   }
1570   map { push @a, "${_}_description" } split / /, $form->{taxaccounts};
1571
1572   $ARAP = ($form->{vc} eq 'customer') ? "AR" : "AP";
1573   push @a, $ARAP;
1574
1575   # format payment dates
1576   for $i (1 .. $form->{paidaccounts} - 1) {
1577     $form->{"datepaid_$i"} = $locale->date(\%myconfig, $form->{"datepaid_$i"});
1578     push @a, "${ARAP}_paid_$i", "source_$i", "memo_$i";
1579   }
1580
1581   $form->format_string(@a);
1582
1583   ($form->{employee}) = split /--/, $form->{employee};
1584   ($form->{warehouse}, $form->{warehouse_id}) = split /--/, $form->{warehouse};
1585
1586   # create the form variables
1587   if ($order) {
1588     OE->order_details(\%myconfig, \%$form);
1589   } else {
1590     IS->invoice_details(\%myconfig, \%$form, $locale);
1591   }
1592
1593   # format global dates
1594   map { $form->{$_} = $locale->date(\%myconfig, $form->{$_}, 1) }
1595     ("${inv}date", "${due}date", "shippingdate", "deliverydate");
1596
1597   # format item dates
1598   for my $field (qw(transdate_oe deliverydate_oe)) {
1599     map {
1600       $form->{$field}[$_] = $locale->date(\%myconfig, $form->{$field}[$_], 1);
1601     } 0 .. $#{ $form->{$field} };
1602   }
1603
1604   @a = qw(name street zipcode city country);
1605
1606   $shipto = 1;
1607
1608   # if there is no shipto fill it in from billto
1609   foreach $item (@a) {
1610     if ($form->{"shipto$item"}) {
1611       $shipto = 0;
1612       last;
1613     }
1614   }
1615
1616   if ($shipto) {
1617     if (   $form->{formname} eq 'purchase_order'
1618         || $form->{formname} eq 'request_quotation') {
1619       $form->{shiptoname}   = $myconfig{company};
1620       $form->{shiptostreet} = $myconfig{address};
1621         } else {
1622       map { $form->{"shipto$_"} = $form->{$_} } @a;
1623     }
1624   }
1625
1626   $form->{notes} =~ s/^\s+//g;
1627
1628   # some of the stuff could have umlauts so we translate them
1629   push @a,
1630     qw(shiptoname shiptostreet shiptozipcode shiptocity shiptocountry shiptoemail shippingpoint shipvia company address signature employee contact department_1 department_2);
1631
1632   push @a, ("${inv}date", "${due}date", "deliverydate", email, cc, bcc);
1633
1634   $form->format_string(@a);
1635
1636   $form->{templates} = "$myconfig{templates}";
1637   if ($form->{language} ne "") {
1638     $form->{language} = "_" . $form->{language};
1639   }
1640
1641   $form->{IN} = "$form->{formname}$form->{language}.html";
1642   if ($form->{format} eq 'postscript') {
1643     $form->{postscript} = 1;
1644     $form->{IN} =~ s/html$/tex/;
1645   }
1646   if ($form->{format} eq 'pdf') {
1647     $form->{pdf} = 1;
1648     $form->{IN} =~ s/html$/tex/;
1649   }
1650
1651   if ($form->{media} eq 'printer') {
1652     $form->{OUT} = "| $myconfig{printer}";
1653     $form->{printed} .= " $form->{formname}";
1654     $form->{printed} =~ s/^ //;
1655   }
1656   $printed = $form->{printed};
1657
1658   if ($form->{media} eq 'email') {
1659     $form->{subject} = qq|$form->{label} $form->{"${inv}number"}|
1660       unless $form->{subject};
1661
1662     $form->{OUT} = "$sendmail";
1663
1664     $form->{emailed} .= " $form->{formname}";
1665     $form->{emailed} =~ s/^ //;
1666   }
1667   $emailed = $form->{emailed};
1668
1669   if ($form->{media} eq 'queue') {
1670     %queued = split / /, $form->{queued};
1671
1672     if ($filename = $queued{ $form->{formname} }) {
1673       $form->{queued} =~ s/$form->{formname} $filename//;
1674       unlink "$spool/$filename";
1675       $filename =~ s/\..*$//g;
1676     } else {
1677       $filename = time;
1678       $filename .= $$;
1679     }
1680
1681     $filename .= ($form->{postscript}) ? '.ps' : '.pdf';
1682     $form->{OUT} = ">$spool/$filename";
1683
1684     # add type
1685     $form->{queued} .= " $form->{formname} $filename";
1686
1687     $form->{queued} =~ s/^ //;
1688   }
1689   $queued = $form->{queued};
1690
1691   $form->parse_template(\%myconfig, $userspath);
1692
1693   $form->{callback} = "";
1694
1695   if ($form->{media} eq 'email') {
1696     $form->{message} = $locale->text('sent') unless $form->{message};
1697   }
1698   $message = $form->{message};
1699
1700   # if we got back here restore the previous form
1701   if ($form->{media} =~ /(printer|email|queue)/) {
1702
1703     $form->update_status(\%myconfig)
1704       if ($form->{media} eq 'queue' && $form->{id});
1705
1706     if ($old_form) {
1707
1708       $old_form->{"${inv}number"} = $form->{"${inv}number"};
1709
1710       # restore and display form
1711       map { $form->{$_} = $old_form->{$_} } keys %$old_form;
1712
1713       $form->{queued}  = $queued;
1714       $form->{printed} = $printed;
1715       $form->{emailed} = $emailed;
1716       $form->{message} = $message;
1717
1718       $form->{rowcount}--;
1719       map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
1720         qw(exchangerate creditlimit creditremaining);
1721
1722       for $i (1 .. $form->{paidaccounts}) {
1723         map {
1724           $form->{"${_}_$i"} =
1725             $form->parse_amount(\%myconfig, $form->{"${_}_$i"})
1726         } qw(paid exchangerate);
1727       }
1728
1729       &{"$display_form"};
1730       exit;
1731     }
1732
1733     $msg =
1734       ($form->{media} eq 'printer')
1735       ? $locale->text('sent to printer')
1736       : $locale->text('emailed to') . " $form->{email}";
1737     $form->redirect(qq|$form->{label} $form->{"${inv}number"} $msg|);
1738   }
1739
1740   $lxdebug->leave_sub();
1741 }
1742
1743 sub customer_details {
1744   $lxdebug->enter_sub();
1745   IS->customer_details(\%myconfig, \%$form);
1746   $lxdebug->leave_sub();
1747 }
1748
1749 sub vendor_details {
1750   $lxdebug->enter_sub();
1751
1752   IR->vendor_details(\%myconfig, \%$form);
1753
1754   $lxdebug->leave_sub();
1755 }
1756
1757 sub post_as_new {
1758   $lxdebug->enter_sub();
1759
1760   $form->{postasnew} = 1;
1761   map { delete $form->{$_} } qw(printed emailed queued);
1762
1763   &post;
1764
1765   $lxdebug->leave_sub();
1766 }
1767
1768 sub ship_to {
1769   $lxdebug->enter_sub();
1770   if ($form->{second_run}) {
1771     $form->{print_and_post} = 0;
1772   }
1773
1774   $title = $form->{title};
1775   $form->{title} = $locale->text('Ship to');
1776
1777   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
1778     qw(exchangerate creditlimit creditremaining);
1779
1780   # get details for name
1781   &{"$form->{vc}_details"};
1782
1783   $number =
1784     ($form->{vc} eq 'customer')
1785     ? $locale->text('Customer Number')
1786     : $locale->text('Vendor Number');
1787
1788   # get pricegroups for parts
1789   IS->get_pricegroups_for_parts(\%myconfig, \%$form);
1790
1791   # build up html code for prices_$i
1792   set_pricegroup($form->{rowcount});
1793
1794   $nextsub = ($form->{display_form}) ? $form->{display_form} : "display_form";
1795
1796   $form->{rowcount}--;
1797
1798   $form->header;
1799
1800   print qq|
1801 <body>
1802
1803 <form method=post action=$form->{script}>
1804
1805 <table width=100%>
1806   <tr>
1807     <td>
1808       <table>
1809         <tr class=listheading>
1810           <th class=listheading colspan=2 width=50%>|
1811     . $locale->text('Billing Address') . qq|</th>
1812           <th class=listheading width=50%>|
1813     . $locale->text('Shipping Address') . qq|</th>
1814         </tr>
1815         <tr height="5"></tr>
1816         <tr>
1817           <th align=right nowrap>$number</th>
1818           <td>$form->{"$form->{vc}number"}</td>
1819         </tr>
1820         <tr>
1821           <th align=right nowrap>| . $locale->text('Company Name') . qq|</th>
1822           <td>$form->{name}</td>
1823           <td><input name=shiptoname size=35 value="$form->{shiptoname}"></td>
1824         </tr>
1825         <tr>
1826           <th align=right nowrap>| . $locale->text('Street') . qq|</th>
1827           <td>$form->{street}</td>
1828           <td><input name=shiptostreet size=35 value="$form->{shiptostreet}"></td>
1829         </tr>
1830         <tr>
1831           <th align=right nowrap>| . $locale->text('Zipcode') . qq|</th>
1832           <td>$form->{zipcode}</td>
1833           <td><input name=shiptozipcode size=35 value="$form->{shiptozipcode}"></td>
1834         </tr>
1835         <tr>
1836           <th align=right nowrap>| . $locale->text('City') . qq|</th>
1837           <td>$form->{city}</td>
1838           <td><input name=shiptocity size=35 value="$form->{shiptocity}"></td>
1839         </tr>
1840         <tr>
1841           <th align=right nowrap>| . $locale->text('Country') . qq|</th>
1842           <td>$form->{country}</td>
1843           <td><input name=shiptocountry size=35 value="$form->{shiptocountry}"></td>
1844         </tr>
1845         <tr>
1846           <th align=right nowrap>| . $locale->text('Contact') . qq|</th>
1847           <td>$form->{contact}</td>
1848           <td><input name=shiptocontact size=35 value="$form->{shiptocontact}"></td>
1849         </tr>
1850         <tr>
1851           <th align=right nowrap>| . $locale->text('Phone') . qq|</th>
1852           <td>$form->{"$form->{vc}phone"}</td>
1853           <td><input name=shiptophone size=20 value="$form->{shiptophone}"></td>
1854         </tr>
1855         <tr>
1856           <th align=right nowrap>| . $locale->text('Fax') . qq|</th>
1857           <td>$form->{"$form->{vc}fax"}</td>
1858           <td><input name=shiptofax size=20 value="$form->{shiptofax}"></td>
1859         </tr>
1860         <tr>
1861           <th align=right nowrap>| . $locale->text('E-mail') . qq|</th>
1862           <td>$form->{email}</td>
1863           <td><input name=shiptoemail size=35 value="$form->{shiptoemail}"></td>
1864         </tr>
1865       </table>
1866     </td>
1867   </tr>
1868 </table>
1869
1870 <input type=hidden name=nextsub value=$nextsub>
1871 |;
1872
1873   # delete shipto
1874   map { delete $form->{$_} }
1875     qw(shiptoname shiptostreet shiptozipcode shiptocity shiptocountry shiptocontact shiptophone shiptofax shiptoemail header);
1876   $form->{title} = $title;
1877
1878   foreach $key (keys %$form) {
1879     $form->{$key} =~ s/\"/&quot;/g;
1880     print qq|<input type=hidden name=$key value="$form->{$key}">\n|;
1881   }
1882
1883   print qq|
1884
1885 <hr size=3 noshade>
1886
1887 <br>
1888 <input class=submit type=submit name=action value="|
1889     . $locale->text('Continue') . qq|">
1890 </form>
1891
1892 </body>
1893 </html>
1894 |;
1895
1896   $lxdebug->leave_sub();
1897 }
1898
1899 sub new_license {
1900   $lxdebug->enter_sub();
1901
1902   my $row = shift;
1903
1904   # change callback
1905   $form->{old_callback} = $form->escape($form->{callback}, 1);
1906   $form->{callback} = $form->escape("$form->{script}?action=display_form", 1);
1907   $form->{old_callback} = $form->escape($form->{old_callback}, 1);
1908
1909   # delete action
1910   delete $form->{action};
1911   $customer = $form->{customer};
1912   map { $form->{"old_$_"} = $form->{"${_}_$row"} } qw(partnumber description);
1913
1914   # save all other form variables in a previousform variable
1915   $form->{row} = $row;
1916   foreach $key (keys %$form) {
1917
1918     # escape ampersands
1919     $form->{$key} =~ s/&/%26/g;
1920     $previousform .= qq|$key=$form->{$key}&|;
1921   }
1922   chop $previousform;
1923   $previousform = $form->escape($previousform, 1);
1924
1925   $form->{script} = "licenses.pl";
1926
1927   map { $form->{$_} = $form->{"old_$_"} } qw(partnumber description);
1928   map { $form->{$_} = $form->escape($form->{$_}, 1) }
1929     qw(partnumber description);
1930   $form->{callback} =
1931     qq|$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}&customer=$customer&partnumber=$form->{partnumber}&description=$form->{description}&previousform="$previousform"&initial=1|;
1932   $form->redirect;
1933
1934   $lxdebug->leave_sub();
1935 }
1936