Reorganized work order costing to make corect registration of costs in journal.
[fa-stable.git] / includes / ui / ui_view.inc
index c0e9e8c9a02646b3787c8eafc0906ea383baa576..f9ae9fc37789322fb7f2c76e873b69037f7dec38 100644 (file)
@@ -51,10 +51,10 @@ function get_gl_view_str($type, $trans_no, $label="", $force=false, $class='', $
                $label = _("GL");
                $icon = ICON_GL;
        }       
+       $url = ($type == ST_WORKORDER && !work_order_is_closed($trans_no)) ? "manufacturing/view/wo_costs_view.php?trans_no=$trans_no"
+               : "gl/view/gl_trans_view.php?type_id=$type&trans_no=$trans_no";
 
-       return viewer_link($label, 
-               "gl/view/gl_trans_view.php?type_id=$type&trans_no=$trans_no", 
-               $class, $id, $icon);
+       return viewer_link($label, $url, $class, $id, $icon);
 }
 
 //--------------------------------------------------------------------------------------