Fixing bug in Sales Invoice and Sales Delivery when Cash Sales and document date...
[fa-stable.git] / gl / inquiry / journal_inquiry.php
index 8f0db537cc5109962772a8264d7c6d8d7a1d05e1..fbd7c06a2efe4a221253774d20732485f9b3cce4 100644 (file)
@@ -88,10 +88,11 @@ function edit_link($row)
        if ($row['trans_type'] == ST_SALESINVOICE)
        {
                $myrow = get_customer_trans($row["trans_no"], $row["trans_type"]);
-               if ($myrow['alloc'] != 0 || get_voided_entry(ST_SALESINVOICE, $row["trans_no"]) !== false)
+               if ($myrow['alloc'] != $myrow['Total'] || get_voided_entry(ST_SALESINVOICE, $row["trans_no"]) !== false)
                        $ok = false;
        }
-       return $ok ? trans_editor_link( $row["trans_type"], $row["trans_no"]) : '';
+       
+       return $ok ? trans_editor_link( $row["trans_type"], $row["trans_no"]) : '--';
 }
 
 function invoice_supp_reference($row)