Reduced delay when ECB rates page is not avaialable.
[fa-stable.git] / sales / includes / db / custalloc_db.inc
index 9dfae6e8fa0234d2a0360f0d07b1dbca60c2a82b..fe523ae42a5164239638f108ecf68b986fbb822c 100644 (file)
@@ -1,5 +1,14 @@
 <?php
-
+/**********************************************************************
+    Copyright (C) FrontAccounting, LLC.
+       Released under the terms of the GNU Affero General Public License,
+       AGPL, as published by the Free Software Foundation, either version 
+       3 of the License, or (at your option) any later version.
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
+    See the License here <http://www.gnu.org/licenses/agpl-3.0.html>.
+***********************************************************************/
 //----------------------------------------------------------------------------------------
 
 function add_cust_allocation($amount, $trans_type_from, $trans_no_from,
@@ -46,14 +55,14 @@ function update_debtor_trans_allocation($trans_type, $trans_no, $alloc)
 
 //-------------------------------------------------------------------------------------------------------------
 
-function void_cust_allocations($type, $type_no)
+function void_cust_allocations($type, $type_no, $date="")
 {
-       return clear_cust_alloctions($type, $type_no);
+       return clear_cust_alloctions($type, $type_no, $date);
 }
 
 //-------------------------------------------------------------------------------------------------------------
 
-function clear_cust_alloctions($type, $type_no)
+function clear_cust_alloctions($type, $type_no, $date="")
 {
        // clear any allocations for this transaction
        $sql = "SELECT * FROM ".TB_PREF."cust_allocations
@@ -67,6 +76,11 @@ function clear_cust_alloctions($type, $type_no)
                        WHERE (type= " . $row['trans_type_from'] . " AND trans_no=" . $row['trans_no_from'] . ")
                        OR (type=" . $row['trans_type_to'] . " AND trans_no=" . $row['trans_no_to'] . ")";
                db_query($sql, "could not clear allocation");
+               // 2008-09-20 Joe Hunt
+               if ($date != "")
+                       exchange_variation($type, $type_no, $row['trans_type_to'], $row['trans_no_to'], $date,
+                               $row['amt'], payment_person_types::customer(), true);
+               //////////////////////
        }
 
 
@@ -77,10 +91,43 @@ function clear_cust_alloctions($type, $type_no)
 
        db_query($sql, "could not void debtor transactions for type=$type and trans_no=$type_no");
 }
+//----------------------------------------------------------------------------------------
+
+function get_alloc_trans_sql($extra_fields=null, $extra_conditions=null, $extra_tables=null)
+{
+       $sql = "SELECT
+               trans.type,
+               trans.trans_no,
+               trans.reference,
+               trans.tran_date,
+               debtor.name AS DebtorName, 
+               debtor.curr_code, 
+               ov_amount+ov_gst+ov_freight+ov_freight_tax+ov_discount AS Total,
+               trans.alloc,
+               trans.due_date,
+               debtor.address,
+               trans.version ";
+
+       if ($extra_fields)
+               $sql .= ", $extra_fields ";
+
+       $sql .= " FROM ".TB_PREF."debtor_trans as trans, "
+                               .TB_PREF."debtors_master as debtor";
+       if ($extra_tables)
+               $sql .= ",$extra_tables ";
+
+       $sql .= " WHERE trans.debtor_no=debtor.debtor_no";
+
+       if ($extra_conditions)
+               $sql .= " AND $extra_conditions ";
+       
+       return $sql;
+}
+
 
 //-------------------------------------------------------------------------------------------------------------
 
-function get_allocatable_from_cust_transactions($customer_id, $settled)
+function get_allocatable_from_cust_sql($customer_id, $settled)
 {
        $settled_sql = "";
        if (!$settled)
@@ -89,10 +136,12 @@ function get_allocatable_from_cust_transactions($customer_id, $settled)
        }
        $cust_sql = "";
        if ($customer_id != null)
-               $cust_sql = " AND ".TB_PREF."debtor_trans.debtor_no = $customer_id";
+               $cust_sql = " AND trans.debtor_no = $customer_id";
 
-       return get_customer_transactions("round(ov_amount+ov_gst+ov_freight+ov_freight_tax+ov_discount-alloc,6) <= 0 AS settled",
-               "(type=12 OR type=11 OR type=2) AND (".TB_PREF."debtor_trans.ov_amount > 0) " . $settled_sql . $cust_sql);
+       $sql = get_alloc_trans_sql("round(ov_amount+ov_gst+ov_freight+ov_freight_tax+ov_discount-alloc,6) <= 0 AS settled",
+               "(type=12 OR type=11 OR type=2) AND (trans.ov_amount > 0) " . $settled_sql . $cust_sql);
+
+       return $sql;
 }
 
 //-------------------------------------------------------------------------------------------------------------
@@ -101,22 +150,24 @@ function get_allocatable_to_cust_transactions($customer_id, $trans_no=null, $typ
 {
        if ($trans_no != null and $type != null)
        {
-               return get_customer_transactions("amt", "".TB_PREF."debtor_trans.trans_no = ".TB_PREF."cust_allocations.trans_no_to
-                       AND ".TB_PREF."debtor_trans.type = ".TB_PREF."cust_allocations.trans_type_to
-                       AND ".TB_PREF."cust_allocations.trans_no_from=$trans_no
-                       AND ".TB_PREF."cust_allocations.trans_type_from=$type
-                       AND ".TB_PREF."debtor_trans.debtor_no=$customer_id",
-                       "".TB_PREF."cust_allocations");
+               $sql = get_alloc_trans_sql("amt", "trans.trans_no = alloc.trans_no_to
+                       AND trans.type = alloc.trans_type_to
+                       AND alloc.trans_no_from=$trans_no
+                       AND alloc.trans_type_from=$type
+                       AND trans.debtor_no=$customer_id",
+                       "".TB_PREF."cust_allocations as alloc");
        }
        else
        {
-               return get_customer_transactions(null, "round(ov_amount+ov_gst+ov_freight+ov_freight_tax+ov_discount-alloc,6) > 0
-                       AND ".TB_PREF."debtor_trans.type != " . systypes::cust_payment() . "
-                       AND ".TB_PREF."debtor_trans.type != " . systypes::bank_deposit() . "
-                       AND ".TB_PREF."debtor_trans.type != 11
-                       AND ".TB_PREF."debtor_trans.type != 13
-                       AND ".TB_PREF."debtor_trans.debtor_no=$customer_id");
+               $sql = get_alloc_trans_sql(null, "round(ov_amount+ov_gst+ov_freight+ov_freight_tax+ov_discount-alloc,6) > 0
+                       AND trans.type != " . systypes::cust_payment() . "
+                       AND trans.type != " . systypes::bank_deposit() . "
+                       AND trans.type != 11
+                       AND trans.type != 13
+                       AND trans.debtor_no=$customer_id");
        }
+
+       return db_query($sql." ORDER BY trans_no", "Cannot retreive alloc to transactions");
 }