6cde7f8971b23691ac45b897d50c6e83c84817f8
[kivitendo-erp.git] / bin / mozilla / cp.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) 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 # Payment module
31 #
32 #======================================================================
33
34 use SL::CP;
35 use SL::OP;
36 use SL::IS;
37 use SL::IR;
38
39 require "$form->{path}/arap.pl";
40
41 1;
42
43 # end of main
44
45 sub payment {
46   $lxdebug->enter_sub();
47
48   $form->{ARAP} = ($form->{type} eq 'receipt') ? "AR" : "AP";
49   $form->{arap} = lc $form->{ARAP};
50
51   # setup customer/vendor selection for open invoices
52   if ($form->{all_vc}) {
53     $form->all_vc(\%myconfig, $form->{vc}, $form->{ARAP});
54   } else {
55     CP->get_openvc(\%myconfig, \%$form);
56   }
57
58   $form->{"select$form->{vc}"} = "";
59
60   if ($form->{"all_$form->{vc}"}) {
61     $form->{"$form->{vc}_id"} = $form->{"all_$form->{vc}"}->[0]->{id};
62     map { $form->{"select$form->{vc}"} .= "<option>$_->{name}--$_->{id}\n" }
63       @{ $form->{"all_$form->{vc}"} };
64   }
65
66   # departments
67   if (@{ $form->{all_departments} }) {
68     $form->{selectdepartment} = "<option>\n";
69     $form->{department}       = "$form->{department}--$form->{department_id}";
70
71     map {
72       $form->{selectdepartment} .=
73         "<option>$_->{description}--$_->{id}\n"
74     } (@{ $form->{all_departments} });
75   }
76
77   CP->paymentaccounts(\%myconfig, \%$form);
78
79   $form->{selectaccount} = "";
80   $form->{"select$form->{ARAP}"} = "";
81
82   map { $form->{selectaccount} .= "<option>$_->{accno}--$_->{description}\n" }
83     @{ $form->{PR}{"$form->{ARAP}_paid"} };
84   map {
85     $form->{"select$form->{ARAP}"} .=
86       "<option>$_->{accno}--$_->{description}\n"
87   } @{ $form->{PR}{ $form->{ARAP} } };
88
89   # currencies
90   @curr = split /:/, $form->{currencies};
91   chomp $curr[0];
92   $form->{defaultcurrency} = $form->{currency} = $form->{oldcurrency} =
93     $curr[0];
94
95   $form->{selectcurrency} = "";
96   map { $form->{selectcurrency} .= "<option>$_\n" } @curr;
97
98   $form->{media} = "screen";
99
100   &form_header;
101   &form_footer;
102
103   $lxdebug->leave_sub();
104 }
105
106 sub form_header {
107   $lxdebug->enter_sub();
108
109   $vclabel = ucfirst $form->{vc};
110   $vclabel = $locale->text($vclabel);
111
112   if ($form->{type} eq 'receipt') {
113     $form->{title}     = $locale->text('Receipt');
114     $form->{origtitle} = "Receipt";
115   }
116   if ($form->{type} eq 'check') {
117     $form->{title}     = $locale->text('Payment');
118     $form->{origtitle} = "Payment";
119   }
120
121   # $locale->text('Customer')
122   # $locale->text('Vendor')
123
124   if ($form->{ $form->{vc} } eq "") {
125     map { $form->{"addr$_"} = "" } (1 .. 4);
126   }
127
128   if ($form->{currency} ne $form->{defaultcurrency}) {
129     $form->{exchangerate} =
130       $form->format_amount(\%myconfig, $form->{exchangerate});
131     if ($form->{forex}) {
132       $exchangerate = qq|
133               <tr>
134                 <th align=right nowrap>| . $locale->text('Exchangerate') . qq|</th>
135                 <td colspan=3><input type=hidden name=exchangerate size=10 value=$form->{exchangerate}>$form->{exchangerate}</td>
136               </tr>
137 |;
138     } else {
139       $exchangerate = qq|
140               <tr>
141                 <th align=right nowrap>| . $locale->text('Exchangerate') . qq|</th>
142                 <td colspan=3><input name=exchangerate size=10 value=$form->{exchangerate}></td>
143               </tr>
144 |;
145     }
146   }
147
148   foreach $item ($form->{vc}, account, currency, $form->{ARAP}, department) {
149     $form->{"select$item"} =~ s/ selected//;
150     $form->{"select$item"} =~
151       s/option>\Q$form->{$item}\E/option selected>$form->{$item}/;
152   }
153
154   $vc =
155     ($form->{"select$form->{vc}"})
156     ? qq|<select name=$form->{vc}>$form->{"select$form->{vc}"}\n</select>|
157     : qq|<input name=$form->{vc} size=35 value="$form->{$form->{vc}}">|;
158
159   if ($form->{all_vc}) {
160     $allvc = "checked";
161     $form->{openinvoices} = "";
162   } else {
163     $allvc = "";
164     $form->{openinvoices} = 1;
165   }
166
167   # $locale->text('AR')
168   # $locale->text('AP')
169
170   $department = qq|
171               <tr>
172                 <th align="right" nowrap>| . $locale->text('Department') . qq|</th>
173                 <td><select name=department>$form->{selectdepartment}</select>
174                 <input type=hidden name=selectdepartment value="$form->{selectdepartment}">
175
176               </td>
177             </tr>
178 | if $form->{selectdepartment};
179
180   $form->{jsscript} = $jscalendar;
181   $jsscript = "";
182   if ($form->{jsscript}) {
183
184     # with JavaScript Calendar
185     $button1 = qq|
186        <td><input name=datepaid id=datepaid size=11 title="$myconfig{dateformat}" value="$form->{datepaid}">
187        <input type=button name=datepaid id="trigger1" value=|
188       . $locale->text('button')
189       . qq|></td>
190        |;
191
192     #write Trigger
193     $jsscript =
194       Form->write_trigger(\%myconfig, "1", "datepaid", "BL", "trigger1");
195   } else {
196
197     # without JavaScript Calendar
198     $button1 = qq|
199                               <td><input name=transdatefrom id=transdatefrom size=11 title="$myconfig{dateformat}"></td>|;
200   }
201
202   $form->header;
203
204   $arap = lc $form->{ARAP};
205
206   print qq|
207 <body>
208
209 <form method=post action=$form->{script}>
210
211 <input type=hidden name=defaultcurrency value=$form->{defaultcurrency}>
212 <input type=hidden name=closedto value=$form->{closedto}>
213 <input type=hidden name=vc value=$form->{vc}>
214 <input type=hidden name=type value=$form->{type}>
215 <input type=hidden name=formname value=$form->{type}>
216 <input type=hidden name=queued value="$form->{queued}">
217 <input type=hidden name=arap value=$arap>
218 <input type=hidden name=ARAP value=$form->{ARAP}>
219 <input type=hidden name=openinvoices value=$form->{openinvoices}>
220 <input type=hidden name=title value="$form->{title}">
221 <input type=hidden name=origtitle value="$form->{origtitle}">
222
223 <table width=100%>
224   <tr>
225     <th class=listtop>$form->{title}</th>
226   </tr>
227   <tr height="5"></tr>
228   <tr>
229     <td>
230       <table width=100%>
231         <tr valign=top>
232           <td>
233             <table>
234               <tr>
235                 <td align=right>
236                 <input name=all_vc type=checkbox style=checkbox value=Y $allvc>
237                 <input type=hidden name="oldall_vc" value="$form->{all_vc}"></td>
238                 <th align=left>| . $locale->text('All') . qq|</th>
239               </tr>
240               <tr>
241                 <th align=right>$vclabel</th>
242                 <td>$vc</td>
243                 <input type=hidden name="select$form->{vc}" value="$form->{"select$form->{vc}"}">
244                 <input type=hidden name="$form->{vc}_id" value=$form->{"$form->{vc}_id"}>
245                 <input type=hidden name="old$form->{vc}" value="$form->{"old$form->{vc}"}">
246               </tr>
247               <tr valign=top>
248                 <th align=right nowrap>| . $locale->text('Address') . qq|</th>
249                 <td colspan=2>
250                   <table>
251                     <tr>
252                       <td>$form->{street}</td>
253                     </tr>
254                     <tr>
255                       <td>$form->{zipcode}</td>
256                     </tr>
257                     <tr>
258                       <td>$form->{city}</td>
259                     </tr>
260                     <tr>
261                       <td>$form->{country}</td>
262                     </tr>
263                   </table>
264                 </td>
265                 <input type=hidden name=street value="$form->{street}">
266                 <input type=hidden name=zipcode value="$form->{zipcode}">
267                 <input type=hidden name=city value="$form->{city}">
268                 <input type=hidden name=country value="$form->{country}">
269               </tr>
270               <tr>
271                 <th align=right>| . $locale->text('Memo') . qq|</th>
272                 <td colspan=2><input name="memo" size=30 value="$form->{memo}"></td>
273               </tr>
274             </table>
275           </td>
276           <td align=right>
277             <table>
278               $department
279               <tr>
280                 <th align=right nowrap>| . $locale->text($form->{ARAP}) . qq|</th>
281                 <td colspan=3><select name=$form->{ARAP}>$form->{"select$form->{ARAP}"}</select>
282                 </td>
283                 <input type=hidden name="select$form->{ARAP}" value="$form->{"select$form->{ARAP}"}">
284               </tr>
285               <tr>
286                 <th align=right nowrap>| . $locale->text('Account') . qq|</th>
287                 <td colspan=3><select name=account>$form->{selectaccount}</select>
288                 <input type=hidden name=selectaccount value="$form->{selectaccount}">
289                 </td>
290               </tr>
291               <tr>
292                 <th align=right nowrap>| . $locale->text('Date') . qq|</th>
293                 $button1
294               </tr>
295               <tr>
296                 <th align=right nowrap>| . $locale->text('Currency') . qq|</th>
297                 <td><select name=currency>$form->{selectcurrency}</select></td>
298                 <input type=hidden name=selectcurrency value="$form->{selectcurrency}">
299                 <input type=hidden name=oldcurrency value=$form->{oldcurrency}>
300               </tr>
301               $exchangerate
302               <tr>
303                 <th align=right nowrap>| . $locale->text('Source') . qq|</th>
304                 <td colspan=3><input name=source value="$form->{source}" size=10></td>
305               </tr>
306               <tr>
307                 <th align=right nowrap>| . $locale->text('Amount') . qq|</th>
308                 <td colspan=3><input name=amount size=10 value=|
309     . $form->format_amount(\%myconfig, $form->{amount}, 2)
310     . qq|></td>
311               </tr>
312             </table>
313           </td>
314         </tr>
315       </table>
316     </td>
317   </tr>
318
319 $jsscript
320 |;
321
322   $lxdebug->leave_sub();
323 }
324
325 sub list_invoices {
326   $lxdebug->enter_sub();
327
328   @column_index = qw(invnumber transdate amount due checked paid);
329
330   $colspan = $#column_index + 1;
331
332   $invoice = $locale->text('Invoices');
333
334   print qq|
335   <input type=hidden name=column_index value="id @column_index">
336   <tr>
337     <td>
338       <table width=100%>
339         <tr>
340           <th class=listheading colspan=$colspan>$invoice</th>
341         </tr>
342 |;
343
344   $column_data{invnumber} =
345     qq|<th nowrap class=listheading>| . $locale->text('Invoice') . "</th>";
346   $column_data{transdate} =
347     qq|<th nowrap class=listheading>| . $locale->text('Date') . "</th>";
348   $column_data{amount} =
349     qq|<th nowrap class=listheading>| . $locale->text('Amount') . "</th>";
350   $column_data{due} =
351     qq|<th nowrap class=listheading>| . $locale->text('Due') . "</th>";
352   $column_data{paid} =
353     qq|<th nowrap class=listheading>| . $locale->text('Amount') . "</th>";
354   $column_data{checked} =
355     qq|<th nowrap class=listheading>| . $locale->text('Select') . "</th>";
356
357   print qq|
358         <tr>
359 |;
360   map { print "$column_data{$_}\n" } @column_index;
361   print qq|
362         </tr>
363 |;
364
365   for $i (1 .. $form->{rowcount}) {
366
367     map {
368       $form->{"${_}_$i"} = $form->parse_amount(\%myconfig, $form->{"${_}_$i"})
369     } qw(amount due paid);
370
371     $totalamount += $form->{"amount_$i"};
372     $totaldue    += $form->{"due_$i"};
373     $totalpaid   += $form->{"paid_$i"};
374
375     map {
376       $form->{"${_}_$i"} =
377         $form->format_amount(\%myconfig, $form->{"${_}_$i"}, 2)
378     } qw(amount due paid);
379
380     $column_data{invnumber} = qq|<td>$form->{"invnumber_$i"}</td>
381       <input type=hidden name="invnumber_$i" value="$form->{"invnumber_$i"}">
382       <input type=hidden name="id_$i" value=$form->{"id_$i"}>|;
383     $column_data{transdate} = qq|<td width=15%>$form->{"transdate_$i"}</td>
384       <input type=hidden name="transdate_$i" value=$form->{"transdate_$i"}>|;
385     $column_data{amount} =
386       qq|<td align=right width=15%>$form->{"amount_$i"}</td>
387       <input type=hidden name="amount_$i" value=$form->{"amount_$i"}>|;
388     $column_data{due} = qq|<td align=right width=15%>$form->{"due_$i"}</td>
389       <input type=hidden name="due_$i" value=$form->{"due_$i"}>|;
390
391     $column_data{paid} =
392       qq|<td align=right width=15%><input name="paid_$i" size=10 value=$form->{"paid_$i"}></td>|;
393
394     $form->{"checked_$i"} = ($form->{"checked_$i"}) ? "checked" : "";
395     $column_data{checked} =
396       qq|<td align=center width=10%><input name="checked_$i" type=checkbox style=checkbox $form->{"checked_$i"}></td>|;
397
398     $j++;
399     $j %= 2;
400     print qq|
401         <tr class=listrow$j>
402 |;
403     map { print "$column_data{$_}\n" } @column_index;
404     print qq|
405         </tr>
406 |;
407   }
408
409   map { $column_data{$_} = "<td>&nbsp;</td>" } @column_index;
410
411   $column_data{amount} =
412       qq|<th class=listtotal align=right>|
413     . $form->format_amount(\%myconfig, $totalamount, 2, "&nbsp;")
414     . qq|</th>|;
415   $column_data{due} =
416       qq|<th class=listtotal align=right>|
417     . $form->format_amount(\%myconfig, $totaldue, 2, "&nbsp;")
418     . qq|</th>|;
419   $column_data{paid} =
420       qq|<th class=listtotal align=right>|
421     . $form->format_amount(\%myconfig, $totalpaid, 2, "&nbsp;")
422     . qq|</th>|;
423
424   print qq|
425         <tr class=listtotal>
426 |;
427   map { print "$column_data{$_}\n" } @column_index;
428   print qq|
429         </tr>
430       </table>
431     </td>
432   </tr>
433 |;
434
435   $lxdebug->leave_sub();
436 }
437
438 sub form_footer {
439   $lxdebug->enter_sub();
440
441   $form->{DF}{ $form->{format} } = "selected";
442   $form->{OP}{ $form->{media} }  = "selected";
443
444   $media = qq|
445           <option value=screen $form->{OP}{screen}>| . $locale->text('Screen');
446
447   if ($myconfig{printer} && $latex) {
448     $media .= qq|
449           <option value=printer $form->{OP}{printer}>|
450       . $locale->text('Printer');
451   }
452   if ($latex) {
453     $media .= qq|
454           <option value=queue $form->{OP}{queue}>| . $locale->text('Queue');
455     $format .= qq|
456             <option value=postscript $form->{DF}{postscript}>|
457       . $locale->text('Postscript') . qq|
458             <option value=pdf $form->{DF}{pdf}>| . $locale->text('PDF');
459   }
460
461   print qq|
462   <tr>
463     <td><hr size=3 noshade></td>
464   </tr>
465 </table>
466 <input type=hidden name=rowcount value=$form->{rowcount}>
467
468 <input type=hidden name=path value=$form->{path}>
469 <input type=hidden name=login value=$form->{login}>
470 <input type=hidden name=password value=$form->{password}>
471
472 <br>
473 <input class=submit type=submit name=action value="|
474     . $locale->text('Update') . qq|">
475 <input class=submit type=submit name=action value="|
476     . $locale->text('Post') . qq|">|;
477
478   if ($latex) {
479     print qq|
480 <input class=submit type=submit name=action value="|
481       . $locale->text('Print') . qq|">|;
482   }
483
484   print qq|
485 <select name=format>$format</select>
486 <select name=media>$media</select>
487 |;
488
489   if ($form->{menubar}) {
490     require "$form->{path}/menu.pl";
491     &menubar;
492   }
493
494   print qq|
495   </form>
496
497 </body>
498 </html>
499 |;
500
501   $lxdebug->leave_sub();
502 }
503
504 sub update {
505   $lxdebug->enter_sub();
506
507   my ($new_name_selected) = @_;
508
509   if ($form->{vc} eq 'customer') {
510     $buysell = "buy";
511   } else {
512     $buysell = "sell";
513   }
514
515   # if we switched to all_vc
516   if ($form->{all_vc} ne $form->{oldall_vc}) {
517
518     $form->{openinvoices} = ($form->{all_vc}) ? 0 : 1;
519
520     $form->{"select$form->{vc}"} = "";
521
522     if ($form->{all_vc}) {
523       $form->all_vc(\%myconfig, $form->{vc}, $form->{ARAP});
524
525       if ($form->{"all_$form->{vc}"}) {
526         map {
527           $form->{"select$form->{vc}"} .=
528             "<option>$_->{name}--$_->{id}\n"
529         } @{ $form->{"all_$form->{vc}"} };
530       }
531     } else {
532       CP->get_openvc(\%myconfig, \%$form);
533
534       if ($form->{"all_$form->{vc}"}) {
535         $newvc =
536           qq|$form->{"all_$form->{vc}"}[0]->{name}--$form->{"all_$form->{vc}"}[0]->{id}|;
537         map {
538           $form->{"select$form->{vc}"} .=
539             "<option>$_->{name}--$_->{id}\n"
540         } @{ $form->{"all_$form->{vc}"} };
541       }
542
543       # if the name is not the same
544       if ($form->{"select$form->{vc}"} !~ /$form->{$form->{vc}}/) {
545         $form->{ $form->{vc} } = $newvc;
546       }
547     }
548   }
549
550   # get customer and invoices
551   $updated = &check_name($form->{vc});
552
553   if ($new_name_selected || $updated) {
554     CP->get_openinvoices(\%myconfig, \%$form);
555     ($newvc) = split /--/, $form->{ $form->{vc} };
556     $form->{"old$form->{vc}"} = qq|$newvc--$form->{"$form->{vc}_id"}|;
557     $updated = 1;
558   }
559
560   if ($form->{currency} ne $form->{oldcurrency}) {
561     $form->{oldcurrency} = $form->{currency};
562     if (!$updated) {
563       CP->get_openinvoices(\%myconfig, \%$form);
564       $updated = 1;
565     }
566   }
567
568   $form->{exchangerate} = $exchangerate
569     if (
570         $form->{forex} = (
571                    $exchangerate =
572                      $form->check_exchangerate(
573                      \%myconfig, $form->{currency}, $form->{datepaid}, $buysell
574                      )));
575
576   $amount = $form->{amount} = $form->parse_amount(\%myconfig, $form->{amount});
577
578   if ($updated) {
579     $form->{rowcount} = 0;
580
581     $form->{queued} = "";
582
583     $i = 0;
584     foreach $ref (@{ $form->{PR} }) {
585       $i++;
586       $form->{"id_$i"}        = $ref->{id};
587       $form->{"invnumber_$i"} = $ref->{invnumber};
588       $form->{"transdate_$i"} = $ref->{transdate};
589       $ref->{exchangerate} = 1 unless $ref->{exchangerate};
590       $form->{"amount_$i"} = $ref->{amount} / $ref->{exchangerate};
591       $form->{"due_$i"}    =
592         ($ref->{amount} - $ref->{paid}) / $ref->{exchangerate};
593       $form->{"checked_$i"} = "";
594       $form->{"paid_$i"}    = "";
595
596       # need to format
597       map {
598         $form->{"${_}_$i"} =
599           $form->format_amount(\%myconfig, $form->{"${_}_$i"}, 2)
600       } qw(amount due);
601
602     }
603     $form->{rowcount} = $i;
604   }
605
606   # recalculate
607   $amount = $form->{amount};
608   for $i (1 .. $form->{rowcount}) {
609
610     map {
611       $form->{"${_}_$i"} = $form->parse_amount(\%myconfig, $form->{"${_}_$i"})
612     } qw(amount due paid);
613
614     if ($form->{"checked_$i"}) {
615
616       # calculate paid_$i
617       if (!$form->{"paid_$i"}) {
618         $form->{"paid_$i"} = $form->{"due_$i"};
619       }
620
621       $amount -= $form->{"paid_$i"};
622     } else {
623       $form->{"paid_$i"} = "";
624     }
625
626     map {
627       $form->{"${_}_$i"} =
628         $form->format_amount(\%myconfig, $form->{"${_}_$i"}, 2)
629     } qw(amount due paid);
630
631   }
632
633   &form_header;
634   &list_invoices;
635   &form_footer;
636
637   $lxdebug->leave_sub();
638 }
639
640 sub post {
641   $lxdebug->enter_sub();
642
643   &check_form;
644
645   if ($form->{currency} ne $form->{defaultcurrency}) {
646     $form->error($locale->text('Exchangerate missing!'))
647       unless $form->{exchangerate};
648   }
649
650   $msg1 = "$form->{origtitle} posted!";
651   $msg2 = "Cannot post $form->{origtitle}!";
652
653   # $locale->text('Payment posted!')
654   # $locale->text('Receipt posted!')
655   # $locale->text('Cannot post Payment!')
656   # $locale->text('Cannot post Receipt!')
657
658   $form->redirect($locale->text($msg1))
659     if (CP->process_payment(\%myconfig, \%$form));
660   $form->error($locale->text($msg2));
661
662   $lxdebug->leave_sub();
663 }
664
665 sub print {
666   $lxdebug->enter_sub();
667
668   &check_form;
669
670   ($whole, $form->{decimal}) = split /\./, $form->{amount};
671
672   $form->{amount} = $form->format_amount(\%myconfig, $form->{amount}, 2);
673
674   $form->{decimal} .= "00";
675   $form->{decimal} = substr($form->{decimal}, 0, 2);
676
677   $check = new CP $myconfig{countrycode};
678   $check->init;
679   $form->{text_amount} = $check->num2text($whole);
680
681   &{"$form->{vc}_details"};
682
683   $form->{callback} = "";
684
685   $form->{templates} = "$myconfig{templates}";
686   $form->{IN}        = "$form->{formname}.tex";
687
688   if ($form->{format} eq 'postscript') {
689     $form->{postscript} = 1;
690   }
691   if ($form->{format} eq 'pdf') {
692     $form->{pdf} = 1;
693   }
694
695   if ($form->{media} eq 'printer') {
696     $form->{OUT} = "| $myconfig{printer}";
697   }
698   if ($form->{media} eq 'queue') {
699     %queued = split / /, $form->{queued};
700
701     if ($filename = $queued{ $form->{formname} }) {
702       unlink "$spool/$filename";
703       $filename =~ s/\..*$//g;
704     } else {
705       $filename = time;
706       $filename .= $$;
707     }
708     $filename .= ($form->{postscript}) ? '.ps' : '.pdf';
709     $form->{queued} = "$form->{formname} $filename";
710     $form->{OUT}    = ">$spool/$filename";
711
712     $form->update_status(\%myconfig);
713
714   }
715
716   $form->{company} = $myconfig{company};
717   $form->{address} = $myconfig{address};
718
719   @a =
720     qw(name invnumber company address text_amount street zipcode city country memo);
721   $form->format_string(@a);
722
723   $form->parse_template(\%myconfig, $userspath);
724
725   if ($form->{media} ne 'screen') {
726     $form->{callback} =
727       "$form->{script}?action=payment&vc=$form->{vc}&path=$form->{path}&login=$form->{login}&password=$form->{password}&all_vc=$form->{all_vc}";
728
729     $form->redirect if (CP->process_payment(\%myconfig, \%$form));
730     $form->error($locale->text('Cannot post payment!'));
731   }
732
733   $lxdebug->leave_sub();
734 }
735
736 sub customer_details { IS->customer_details(\%myconfig, \%$form) }
737 sub vendor_details { IR->vendor_details(\%myconfig, \%$form) }
738
739 sub check_form {
740   $lxdebug->enter_sub();
741
742   &check_name($form->{vc});
743
744   if ($form->{currency} ne $form->{oldcurrency}) {
745     &update;
746     exit;
747   }
748
749   $form->error($locale->text('Date missing!')) unless $form->{datepaid};
750
751   $closedto = $form->datetonum($form->{closedto}, \%myconfig);
752   $datepaid = $form->datetonum($form->{datepaid}, \%myconfig);
753
754   $form->error($locale->text('Cannot process payment for a closed period!'))
755     if ($datepaid <= $closedto);
756
757   $amount = $form->parse_amount(\%myconfig, $form->{amount});
758   $form->{amount} = $amount;
759
760   for $i (1 .. $form->{rowcount}) {
761     if ($form->{"paid_$i"}) {
762       $amount -= $form->parse_amount($myconfig, $form->{"paid_$i"});
763
764       push(@{ $form->{paid} },      $form->{"paid_$i"});
765       push(@{ $form->{due} },       $form->{"due_$i"});
766       push(@{ $form->{invnumber} }, $form->{"invnumber_$i"});
767       push(@{ $form->{invdate} },   $form->{"transdate_$i"});
768     }
769   }
770
771   if ($form->round_amount($amount, 2) != 0) {
772     push(@{ $form->{paid} }, $form->format_amount(\%myconfig, $amount, 2));
773     push(@{ $form->{due} }, $form->format_amount(\%myconfig, 0, "0"));
774     push(@{ $form->{invnumber} },
775          ($form->{ARAP} eq 'AR')
776          ? $locale->text('Deposit')
777          : $locale->text('Prepayment'));
778     push(@{ $form->{invdate} }, $form->{datepaid});
779   }
780
781   $lxdebug->leave_sub();
782 }