X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=dimensions%2Fview%2Fview_dimension.php;h=8b658278a5380417471e43fd4213aa12df55e87f;hb=17bc3d2f9c2f78934674e0b98f3d205869bfdbc2;hp=a8ad64d1bae66a9e752bda9c37b548352206cfa3;hpb=d567a10b7925c8bb97c734e213d6651a979af29d;p=fa-stable.git diff --git a/dimensions/view/view_dimension.php b/dimensions/view/view_dimension.php index a8ad64d1..8b658278 100644 --- a/dimensions/view/view_dimension.php +++ b/dimensions/view/view_dimension.php @@ -9,15 +9,15 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the License here . ***********************************************************************/ -$page_security = 10; -$path_to_root="../.."; +$page_security = 'SA_DIMTRANSVIEW'; +$path_to_root = "../.."; include_once($path_to_root . "/includes/session.inc"); $js = ""; -if ($use_date_picker) +if (user_use_date_picker()) $js .= get_js_date_picker(); -page(_("View Dimension"), true, false, "", $js); +page(_($help_context = "View Dimension"), true, false, "", $js); include_once($path_to_root . "/includes/date_functions.inc"); include_once($path_to_root . "/includes/data_checks.inc"); @@ -35,10 +35,11 @@ if (isset($_GET['trans_no']) && $_GET['trans_no'] != "") if (isset($_POST['Show'])) { $id = $_POST['trans_no']; + $Ajax->activate('_page_body'); } -display_heading(systypes::name(systypes::dimension()) . " # " . $id); +display_heading($systypes_array[ST_DIMENSION] . " # " . $id); br(1); $myrow = get_dimension($id); @@ -49,7 +50,7 @@ if (strlen($myrow[0]) == 0) exit; } -start_table($table_style); +start_table(TABLESTYLE); $th = array(_("#"), _("Reference"), _("Name"), _("Type"), _("Date"), _("Due Date")); table_header($th); @@ -63,7 +64,7 @@ label_cell(sql2date($myrow["date_"])); label_cell(sql2date($myrow["due_date"])); end_row(); -comments_display_row(systypes::dimension(), $id); +comments_display_row(ST_DIMENSION, $id); end_table(); @@ -74,7 +75,7 @@ if ($myrow["closed"] == true) start_form(); -start_table("class='tablestyle_noborder'"); +start_table(TABLESTYLE_NOBORDER); start_row(); if (!isset($_POST['TransFromDate'])) @@ -83,7 +84,7 @@ if (!isset($_POST['TransToDate'])) $_POST['TransToDate'] = Today(); date_cells(_("from:"), 'TransFromDate'); date_cells(_("to:"), 'TransToDate'); -submit_cells('Show',_("Show")); +submit_cells('Show',_("Show"), '', false, 'default'); end_row(); @@ -95,6 +96,5 @@ display_dimension_balance($id, $_POST['TransFromDate'], $_POST['TransToDate']); br(1); -end_page(true); +end_page(true, false, false, ST_DIMENSION, $id); -?>