Alle Dateien durch Perltidy laufen lassen. Die verwendeten Optionen sind am Ende...
[kivitendo-erp.git] / bin / mozilla / ir.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 #
16 # This program is free software; you can redistribute it and/or modify
17 # it under the terms of the GNU General Public License as published by
18 # the Free Software Foundation; either version 2 of the License, or
19 # (at your option) any later version.
20 #
21 # This program is distributed in the hope that it will be useful,
22 # but WITHOUT ANY WARRANTY; without even the implied warranty of
23 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24 # GNU General Public License for more details.
25 # You should have received a copy of the GNU General Public License
26 # along with this program; if not, write to the Free Software
27 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
28 #======================================================================
29 #
30 # Inventory received module
31 #
32 #======================================================================
33
34 use SL::IR;
35 use SL::PE;
36
37 require "$form->{path}/io.pl";
38 require "$form->{path}/arap.pl";
39
40 1;
41
42 # end of main
43
44 sub add {
45   $lxdebug->enter_sub();
46
47   $form->{title} = $locale->text('Add Vendor Invoice');
48
49   &invoice_links;
50   &prepare_invoice;
51   &display_form;
52
53   $lxdebug->leave_sub();
54 }
55
56 sub edit {
57   $lxdebug->enter_sub();
58
59   $form->{title} = $locale->text('Edit Vendor Invoice');
60
61   &invoice_links;
62   &prepare_invoice;
63   &display_form;
64
65   $lxdebug->leave_sub();
66 }
67
68 sub invoice_links {
69   $lxdebug->enter_sub();
70
71   # create links
72   $form->{webdav} = $webdav;
73
74   # set jscalendar
75   $form->{jscalendar} = $jscalendar;
76
77   $form->create_links("AP", \%myconfig, "vendor");
78
79   if ($form->{all_vendor}) {
80     unless ($form->{vendor_id}) {
81       $form->{vendor_id} = $form->{all_vendor}->[0]->{id};
82     }
83   }
84
85   $cp_id = $form->{cp_id};
86   IR->get_vendor(\%myconfig, \%$form);
87   IR->retrieve_invoice(\%myconfig, \%$form);
88   $form->{cp_id} = $cp_id;
89
90   # currencies
91   @curr = split /:/, $form->{currencies};
92   chomp $curr[0];
93   $form->{defaultcurrency} = $curr[0];
94
95   map { $form->{selectcurrency} .= "<option>$_\n" } @curr;
96
97   $form->{oldvendor} = "$form->{vendor}--$form->{vendor_id}";
98
99   # vendors
100   if ($form->{all_vendor}) {
101     $form->{vendor} = "$form->{vendor}--$form->{vendor_id}";
102     map { $form->{selectvendor} .= "<option>$_->{name}--$_->{id}\n" }
103       (@{ $form->{all_vendor} });
104   }
105
106   # departments
107   if ($form->{all_departments}) {
108     $form->{selectdepartment} = "<option>\n";
109     $form->{department}       = "$form->{department}--$form->{department_id}";
110
111     map {
112       $form->{selectdepartment} .=
113         "<option>$_->{description}--$_->{id}\n"
114     } (@{ $form->{all_departments} });
115   }
116
117   # forex
118   $form->{forex} = $form->{exchangerate};
119   $exchangerate = ($form->{exchangerate}) ? $form->{exchangerate} : 1;
120
121   foreach $key (keys %{ $form->{AP_links} }) {
122
123     foreach $ref (@{ $form->{AP_links}{$key} }) {
124       $form->{"select$key"} .= "<option>$ref->{accno}--$ref->{description}\n";
125     }
126
127     if ($key eq "AP_paid") {
128       for $i (1 .. scalar @{ $form->{acc_trans}{$key} }) {
129         $form->{"AP_paid_$i"} =
130           "$form->{acc_trans}{$key}->[$i-1]->{accno}--$form->{acc_trans}{$key}->[$i-1]->{description}";
131
132         # reverse paid
133         $form->{"paid_$i"}     = $form->{acc_trans}{$key}->[$i - 1]->{amount};
134         $form->{"datepaid_$i"} =
135           $form->{acc_trans}{$key}->[$i - 1]->{transdate};
136         $form->{"forex_$i"} = $form->{"exchangerate_$i"} =
137           $form->{acc_trans}{$key}->[$i - 1]->{exchangerate};
138         $form->{"source_$i"} = $form->{acc_trans}{$key}->[$i - 1]->{source};
139         $form->{"memo_$i"}   = $form->{acc_trans}{$key}->[$i - 1]->{memo};
140
141         $form->{paidaccounts} = $i;
142       }
143     } else {
144       $form->{$key} =
145         "$form->{acc_trans}{$key}->[0]->{accno}--$form->{acc_trans}{$key}->[0]->{description}";
146     }
147
148   }
149
150   $form->{paidaccounts} = 1 unless (exists $form->{paidaccounts});
151
152   $form->{AP} = $form->{AP_1} unless $form->{id};
153
154   $form->{locked} =
155     ($form->datetonum($form->{invdate}, \%myconfig) <=
156      $form->datetonum($form->{closedto}, \%myconfig));
157
158   $lxdebug->leave_sub();
159 }
160
161 sub prepare_invoice {
162   $lxdebug->enter_sub();
163
164   if ($form->{id}) {
165
166     map { $form->{$_} =~ s/\"/&quot;/g } qw(invnumber ordnumber quonumber);
167
168     foreach $ref (@{ $form->{invoice_details} }) {
169       $i++;
170       map { $form->{"${_}_$i"} = $ref->{$_} } keys %{$ref};
171
172       ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
173       $dec           = length $dec;
174       $decimalplaces = ($dec > 2) ? $dec : 2;
175
176       $form->{"sellprice_$i"} =
177         $form->format_amount(\%myconfig, $form->{"sellprice_$i"},
178                              $decimalplaces);
179       $form->{"qty_$i"} =
180         $form->format_amount(\%myconfig, ($form->{"qty_$i"} * -1));
181
182       $form->{rowcount} = $i;
183     }
184   }
185
186   $lxdebug->leave_sub();
187 }
188
189 sub form_header {
190   $lxdebug->enter_sub();
191
192   # set option selected
193   foreach $item (qw(AP vendor currency department contact)) {
194     $form->{"select$item"} =~ s/ selected//;
195     $form->{"select$item"} =~
196       s/option>\Q$form->{$item}\E/option selected>$form->{$item}/;
197   }
198
199   $form->{exchangerate} =
200     $form->format_amount(\%myconfig, $form->{exchangerate});
201
202   $form->{creditlimit} =
203     $form->format_amount(\%myconfig, $form->{creditlimit}, 0, "0");
204   $form->{creditremaining} =
205     $form->format_amount(\%myconfig, $form->{creditremaining}, 0, "0");
206
207   #build contacts
208   if ($form->{all_contacts}) {
209
210     $form->{selectcontact} = "";
211     foreach $item (@{ $form->{all_contacts} }) {
212       if ($form->{cp_id} == $item->{cp_id}) {
213         $form->{selectcontact} .=
214           "<option selected>$item->{cp_name}--$item->{cp_id}";
215       } else {
216         $form->{selectcontact} .= "<option>$item->{cp_name}--$item->{cp_id}";
217       }
218     }
219   }
220
221   $exchangerate = "";
222   if ($form->{currency} ne $form->{defaultcurrency}) {
223     if ($form->{forex}) {
224       $exchangerate .= qq|
225                 <th align=right nowrap>|
226         . $locale->text('Exchangerate')
227         . qq|</th>
228                 <td>$form->{exchangerate}<input type=hidden name=exchangerate value=$form->{exchangerate}></td>
229 |;
230     } else {
231       $exchangerate .= qq|
232                 <th align=right nowrap>|
233         . $locale->text('Exchangerate')
234         . qq|</th>
235                 <td><input name=exchangerate size=10 value=$form->{exchangerate}></td>
236 |;
237     }
238   }
239   $exchangerate .= qq|
240 <input type=hidden name=forex value=$form->{forex}>
241 |;
242
243   $vendor =
244     ($form->{selectvendor})
245     ? qq|<select name=vendor>$form->{selectvendor}</select>\n<input type=hidden name="selectvendor" value="$form->{selectvendor}">|
246     : qq|<input name=vendor value="$form->{vendor}" size=35>|;
247
248   $contact =
249     ($form->{selectcontact})
250     ? qq|<select name=contact>$form->{selectcontact}</select>\n<input type=hidden name="selectcontact" value="$form->{selectcontact}">|
251     : qq|<input name=contact value="$form->{contact}" size=35>|;
252
253   $department = qq|
254               <tr>
255               <th align="right" nowrap>| . $locale->text('Department') . qq|</th>
256               <td colspan=3><select name=department>$form->{selectdepartment}</select>
257               <input type=hidden name=selectdepartment value="$form->{selectdepartment}">
258               </td>
259             </tr>
260 | if $form->{selectdepartment};
261
262   $n = ($form->{creditremaining} =~ /-/) ? "0" : "1";
263
264   # use JavaScript Calendar or not
265   $form->{jsscript} = $form->{jscalendar};
266   $jsscript = "";
267   if ($form->{jsscript}) {
268
269     # with JavaScript Calendar
270     $button1 = qq|
271        <td><input name=invdate id=invdate size=11 title="$myconfig{dateformat}" value=$form->{invdate}></td>
272        <td><input type=button name=invdate id="trigger1" value=|
273       . $locale->text('button')
274       . qq|></td>  
275        |;
276     $button2 = qq|
277        <td width="13"><input name=duedate id=duedate size=11 title="$myconfig{dateformat}" value=$form->{duedate}></td>
278        <td width="4"><input type=button name=duedate id="trigger2" value=|
279       . $locale->text('button')
280       . qq|></td></td>
281      |;
282
283     #write Trigger
284     $jsscript =
285       Form->write_trigger(\%myconfig, "2", "invdate", "BL", "trigger1",
286                           "duedate", "BL", "trigger2");
287   } else {
288
289     # without JavaScript Calendar
290     $button1 =
291       qq|<td><input name=invdate size=11 title="$myconfig{dateformat}" value=$form->{invdate}></td>|;
292     $button2 =
293       qq|<td width="13"><input name=duedate size=11 title="$myconfig{dateformat}" value=$form->{duedate}></td>|;
294   }
295
296   $form->header;
297
298   print qq|
299 <body>
300
301 <form method=post action=$form->{script}>
302
303 <input type=hidden name=id value=$form->{id}>
304 <input type=hidden name=title value="$form->{title}">
305 <input type=hidden name=vc value="vendor">
306 <input type=hidden name=type value=$form->{type}>
307
308 <input type=hidden name=creditlimit value=$form->{creditlimit}>
309 <input type=hidden name=creditremaining value=$form->{creditremaining}>
310
311 <input type=hidden name=closedto value=$form->{closedto}>
312 <input type=hidden name=locked value=$form->{locked}>
313
314 <input type=hidden name=shipped value=$form->{shipped}>
315
316
317 <table width=100%>
318   <tr class=listtop>
319     <th class=listtop>$form->{title}</th>
320   </tr>
321   <tr height="5"></tr>
322   <tr>
323     <td>
324       <table width=100%>
325         <tr valign=top>
326           <td>
327             <table>
328               <tr>
329                 <th align=right nowrap>| . $locale->text('Vendor') . qq|</th>
330                 <td colspan=3>$vendor</td>
331                 
332                 <th align=richt nowrap>|
333     . $locale->text('Contact Person')
334     . qq|</th>
335                 <td colspan=3>$contact</td>
336                 
337                 <input type=hidden name=vendor_id value=$form->{vendor_id}>
338                 <input type=hidden name=oldvendor value="$form->{oldvendor}">
339
340               </tr>
341               <tr>
342                 <td></td>
343                 <td colspan=3>
344                   <table>
345                     <tr>
346                       <th nowrap>| . $locale->text('Credit Limit') . qq|</th>
347                       <td>$form->{creditlimit}</td>
348                       <td width=20%></td>
349                       <th nowrap>| . $locale->text('Remaining') . qq|</th>
350                       <td class="plus$n">$form->{creditremaining}</td>
351                     </tr>
352                   </table>
353                 </td>
354               <tr>
355                 <th align=right>| . $locale->text('Record in') . qq|</th>
356                 <td colspan=3><select name=AP>$form->{selectAP}</select></td>
357                 <input type=hidden name=selectAP value="$form->{selectAP}">
358               </tr>
359               $department
360               <tr>
361                 <th align=right nowrap>| . $locale->text('Currency') . qq|</th>
362                 <td><select name=currency>$form->{selectcurrency}</select></td>
363                 $exchangerate
364               </tr>
365             </table>
366           </td>
367           <td align=right>
368             <table>
369               <tr>
370                 <th align=right nowrap>| . $locale->text('Invoice Number') . qq|</th>
371                 <td><input name=invnumber size=11 value="$form->{invnumber}"></td>
372               </tr>
373               <tr>
374                 <th align=right nowrap>| . $locale->text('Invoice Date') . qq|</th>
375                 $button1
376               </tr>
377               <tr>
378                 <th align=right nowrap>| . $locale->text('Due Date') . qq|</th>
379                 $button2
380               </tr>
381               <tr>
382                 <th align=right nowrap>| . $locale->text('Order Number') . qq|</th>
383                 <td><input name=ordnumber size=11 value="$form->{ordnumber}"></td>
384 <input type=hidden name=quonumber value="$form->{quonumber}">
385               </tr>
386             </table>
387           </td>
388         </tr>
389       </table>
390     </td>
391   </tr>
392
393 $jsscript
394     
395 <input type=hidden name=selectcurrency value="$form->{selectcurrency}">
396 <input type=hidden name=defaultcurrency value=$form->{defaultcurrency}>
397 <input type=hidden name=fxgain_accno value=$form->{fxgain_accno}>
398 <input type=hidden name=fxloss_accno value=$form->{fxloss_accno}>
399 <input type=hidden name=webdav value=$webdav>
400
401 <input type=hidden name=taxpart value="$form->{taxpart}">
402 <input type=hidden name=taxservice value="$form->{taxservice}">
403
404 <input type=hidden name=taxaccounts value="$form->{taxaccounts}">
405 |;
406
407   foreach $item (split / /, $form->{taxaccounts}) {
408     print qq|
409 <input type=hidden name="${item}_rate" value=$form->{"${item}_rate"}>
410 <input type=hidden name="${item}_description" value="$form->{"${item}_description"}">
411 |;
412   }
413
414   $lxdebug->leave_sub();
415 }
416
417 sub form_footer {
418   $lxdebug->enter_sub();
419
420   $form->{invtotal} = $form->{invsubtotal};
421
422   if (($rows = $form->numtextrows($form->{notes}, 25, 8)) < 2) {
423     $rows = 2;
424   }
425   if (($introws = $form->numtextrows($form->{intnotes}, 35, 8)) < 2) {
426     $introws = 2;
427   }
428   $rows = ($rows > $introws) ? $rows : $introws;
429   $notes =
430     qq|<textarea name=notes rows=$rows cols=25 wrap=soft>$form->{notes}</textarea>|;
431   $intnotes =
432     qq|<textarea name=intnotes rows=$rows cols=35 wrap=soft>$form->{intnotes}</textarea>|;
433
434   $form->{taxincluded} = ($form->{taxincluded}) ? "checked" : "";
435
436   $taxincluded = "";
437   if ($form->{taxaccounts}) {
438     $taxincluded = qq|
439                 <input name=taxincluded class=checkbox type=checkbox value=1 $form->{taxincluded}> <b>|
440       . $locale->text('Tax Included') . qq|</b>
441 |;
442   }
443
444   if (!$form->{taxincluded}) {
445
446     foreach $item (split / /, $form->{taxaccounts}) {
447       if ($form->{"${item}_base"}) {
448         $form->{invtotal} += $form->{"${item}_total"} =
449           $form->round_amount(
450                              $form->{"${item}_base"} * $form->{"${item}_rate"},
451                              2);
452         $form->{"${item}_total"} =
453           $form->format_amount(\%myconfig, $form->{"${item}_total"}, 2);
454
455         $tax .= qq|
456                 <tr>
457                   <th align=right>$form->{"${item}_description"}</th>
458                   <td align=right>$form->{"${item}_total"}</td>
459                 </tr>
460 |;
461       }
462     }
463
464     $form->{invsubtotal} =
465       $form->format_amount(\%myconfig, $form->{invsubtotal}, 2, 0);
466
467     $subtotal = qq|
468               <tr>
469                 <th align=right>| . $locale->text('Subtotal') . qq|</th>
470                 <td align=right>$form->{invsubtotal}</td>
471               </tr>
472 |;
473
474   }
475
476   if ($form->{taxincluded}) {
477     foreach $item (split / /, $form->{taxaccounts}) {
478       if ($form->{"${item}_base"}) {
479         $form->{"${item}_total"} =
480           $form->round_amount(
481                            ($form->{"${item}_base"} * $form->{"${item}_rate"} /
482                               (1 + $form->{"${item}_rate"})
483                            ),
484                            2);
485         $form->{"${item}_base"} =
486           $form->round_amount($form->{"${item}_base"}, 2);
487         $form->{"${item}_netto"} =
488           $form->round_amount(
489                           ($form->{"${item}_base"} - $form->{"${item}_total"}),
490                           2);
491         $form->{"${item}_netto"} =
492           $form->format_amount(\%myconfig, $form->{"${item}_netto"}, 2);
493         $form->{"${item}_total"} =
494           $form->format_amount(\%myconfig, $form->{"${item}_total"}, 2);
495
496         $tax .= qq|
497               <tr>
498                 <th align=right>Enthaltene $form->{"${item}_description"}</th>
499                 <td align=right>$form->{"${item}_total"}</td>
500               </tr>
501               <tr>
502                 <th align=right>Nettobetrag</th>
503                 <td align=right>$form->{"${item}_netto"}</td>
504               </tr>
505 |;
506       }
507     }
508
509   }
510
511   $form->{oldinvtotal} = $form->{invtotal};
512   $form->{invtotal}    =
513     $form->format_amount(\%myconfig, $form->{invtotal}, 2, 0);
514
515   print qq|
516   <tr>
517     <td colspan=$colspan>
518       <table cellspacing="0">
519         <tr valign=bottom>
520           <td>
521             <table>
522               <tr>
523                 <th align=left>| . $locale->text('Notes') . qq|</th>
524                 <th align=left>| . $locale->text('Internal Notes') . qq|</th>
525               </tr>
526               <tr valign=top>
527                 <td>$notes</td>
528                 <td>$intnotes</td>
529               </tr>
530             </table>
531           </td>
532           <td colspan=2 align=right width=100%>
533             $taxincluded
534             <br>
535             <table width=100%>
536               $subtotal
537               $tax
538               <tr>0
539                 <th align=right>| . $locale->text('Total') . qq|</th>
540                 <td align=right>$form->{invtotal}</td>
541               </tr>
542             </table>
543           </td>
544         </tr>
545       </table>
546     </td>
547   </tr>
548 |;
549   if ($webdav) {
550     $webdav_list = qq|
551   <tr>
552     <td><hr size=3 noshade></td>
553   </tr>
554   <tr>   
555     <th class=listtop align=left>Dokumente im Webdav-Repository</th>
556   </tr>
557     <table width=100%>
558       <td align=left width=30%><b>Dateiname</b></td>
559       <td align=left width=70%><b>Webdavlink</b></td>
560 |;
561     foreach $file (keys %{ $form->{WEBDAV} }) {
562       $webdav_list .= qq|
563       <tr>      
564         <td align=left>$file</td>
565         <td align=left><a href="$form->{WEBDAV}{$file}">$form->{WEBDAV}{$file}</a></td>
566       </tr>
567 |;
568     }
569     $webdav_list .= qq|
570     </table>
571   </tr>
572 |;
573
574     print $webdav_list;
575   }
576   print qq|
577 <input type=hidden name=jscalendar value=$form->{jscalendar}>
578 |;
579   print qq|
580   <tr>
581     <td colspan=$colspan>
582       <table width=100%>
583         <tr>
584           <th colspan=6 class=listheading>| . $locale->text('Payments') . qq|</th>
585         </tr>
586 |;
587
588   if ($form->{currency} eq $form->{defaultcurrency}) {
589     @column_index = qw(datepaid source memo paid AP_paid);
590   } else {
591     @column_index = qw(datepaid source memo paid exchangerate AP_paid);
592   }
593
594   $column_data{datepaid}     = "<th>" . $locale->text('Date') . "</th>";
595   $column_data{paid}         = "<th>" . $locale->text('Amount') . "</th>";
596   $column_data{exchangerate} = "<th>" . $locale->text('Exch') . "</th>";
597   $column_data{AP_paid}      = "<th>" . $locale->text('Account') . "</th>";
598   $column_data{source}       = "<th>" . $locale->text('Source') . "</th>";
599   $column_data{memo}         = "<th>" . $locale->text('Memo') . "</th>";
600
601   print qq|
602         <tr>
603 |;
604   map { print "$column_data{$_}\n" } @column_index;
605   print qq|
606         </tr>
607 |;
608
609   $form->{paidaccounts}++ if ($form->{"paid_$form->{paidaccounts}"});
610   for $i (1 .. $form->{paidaccounts}) {
611
612     print qq|
613         <tr>
614 |;
615
616     $form->{"selectAP_paid_$i"} = $form->{selectAP_paid};
617     $form->{"selectAP_paid_$i"} =~
618       s/option>\Q$form->{"AP_paid_$i"}\E/option selected>$form->{"AP_paid_$i"}/;
619
620     # format amounts
621     $form->{"paid_$i"} =
622       $form->format_amount(\%myconfig, $form->{"paid_$i"}, 2);
623     $form->{"exchangerate_$i"} =
624       $form->format_amount(\%myconfig, $form->{"exchangerate_$i"});
625
626     $exchangerate = qq|&nbsp;|;
627     if ($form->{currency} ne $form->{defaultcurrency}) {
628       if ($form->{"forex_$i"}) {
629         $exchangerate =
630           qq|<input type=hidden name="exchangerate_$i" value=$form->{"exchangerate_$i"}>$form->{"exchangerate_$i"}|;
631       } else {
632         $exchangerate =
633           qq|<input name="exchangerate_$i" size=10 value=$form->{"exchangerate_$i"}>|;
634       }
635     }
636     $exchangerate .= qq|
637 <input type=hidden name="forex_$i" value=$form->{"forex_$i"}>
638 |;
639
640     $column_data{"paid_$i"} =
641       qq|<td align=center><input name="paid_$i" size=11 value=$form->{"paid_$i"}></td>|;
642     $column_data{"exchangerate_$i"} = qq|<td align=center>$exchangerate</td>|;
643     $column_data{"AP_paid_$i"}      =
644       qq|<td align=center><select name="AP_paid_$i">$form->{"selectAP_paid_$i"}</select></td>|;
645     $column_data{"datepaid_$i"} =
646       qq|<td align=center><input name="datepaid_$i" size=11 title="$myconfig{dateformat}" value=$form->{"datepaid_$i"}></td>|;
647     $column_data{"source_$i"} =
648       qq|<td align=center><input name="source_$i" size=11 value=$form->{"source_$i"}></td>|;
649     $column_data{"memo_$i"} =
650       qq|<td align=center><input name="memo_$i" size=11 value=$form->{"memo_$i"}></td>|;
651
652     map { print qq|$column_data{"${_}_$i"}\n| } @column_index;
653
654     print qq|
655         </tr>
656 |;
657   }
658
659   print qq|
660             <input type=hidden name=oldinvtotal value=$form->{oldinvtotal}>
661             <input type=hidden name=paidaccounts value=$form->{paidaccounts}>
662             <input type=hidden name=selectAP_paid value="$form->{selectAP_paid}">
663       </table>
664     </td>
665   </tr>
666   <tr>
667     <td><hr size=3 noshade></td>
668   </tr>
669 </table>
670 <br>
671 |;
672
673   $invdate  = $form->datetonum($form->{invdate},  \%myconfig);
674   $closedto = $form->datetonum($form->{closedto}, \%myconfig);
675
676   if ($form->{id}) {
677     print qq|<input class=submit type=submit name=action value="|
678       . $locale->text('Update') . qq|">
679 |;
680
681     if (!$form->{revtrans}) {
682       if (!$form->{locked}) {
683         print qq|
684         <input class=submit type=submit name=action value="|
685           . $locale->text('Post') . qq|">
686         <input class=submit type=submit name=action value="|
687           . $locale->text('Delete') . qq|">
688 |;
689       }
690     }
691
692     if ($invdate > $closedto) {
693       print qq|
694       <input class=submit type=submit name=action value="|
695         . $locale->text('Post as new') . qq|">
696       <input class=submit type=submit name=action value="|
697         . $locale->text('Order') . qq|">
698 |;
699     }
700
701   } else {
702     if ($invdate > $closedto) {
703       print qq|<input class=submit type=submit name=action value="|
704         . $locale->text('Update') . qq|">
705       <input class=submit type=submit name=action value="|
706         . $locale->text('Post') . qq|">|;
707     }
708   }
709
710   if ($form->{menubar}) {
711     require "$form->{path}/menu.pl";
712     &menubar;
713   }
714
715   print qq|
716
717 <input type=hidden name=rowcount value=$form->{rowcount}>
718
719 <input name=callback type=hidden value="$form->{callback}">
720
721 <input type=hidden name=path value=$form->{path}>
722 <input type=hidden name=login value=$form->{login}>
723 <input type=hidden name=password value=$form->{password}>
724
725 </form>
726
727 </body>
728 </html>
729 |;
730
731   $lxdebug->leave_sub();
732 }
733
734 sub update {
735   $lxdebug->enter_sub();
736
737   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
738     qw(exchangerate creditlimit creditremaining);
739
740   &check_name(vendor);
741
742   &check_project;
743
744   $form->{exchangerate} = $exchangerate
745     if (
746         $form->{forex} = (
747                       $exchangerate =
748                         $form->check_exchangerate(
749                         \%myconfig, $form->{currency}, $form->{invdate}, 'sell'
750                         )));
751
752   for $i (1 .. $form->{paidaccounts}) {
753     if ($form->{"paid_$i"}) {
754       map {
755         $form->{"${_}_$i"} =
756           $form->parse_amount(\%myconfig, $form->{"${_}_$i"})
757       } qw(paid exchangerate);
758
759       $form->{"exchangerate_$i"} = $exchangerate
760         if (
761             $form->{"forex_$i"} = (
762                 $exchangerate =
763                   $form->check_exchangerate(
764                   \%myconfig, $form->{currency}, $form->{"datepaid_$i"}, 'sell'
765                   )));
766     }
767   }
768
769   $i            = $form->{rowcount};
770   $exchangerate = ($form->{exchangerate}) ? $form->{exchangerate} : 1;
771
772   if (   ($form->{"partnumber_$i"} eq "")
773       && ($form->{"description_$i"} eq "")
774       && ($form->{"partsgroup_$i"} eq "")) {
775     $form->{creditremaining} += ($form->{oldinvtotal} - $form->{oldtotalpaid});
776     &check_form;
777
778       } else {
779
780     IR->retrieve_item(\%myconfig, \%$form);
781
782     my $rows = scalar @{ $form->{item_list} };
783
784     if ($rows) {
785       $form->{"qty_$i"} = 1 unless ($form->{"qty_$i"});
786
787       if ($rows > 1) {
788
789         &select_item;
790         exit;
791
792       } else {
793
794         # override sellprice if there is one entered
795         $sellprice = $form->parse_amount(\%myconfig, $form->{"sellprice_$i"});
796
797         map { $form->{item_list}[$i]{$_} =~ s/\"/&quot;/g }
798           qw(partnumber description unit);
799
800         map { $form->{"${_}_$i"} = $form->{item_list}[0]{$_} }
801           keys %{ $form->{item_list}[0] };
802
803         $s = ($sellprice) ? $sellprice : $form->{"sellprice_$i"};
804
805         ($dec) = ($s =~ /\.(\d+)/);
806         $dec           = length $dec;
807         $decimalplaces = ($dec > 2) ? $dec : 2;
808
809         if ($sellprice) {
810           $form->{"sellprice_$i"} = $sellprice;
811         } else {
812
813           # if there is an exchange rate adjust sellprice
814           $form->{"sellprice_$i"} /= $exchangerate;
815         }
816
817         $amount =
818           $form->{"sellprice_$i"} * $form->{"qty_$i"} *
819           (1 - $form->{"discount_$i"} / 100);
820         $form->{creditremaining} -= $amount;
821         $form->{"sellprice_$i"} =
822           $form->format_amount(\%myconfig, $form->{"sellprice_$i"},
823                                $decimalplaces);
824         $form->{"qty_$i"} =
825           $form->format_amount(\%myconfig, $form->{"qty_$i"});
826       }
827
828       &display_form;
829
830     } else {
831
832       # ok, so this is a new part
833       # ask if it is a part or service item
834
835       if (   $form->{"partsgroup_$i"}
836           && ($form->{"partsnumber_$i"} eq "")
837           && ($form->{"description_$i"} eq "")) {
838         $form->{rowcount}--;
839         $form->{"discount_$i"} = "";
840         &display_form;
841           } else {
842
843         $form->{"id_$i"}   = 0;
844         $form->{"unit_$i"} = $locale->text('ea');
845
846         &new_item;
847
848       }
849     }
850   }
851   $lxdebug->leave_sub();
852 }
853
854 sub post {
855   $lxdebug->enter_sub();
856
857   $form->isblank("invdate", $locale->text('Invoice Date missing!'));
858   $form->isblank("vendor",  $locale->text('Vendor missing!'));
859
860   # if the vendor changed get new values
861   if (&check_name(vendor)) {
862     &update;
863     exit;
864   }
865
866   &validate_items;
867
868   $closedto = $form->datetonum($form->{closedto}, \%myconfig);
869   $invdate  = $form->datetonum($form->{invdate},  \%myconfig);
870
871   $form->error($locale->text('Cannot post invoice for a closed period!'))
872     if ($invdate <= $closedto);
873
874   $form->isblank("exchangerate", $locale->text('Exchangerate missing!'))
875     if ($form->{currency} ne $form->{defaultcurrency});
876
877   for $i (1 .. $form->{paidaccounts}) {
878     if ($form->{"paid_$i"}) {
879       $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
880
881       $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
882
883       $form->error($locale->text('Cannot post payment for a closed period!'))
884         if ($datepaid <= $closedto);
885
886       if ($form->{currency} ne $form->{defaultcurrency}) {
887         $form->{"exchangerate_$i"} = $form->{exchangerate}
888           if ($invdate == $datepaid);
889         $form->isblank("exchangerate_$i",
890                        $locale->text('Exchangerate for payment missing!'));
891       }
892     }
893   }
894
895   ($form->{AP})      = split /--/, $form->{AP};
896   ($form->{AP_paid}) = split /--/, $form->{AP_paid};
897
898   $form->{id} = 0 if $form->{postasnew};
899
900   $form->redirect(  $locale->text('Invoice')
901                   . " $form->{invnumber} "
902                   . $locale->text('posted!'))
903     if (IR->post_invoice(\%myconfig, \%$form));
904   $form->error($locale->text('Cannot post invoice!'));
905
906   $lxdebug->leave_sub();
907 }
908
909 sub delete {
910   $lxdebug->enter_sub();
911
912   $form->header;
913
914   print qq|
915 <body>
916
917 <form method=post action=$form->{script}>
918 |;
919
920   # delete action variable
921   map { delete $form->{$_} } qw(action header);
922
923   foreach $key (keys %$form) {
924     $form->{$key} =~ s/\"/&quot;/g;
925     print qq|<input type=hidden name=$key value="$form->{$key}">\n|;
926   }
927
928   print qq|
929 <h2 class=confirm>| . $locale->text('Confirm!') . qq|</h2>
930
931 <h4>|
932     . $locale->text('Are you sure you want to delete Invoice Number')
933     . qq| $form->{invnumber}</h4>
934 <p>
935 <input name=action class=submit type=submit value="|
936     . $locale->text('Yes') . qq|">
937 </form>
938 |;
939
940   $lxdebug->leave_sub();
941 }
942
943 sub yes {
944   $lxdebug->enter_sub();
945
946   $form->redirect($locale->text('Invoice deleted!'))
947     if (IR->delete_invoice(\%myconfig, \%$form));
948   $form->error($locale->text('Cannot delete invoice!'));
949
950   $lxdebug->leave_sub();
951 }
952