# [0000145] Email sales order doesn't work if no email on branch but on customer
$ /sales/includes/db/sales_order_db.inc
/reporting/rep109.php
+! Changed so $use_oldstyle_convert=1 variable in config.php (line 78) gives fully backwards compatibility in
+ Balance Sheet, PL Statements and Monthly Bread Down reports.
+$ /gl/manage/gl_account_classes.php.
------------------------------- Release 2.1.4 ----------------------------------
30-Jul-2009 Joe Hunt
function can_process()
{
+ global $use_oldstyle_convert;
if (!is_numeric($_POST['id']))
{
display_error( _("The account class ID must be numeric."));
set_focus('name');
return false;
}
-
+ if (isset($use_oldstyle_convert) && $use_oldstyle_convert == 1)
+ $_POST['Balance'] = check_value($_POST['Balance']);
return true;
}
start_form();
start_table($table_style);
$th = array(_("Class ID"), _("Class Name"), _("Class Type"), "", "");
+if (isset($use_oldstyle_convert) && $use_oldstyle_convert == 1)
+ $th[2] = _("Balance Sheet");
table_header($th);
$k = 0;
label_cell($myrow["cid"]);
label_cell($myrow['class_name']);
- label_cell($class_types[$myrow["balance_sheet"]]);
+ if (isset($use_oldstyle_convert) && $use_oldstyle_convert == 1)
+ {
+ $myrow['balance_sheet'] = ($myrow["balance_sheet"] >= CL_ASSETS && $myrow["balance_sheet"] < CL_INCOME ? 1 : 0);
+ label_cell(($myrow['balance_sheet'] == 1 ? _("Yes") : _("No")));
+ }
+ else
+ label_cell($class_types[$myrow["balance_sheet"]]);
edit_button_cell("Edit".$myrow["cid"], _("Edit"));
delete_button_cell("Delete".$myrow["cid"], _("Delete"));
end_row();
$_POST['id'] = $myrow["cid"];
$_POST['name'] = $myrow["class_name"];
- $_POST['Balance'] = $myrow["balance_sheet"];
+ if (isset($use_oldstyle_convert) && $use_oldstyle_convert == 1)
+ $_POST['Balance'] = ($myrow["balance_sheet"] >= CL_ASSETS && $myrow["balance_sheet"] < CL_INCOME ? 1 : 0);
+ else
+ $_POST['Balance'] = $myrow["balance_sheet"];
hidden('selected_id', $selected_id);
}
hidden('id');
text_row_ex(_("Class Name:"), 'name', 50, 60);
-class_types_list_row(_("Class Type:"), 'Balance', null);
+if (isset($use_oldstyle_convert) && $use_oldstyle_convert == 1)
+ check_row(_("Balance Sheet"), 'Balance', null);
+else
+ class_types_list_row(_("Class Type:"), 'Balance', null);
end_table(1);