Changed Journal # to GL # in GL Trans View.
authorJoe Hunt <joe.hunt.consulting@gmail.com>
Tue, 18 Dec 2018 11:53:37 +0000 (12:53 +0100)
committerJoe Hunt <joe.hunt.consulting@gmail.com>
Tue, 18 Dec 2018 11:53:37 +0000 (12:53 +0100)
gl/inquiry/journal_inquiry.php
gl/view/gl_trans_view.php
includes/ui/ui_view.inc

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)
index 36f3d547a61dd68ccd663d3b5baec1c995e1187e..75ee82a3f66ff498a482c16103f08958a7652b1a 100644 (file)
@@ -36,7 +36,7 @@ function display_gl_heading($myrow)
 
     start_table(TABLESTYLE, "width='95%'");
     $th = array(_("General Ledger Transaction Details"), _("Reference"),
-       _("Transaction Date"), _("Journal #"));
+       _("Transaction Date"), _("GL #"));
 
        if ($_GET['type_id'] == ST_JOURNAL)
                array_insert($th, 3, array(_("Document Date"), _("Event Date")));
index 9030ca90c9db22d88a926c111347669bf70b33f0..642b99436941968636852b1159ef755c0d3fd42b 100644 (file)
@@ -1562,7 +1562,7 @@ function trans_editor_link($type, $trans_no)
        //   35=> Cost Update,
        );
 
-       return !isset($editor_url[$type]) ? '' :
+       return !isset($editor_url[$type]) ? '--' :
                (is_closed_trans($type, $trans_no) ? set_icon(ICON_CLOSED, _('Closed')) :
                        pager_link(_("Edit"), sprintf($editor_url[$type], $trans_no, $type), ICON_EDIT));
 }