X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=dimensions%2Fview%2Fview_dimension.php;h=9d74b06b84f5ae82647a48b114b294f8505d4b42;hb=90c08330ed36df13b13b7bf8577a70699acf85d3;hp=ce56248426fbe459abc63d2653d62cc554804a46;hpb=da8311619dd73feae101d246a1957b972e00cbd2;p=fa-stable.git diff --git a/dimensions/view/view_dimension.php b/dimensions/view/view_dimension.php index ce562484..9d74b06b 100644 --- a/dimensions/view/view_dimension.php +++ b/dimensions/view/view_dimension.php @@ -1,11 +1,23 @@ . +***********************************************************************/ $page_security = 10; $path_to_root="../.."; include_once($path_to_root . "/includes/session.inc"); -page(_("View Dimension"), true); +$js = ""; +if ($use_date_picker) + $js .= get_js_date_picker(); +page(_("View Dimension"), true, false, "", $js); include_once($path_to_root . "/includes/date_functions.inc"); include_once($path_to_root . "/includes/data_checks.inc"); @@ -15,18 +27,25 @@ include_once($path_to_root . "/dimensions/includes/dimensions_ui.inc"); //------------------------------------------------------------------------------------------------- -if ($_GET['trans_no'] != "") +if (isset($_GET['trans_no']) && $_GET['trans_no'] != "") { $id = $_GET['trans_no']; } +if (isset($_POST['Show'])) +{ + $id = $_POST['trans_no']; +} + + display_heading(systypes::name(systypes::dimension()) . " # " . $id); +br(1); $myrow = get_dimension($id); -if (strlen($myrow[0]) == 0) +if (strlen($myrow[0]) == 0) { - echo _("The work order number sent is not valid."); + echo _("The dimension number sent is not valid."); exit; } @@ -48,12 +67,31 @@ comments_display_row(systypes::dimension(), $id); end_table(); -if ($myrow["closed"] == true) +if ($myrow["closed"] == true) { - echo "
" . _("This dimension is closed.") . "
"; + display_note(_("This dimension is closed.")); } -display_dimension_payments($id); +start_form(); + +start_table("class='tablestyle_noborder'"); +start_row(); + +if (!isset($_POST['TransFromDate'])) + $_POST['TransFromDate'] = begin_fiscalyear(); +if (!isset($_POST['TransToDate'])) + $_POST['TransToDate'] = Today(); +date_cells(_("from:"), 'TransFromDate'); +date_cells(_("to:"), 'TransToDate'); +submit_cells('Show',_("Show"), '', false, 'default'); + +end_row(); + +end_table(); +hidden('trans_no', $id); +end_form(); + +display_dimension_balance($id, $_POST['TransFromDate'], $_POST['TransToDate']); br(1);