X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=sales%2Fcredit_note_entry.php;h=f32e2268d8bfc8e39b1ffec802d8ef48fab97838;hb=40c3b111b007ad16a2eedff175e1612150191d04;hp=70148e81a6574fc99ae54fa30ac53d3158e8abe5;hpb=acbb281bf6915bfccd6798b12eae1fd7d60f63c6;p=fa-stable.git diff --git a/sales/credit_note_entry.php b/sales/credit_note_entry.php index 70148e81..f32e2268 100644 --- a/sales/credit_note_entry.php +++ b/sales/credit_note_entry.php @@ -26,10 +26,10 @@ include_once($path_to_root . "/sales/includes/ui/sales_order_ui.inc"); include_once($path_to_root . "/reporting/includes/reporting.inc"); $js = ""; -if ($use_popup_windows) { +if ($SysPrefs->use_popup_windows) { $js .= get_js_open_window(900, 500); } -if ($use_date_picker) { +if (user_use_date_picker()) { $js .= get_js_date_picker(); } @@ -78,7 +78,7 @@ if (isset($_GET['AddedID'])) { display_footer_exit(); } else - check_edit_conflicts(); + check_edit_conflicts(get_post('cart_id')); //-------------------------------------------------------------------------------- @@ -154,7 +154,7 @@ function can_process() set_focus('OrderDate'); $input_error = 1; } elseif (!is_date_in_fiscalyear($_POST['OrderDate'])) { - display_error(_("The entered date is not in fiscal year.")); + display_error(_("The entered date is out of fiscal year or is closed for further data entry.")); set_focus('OrderDate'); $input_error = 1; } @@ -288,4 +288,3 @@ echo ""; end_form(); end_page(); -?>