Bug [0000069] Constraint on voiding delivery note if a non voided, linked invoice...
authorJoe Hunt <joe.hunt.consulting@gmail.com>
Thu, 2 Oct 2008 14:59:31 +0000 (14:59 +0000)
committerJoe Hunt <joe.hunt.consulting@gmail.com>
Thu, 2 Oct 2008 14:59:31 +0000 (14:59 +0000)
CHANGELOG.txt
admin/db/voiding_db.inc

index 01d519e0d9cc038fcf8950c8bc9d9fd0e8bfa030..a2c91f83c17911163be767db52c7c2acafaad20a 100644 (file)
@@ -19,6 +19,10 @@ Legend:
 ! -> Note
 $ -> Affected files
 
+04-Oct-2008 Joe Hunt
+# Bug [0000069] Constraint on voiding delivery note if a non voided, linked invoice exists.
+$ /admin/db/voiding_db.inc
+
 01-Oct-2008 Joe Hunt
 # When deleting the last module in FA a parce error arose:
 $ /admin/inst_module.php
index 2dd72d379a638cc4adc4c11bc79c43400ec1c991..e81dd1b0dfc848376edd0fd44b27269cf05fb4f4 100644 (file)
@@ -35,6 +35,17 @@ function void_transaction($type, $type_no, $date_, $memo_)
                case 13 : // it's a customer dispatch
                        if (!exists_customer_trans($type, $type_no))
                                return false;
+                       if ($type == 13)        // added 04 Oct 2008 by Joe Hunt. If delivery note has a not voided invoice, then NO.
+                       {
+                               $delivery = get_customer_trans($type_no, $type);
+                               if ($delivery['trans_link'] != 0)
+                               {
+                                       $inv = get_customer_trans($delivery['trans_link'], 10);
+                                       if ($inv['ov_amount'] != 0 || $inv['ov_discount'] != 0 || $inv['ov_gst'] != 0 || 
+                                               $inv['ov_freight'] != 0 || $inv['ov_freight_tax'] != 0 || $inv['alloc'] != 0)
+                                               return false;
+                               }
+                       }       
                        post_void_customer_trans($type, $type_no);
                        break;