if (db_num_rows($result) == 0)
{
- echo _("There are no transactions for this dimension.") . "<br>";
- }
- else
+ display_note(_("There are no transactions for this dimension."));
+ }
+ else
{
display_heading2(_("Transactions for this Dimension"));
start_table($table_style);
$th = array(_("Type"), _("#"), _("Reference"),
_("Date"), _("Debit"), _("Credit"));
- table_header($th);
+ table_header($th);
$total = $k = 0;
- while ($myrow = db_fetch($result))
+ while ($myrow = db_fetch($result))
{
alt_table_row_color($k);
include_once($path_to_root . "/includes/session.inc");
-page(_("View Dimension"), true);
+$js = "";
+if ($use_popup_windows)
+ $js .= get_js_open_window(800, 500);
+page(_("View Dimension"), true, false, "", $js);
include_once($path_to_root . "/includes/date_functions.inc");
include_once($path_to_root . "/includes/data_checks.inc");
//-------------------------------------------------------------------------------------------------
-if ($_GET['trans_no'] != "")
+if ($_GET['trans_no'] != "")
{
$id = $_GET['trans_no'];
}
$myrow = get_dimension($id);
-if (strlen($myrow[0]) == 0)
+if (strlen($myrow[0]) == 0)
{
echo _("The work order number sent is not valid.");
exit;
end_table();
-if ($myrow["closed"] == true)
+if ($myrow["closed"] == true)
{
- echo "<br>" . _("This dimension is closed.") . "<br>";
+ display_note(_("This dimension is closed."));
}
display_dimension_payments($id);