Added text fields sanitization on upgrdae to 2.2.
[fa-stable.git] / gl / includes / ui / gl_journal_ui.inc
index 85c7bcf12cdf69c91a8ec954de7260732784838d..db92a7bb04660e09836078a881a047fdc88b7e33 100644 (file)
@@ -26,17 +26,21 @@ function display_order_header(&$Order)
        start_row();
     date_cells(_("Date:"), 'date_', '', $new);
 
-       if ($qes)
-               table_section(2, "20%");
-       else    
-               table_section(2, "50%");
-
+       table_section(2, $qes ? "20%" : "50%");
        if ($new)
                ref_cells(_("Reference:"), 'ref', '');
        else
                label_cells(_("Reference:"), $Order->reference);
        end_row();
 
+
+       if ($new) {
+               table_section(3, "20%");
+               start_row();
+               check_cells(_("Reverse Transaction:"), 'Reverse', null);
+               end_row();
+       }
+
        if ($qes !== false)
        {
                table_section(3, "50%");
@@ -188,7 +192,7 @@ function gl_edit_item_controls(&$order, $dim, $Index=null)
                            $Ajax->activate('code_id');
                }
                
-               $skip_bank = ($_SESSION["wa_current_user"]->access != 2);
+               $skip_bank = !$_SESSION["wa_current_user"]->can_access('SA_BANKJOURNAL');
                gl_all_accounts_list('code_id', null, $skip_bank, true);
                if ($dim >= 1)
                        dimensions_list_cells(null, 'dimension_id', null, true, " ", false, 1);