X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=gl%2Fmanage%2Fexchange_rates.php;h=eaa0796f0cf518ab6d65b97b6f0f336ba9c7adf0;hb=efc1a9ce400be6233323af9c193ab9460407bcf6;hp=e50fc5f308ae6995876c35213866cffca5005969;hpb=5f06887dedd4d14701864fb72994d7e20352086d;p=fa-stable.git diff --git a/gl/manage/exchange_rates.php b/gl/manage/exchange_rates.php index e50fc5f3..eaa0796f 100644 --- a/gl/manage/exchange_rates.php +++ b/gl/manage/exchange_rates.php @@ -40,7 +40,12 @@ function check_data() set_focus('BuyRate'); return false; } - + if (get_date_exchange_rate($_POST['curr_abrev'], $_POST['date_'])) + { + display_error( _("The exchange rate for the date is already there.")); + set_focus('date_'); + return false; + } return true; } @@ -96,7 +101,6 @@ function del_link($row) function display_rates($curr_code) { - global $table_style; } @@ -104,9 +108,9 @@ function display_rates($curr_code) function display_rate_edit() { - global $selected_id, $table_style2, $Ajax; + global $selected_id, $Ajax; - start_table($table_style2); + start_table(TABLESTYLE2); if ($selected_id != "") { @@ -207,6 +211,8 @@ else br(1); $table->width = "40%"; + if ($table->rec_count == 0) + $table->ready = false; display_db_pager($table); br(1); display_rate_edit();