Changed all numeric constants to the new defined constants. A huge task.
[fa-stable.git] / purchasing / inquiry / supplier_inquiry.php
index 38508f71ea5fec9141509a9f51b11084d99e1d6b..dff07c662cbf465f6b7485ecc355d5fbca486f2c 100644 (file)
@@ -115,7 +115,7 @@ function trans_view($trans)
 
 function due_date($row)
 {
-       return ($row["type"]== 20) || ($row["type"]== 21) ? $row["due_date"] : '';
+       return ($row["type"]== ST_SUPPINVOICE) || ($row["type"]== ST_SUPPCREDIT) ? $row["due_date"] : '';
 }
 
 function gl_view($row)
@@ -125,7 +125,7 @@ function gl_view($row)
 
 function credit_link($row)
 {
-       return $row['type'] == 20 && $row["TotalAmount"] - $row["Allocated"] > 0 ?
+       return $row['type'] == ST_SUPPINVOICE && $row["TotalAmount"] - $row["Allocated"] > 0 ?
                pager_link(_("Credit This"),
                        "/purchasing/supplier_credit.php?New=1&invoice_no=".
                        $row['trans_no'], ICON_CREDIT)
@@ -171,7 +171,7 @@ function check_overdue($row)
                supplier.curr_code, 
        (trans.ov_amount + trans.ov_gst  + trans.ov_discount) AS TotalAmount, 
                trans.alloc AS Allocated,
-               ((trans.type = 20 OR trans.type = 21) AND trans.due_date < '" . date2sql(Today()) . "') AS OverDue,
+               ((trans.type = ".ST_SUPPINVOICE." OR trans.type = ".ST_SUPPCREDIT.") AND trans.due_date < '" . date2sql(Today()) . "') AS OverDue,
        (ABS(trans.ov_amount + trans.ov_gst  + trans.ov_discount - trans.alloc) <= 0.005) AS Settled
        FROM ".TB_PREF."supp_trans as trans, ".TB_PREF."suppliers as supplier
        WHERE supplier.supplier_id = trans.supplier_id
@@ -184,19 +184,19 @@ function check_overdue($row)
        {
                if (($_POST['filterType'] == '1')) 
                {
-                       $sql .= " AND (trans.type = 20 OR trans.type = 2)";
+                       $sql .= " AND (trans.type = ".ST_SUPPINVOICE." OR trans.type = ".ST_BANKDEPOSIT.")";
                } 
                elseif (($_POST['filterType'] == '2')) 
                {
-                       $sql .= " AND trans.type = 20 ";
+                       $sql .= " AND trans.type = ".ST_SUPPINVOICE." ";
                } 
                elseif ($_POST['filterType'] == '3') 
                {
-                       $sql .= " AND (trans.type = 22 OR trans.type = 1) ";
+                       $sql .= " AND (trans.type = ".ST_SUPPAYMENT." OR trans.type = ".ST_BANKPAYMENT.") ";
                } 
                elseif (($_POST['filterType'] == '4') || ($_POST['filterType'] == '5')) 
                {
-                       $sql .= " AND trans.type = 21  ";
+                       $sql .= " AND trans.type = ".ST_SUPPCREDIT."  ";
                }
 
                if (($_POST['filterType'] == '2') || ($_POST['filterType'] == '5'))