X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=sales%2Fmanage%2Fsales_points.php;h=972e3afc6dbbaeda446198dce8d8217de3c61db4;hb=bcdfafb67b41c26be1dd0dc01992bdd75bf5e16e;hp=e46e7b74fc663ae6a383a10bd296c2785fabd534;hpb=a0cb11a80b60f2b5e957d96ec9069ef82e718b26;p=fa-stable.git diff --git a/sales/manage/sales_points.php b/sales/manage/sales_points.php index e46e7b74..972e3afc 100644 --- a/sales/manage/sales_points.php +++ b/sales/manage/sales_points.php @@ -29,13 +29,6 @@ function can_process() set_focus('pos_name'); return false; } - if (!check_value('cash') && !check_value('credit')) - { - display_error(_("You must allow cash or credit sale.")); - set_focus('credit'); - return false; - } - return true; } @@ -64,9 +57,8 @@ if ($Mode=='UPDATE_ITEM' && can_process()) if ($Mode == 'Delete') { - $sql = "SELECT * FROM ".TB_PREF."users WHERE pos=".db_escape($selected_id); - $res = db_query($sql, "canot check pos usage"); - if (db_num_rows($res)) { + if (key_in_foreign_table($selected_id, 'users', 'pos')) + { display_error(_("Cannot delete this POS because it is used in users setup.")); } else { delete_sales_point($selected_id); @@ -87,7 +79,7 @@ if ($Mode == 'RESET') $result = get_all_sales_points(check_value('show_inactive')); start_form(); -start_table("$table_style"); +start_table(TABLESTYLE); $th = array (_('POS Name'), _('Credit sale'), _('Cash sale'), _('Location'), _('Default account'), '',''); @@ -117,7 +109,7 @@ $cash = db_has_cash_accounts(); if (!$cash) display_note(_("To have cash POS first define at least one cash bank account.")); -start_table($table_style2); +start_table(TABLESTYLE2); if ($selected_id != -1) { @@ -136,8 +128,8 @@ if ($selected_id != -1) text_row_ex(_("Point of Sale Name").':', 'name', 20, 30); if($cash) { - check_row(_('Allowed credit sale'), 'credit', check_value('credit_sale')); - check_row(_('Allowed cash sale'), 'cash', check_value('cash_sale')); + check_row(_('Allowed credit sale terms selection:'), 'credit', check_value('credit_sale')); + check_row(_('Allowed cash sale terms selection:'), 'cash', check_value('cash_sale')); cash_accounts_list_row(_("Default cash account").':', 'account'); } else { hidden('credit', 1); @@ -153,4 +145,3 @@ end_form(); end_page(); -?>