1 #=====================================================================
 
   4 # Based on SQL-Ledger Version 2.1.9
 
   5 # Web http://www.lx-office.org
 
   7 #=====================================================================
 
   8 # SQL-Ledger Accounting
 
  11 #  Author: Dieter Simader
 
  12 #   Email: dsimader@sql-ledger.org
 
  13 #     Web: http://www.sql-ledger.org
 
  17 # This program is free software; you can redistribute it and/or modify
 
  18 # it under the terms of the GNU General Public License as published by
 
  19 # the Free Software Foundation; either version 2 of the License, or
 
  20 # (at your option) any later version.
 
  22 # This program is distributed in the hope that it will be useful,
 
  23 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 
  24 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
  25 # GNU General Public License for more details.
 
  26 # You should have received a copy of the GNU General Public License
 
  27 # along with this program; if not, write to the Free Software
 
  28 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
  29 #======================================================================
 
  31 # Check and receipt printing payment module backend routines
 
  32 # Number to text conversion routines are in
 
  33 # locale/{countrycode}/Num2text
 
  35 #======================================================================
 
  41   $main::lxdebug->enter_sub();
 
  43   my ($type, $countrycode) = @_;
 
  48     if (-f "locale/$countrycode/Num2text") {
 
  49       require "locale/$countrycode/Num2text";
 
  57   $main::lxdebug->leave_sub();
 
  63   $main::lxdebug->enter_sub();
 
  65   my ($self, $myconfig, $form) = @_;
 
  68   my $dbh = $form->dbconnect($myconfig);
 
  70   my $ARAP = $form->{ARAP} eq "AR" ? "AR" : "AP";
 
  73     qq|SELECT accno, description, link | .
 
  75     qq|WHERE link LIKE ? |.
 
  77   my $sth = prepare_execute_query($form, $dbh, $query, '%' . $ARAP . '%');
 
  79   $form->{PR}{ $form->{ARAP} } = ();
 
  80   $form->{PR}{"$form->{ARAP}_paid"} = ();
 
  82   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
 
  83     foreach my $item (split(/:/, $ref->{link})) {
 
  84       if ($item eq $form->{ARAP}) {
 
  85         push(@{ $form->{PR}{ $form->{ARAP} } }, $ref);
 
  87       if ($item eq "$form->{ARAP}_paid") {
 
  88         push(@{ $form->{PR}{"$form->{ARAP}_paid"} }, $ref);
 
  94   # get currencies and closedto
 
  95   $query = qq|SELECT curr, closedto FROM defaults|;
 
  96   ($form->{currencies}, $form->{closedto}) =
 
  97     selectrow_query($form, $dbh, $query);
 
 101   $main::lxdebug->leave_sub();
 
 105   $main::lxdebug->enter_sub();
 
 107   my ($self, $myconfig, $form) = @_;
 
 109   my $dbh = $form->dbconnect($myconfig);
 
 111   my $arap = ($form->{vc} eq 'customer') ? 'ar' : 'ap';
 
 112   my $vc = $form->{vc} eq "customer" ? "customer" : "vendor";
 
 114     qq|SELECT count(*) | .
 
 115     qq|FROM $vc ct, $arap a | .
 
 116     qq|WHERE (a.${vc}_id = ct.id) AND (a.amount != a.paid)|;
 
 117   my ($count) = selectrow_query($form, $dbh, $query);
 
 119   # build selection list
 
 120   if ($count < $myconfig->{vclimit}) {
 
 122       qq|SELECT DISTINCT ct.id, ct.name | .
 
 123       qq|FROM $vc ct, $arap a | .
 
 124       qq|WHERE (a.${vc}_id = ct.id) AND (a.amount != a.paid) | .
 
 125       qq|ORDER BY ct.name|;
 
 126     $form->{"all_$form->{vc}"} = selectall_hashref_query($form, $dbh, $query);
 
 129   if ($form->{ARAP} eq 'AR') {
 
 131       qq|SELECT d.id, d.description | .
 
 132       qq|FROM department d | .
 
 133       qq|WHERE d.role = 'P' | .
 
 137       qq|SELECT d.id, d.description | .
 
 138       qq|FROM department d | .
 
 141   $form->{all_departments} = selectall_hashref_query($form, $dbh, $query);
 
 145   $main::lxdebug->leave_sub();
 
 148 sub get_openinvoices {
 
 149   $main::lxdebug->enter_sub();
 
 151   my ($self, $myconfig, $form) = @_;
 
 153   # connect to database
 
 154   my $dbh = $form->dbconnect($myconfig);
 
 156   my $vc = $form->{vc} eq "customer" ? "customer" : "vendor";
 
 158   my $buysell = $form->{vc} eq 'customer' ? "buy" : "sell";
 
 159   my $arap = $form->{arap} eq "ar" ? "ar" : "ap";
 
 161   my $curr_null = $form->{curreny} ? '' : ' OR a.curr IS NULL'; # fix: after sql-injection fix, curr is inserted as NULL, before that as ''
 
 164      qq|SELECT a.id, a.invnumber, a.transdate, a.amount, a.paid, a.curr | .
 
 166      qq|WHERE (a.${vc}_id = ?) AND (a.curr = ? $curr_null) AND NOT (a.amount = paid)|;
 
 168   my $sth = prepare_execute_query($form, $dbh, $query,
 
 169                                   conv_i($form->{"${vc}_id"}),
 
 173   while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
 
 175     # if this is a foreign currency transaction get exchangerate
 
 176     $ref->{exchangerate} =
 
 177       $form->get_exchangerate($dbh, $ref->{curr}, $ref->{transdate}, $buysell)
 
 178       if ($form->{currency} ne $form->{defaultcurrency});
 
 179     push @{ $form->{PR} }, $ref;
 
 185   $main::lxdebug->leave_sub();
 
 188 sub process_payment {
 
 189   $main::lxdebug->enter_sub();
 
 191   my ($self, $myconfig, $form) = @_;
 
 193   # connect to database, turn AutoCommit off
 
 194   my $dbh = $form->dbconnect_noauto($myconfig);
 
 196   my ($paymentaccno) = split /--/, $form->{account};
 
 198   # if currency ne defaultcurrency update exchangerate
 
 199   if ($form->{currency} ne $form->{defaultcurrency}) {
 
 200     $form->{exchangerate} =
 
 201       $form->parse_amount($myconfig, $form->{exchangerate});
 
 203     if ($form->{vc} eq 'customer') {
 
 204       $form->update_exchangerate($dbh, $form->{currency}, $form->{datepaid},
 
 205                                  $form->{exchangerate}, 0);
 
 207       $form->update_exchangerate($dbh, $form->{currency}, $form->{datepaid}, 0,
 
 208                                  $form->{exchangerate});
 
 211     $form->{exchangerate} = 1;
 
 215     qq|SELECT fxgain_accno_id, fxloss_accno_id FROM defaults|;
 
 216   my ($fxgain_accno_id, $fxloss_accno_id) =
 
 217     selectrow_query($form, $dbh, $query);
 
 219   my $buysell = $form->{vc} eq "customer" ? "buy" : "sell";
 
 220   my $arap = $form->{arap} eq "ar" ? "ar" : "ap";
 
 225   if ($form->{ARAP} eq 'AR') {
 
 227     $where = qq| ((c.link = 'AR') OR (c.link LIKE 'AR:%')) |;
 
 231       qq| ((c.link = 'AP') OR | .
 
 232       qq|  (c.link LIKE '%:AP') OR | .
 
 233       qq|  (c.link LIKE '%:AP:%')) |;
 
 236   $paymentamount = $form->{amount};
 
 238   #  $paymentamount = $form->{amount};
 
 240   ($null, $form->{department_id}) = split(/--/, $form->{department});
 
 241   $form->{department_id} *= 1;
 
 243   # query to retrieve paid amount
 
 245     qq|SELECT a.paid FROM ar a | .
 
 246     qq|WHERE a.id = ? | .
 
 248   my $pth = prepare_query($form, $dbh, $query);
 
 250   # go through line by line
 
 251   for my $i (1 .. $form->{rowcount}) {
 
 253     $form->{"paid_$i"} = $form->parse_amount($myconfig, $form->{"paid_$i"});
 
 254     $form->{"due_$i"}  = $form->parse_amount($myconfig, $form->{"due_$i"});
 
 256     if ($form->{"checked_$i"} && $form->{"paid_$i"}) {
 
 258         (($paymentamount * 1000) - ($form->{"paid_$i"} * 1000)) / 1000;
 
 260       # get exchangerate for original
 
 262         qq|SELECT $buysell | .
 
 263         qq|FROM exchangerate e | .
 
 264         qq|JOIN ${arap} a ON (a.transdate = e.transdate) | .
 
 265         qq|WHERE (e.curr = ?) AND (a.id = ?)|;
 
 267         selectrow_query($form, $dbh, $query,
 
 268                         $form->{currency}, $form->{"id_$i"});
 
 270       $exchangerate = 1 unless $exchangerate;
 
 275         qq|JOIN acc_trans a ON (a.chart_id = c.id) | .
 
 277         qq|AND (a.trans_id = ?)|;
 
 278       my ($id) = selectrow_query($form, $dbh, $query, $form->{"id_$i"});
 
 280       $amount = $form->round_amount($form->{"paid_$i"} * $exchangerate, 2);
 
 284         qq|INSERT INTO acc_trans (trans_id, chart_id, transdate, amount) | .
 
 285         qq|VALUES (?, ?, ?, ?)|;
 
 286       do_query($form, $dbh, $query, $form->{"id_$i"}, $id,
 
 287                conv_date($form->{datepaid}), $amount * $ml);
 
 291         qq|INSERT INTO acc_trans (trans_id, chart_id, transdate, amount, | .
 
 292         qq|                       source, memo) | .
 
 293         qq|VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, ?, ?)|;
 
 294       my @values = (conv_i($form->{"id_$i"}), $paymentaccno,
 
 295                     conv_date($form->{datepaid}),
 
 296                     $form->{"paid_$i"} * $ml * -1, $form->{source},
 
 298       do_query($form, $dbh, $query, @values);
 
 300       # add exchangerate difference if currency ne defaultcurrency
 
 302         $form->round_amount($form->{"paid_$i"} * ($form->{exchangerate} - 1),
 
 306         # exchangerate difference
 
 308           qq|INSERT INTO acc_trans (trans_id, chart_id, transdate, amount, | .
 
 309           qq|                       cleared, fx_transaction) | .
 
 310           qq|VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, ?, ?)|;
 
 311                     @values = (conv_i($form->{"id_$i"}), $paymentaccno,
 
 312                    conv_date($form->{datepaid}), ($amount * $ml * -1), '0',
 
 314         do_query($form, $dbh, $query, @values);
 
 319           $form->round_amount($form->{"paid_$i"} *
 
 320                               ($exchangerate - $form->{exchangerate}), 2);
 
 322           my $accno_id = ($amount < 0) ? $fxgain_accno_id : $fxloss_accno_id;
 
 324             qq|INSERT INTO acc_trans (trans_id, chart_id, transdate, | .
 
 325             qq|                       amount, cleared, fx_transaction) | .
 
 326             qq|VALUES (?, ?, ?, ?, ?, ?)|;
 
 327           @values = (conv_i($form->{"id_$i"}), $accno_id,
 
 328                      conv_date($form->{datepaid}), $amount * $ml * -1, '0',
 
 330           do_query($form, $dbh, $query, @values);
 
 335         $form->round_amount($form->{"paid_$i"} * $exchangerate, 2);
 
 336       $pth->execute($form->{"id_$i"}) || $form->dberror;
 
 337       ($amount) = $pth->fetchrow_array;
 
 340       $amount += $form->{"paid_$i"};
 
 343       if ($form->{arap} eq 'ap') {
 
 344         $paid = "paid = paid + $amount";
 
 346         $paid = "paid = $amount";
 
 349       # update AR/AP transaction
 
 350       $query = qq|UPDATE $arap SET $paid, datepaid = ? WHERE id = ?|;
 
 351                   @values = (conv_date($form->{datepaid}), conv_i($form->{"id_$i"}));
 
 352       do_query($form, $dbh, $query, @values);
 
 354       $form->{id} = $form->{"id_$i"};
 
 355       if(!exists $form->{addition}) {
 
 356         $form->{snumbers} = qq|invnumber_| . $form->{"invnumber_$i"};
 
 357         $form->{addition} = "POSTED";
 
 358         $form->save_history($form->dbconnect($myconfig));
 
 360       # /saving the history 
 
 364   # record a AR/AP with a payment
 
 365   if ($form->round_amount($paymentamount, 2) > 0) {
 
 366     $form->{invnumber} = "";
 
 367     OP::overpayment("", $myconfig, $form, $dbh, $paymentamount, $ml, 1);
 
 370   if ($form->round_amount($paymentamount, 2) < 0) {
 
 374   if ($form->round_amount($paymentamount, 2) == 0) {
 
 380   $main::lxdebug->leave_sub();