X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=inventory%2Fpurchasing_data.php;h=84b1603e8f962836f066694b5df2bf556e3b3c79;hb=316007a1fa9cb1fd6d11460326160d4a60a0d943;hp=8c36581ddd5d30823652d613f56eb02dc3c01b47;hpb=95fd152649f9383cee8680762daf3430e8250bd6;p=fa-stable.git diff --git a/inventory/purchasing_data.php b/inventory/purchasing_data.php index 8c36581d..84b1603e 100644 --- a/inventory/purchasing_data.php +++ b/inventory/purchasing_data.php @@ -21,7 +21,10 @@ include_once($path_to_root . "/includes/date_functions.inc"); include_once($path_to_root . "/includes/ui.inc"); include_once($path_to_root . "/includes/data_checks.inc"); -page(_($help_context = "Supplier Purchasing Data")); +$js = ""; +if ($SysPrefs->use_popup_windows && $SysPrefs->use_popup_search) + $js .= get_js_open_window(900, 500); +page(_($help_context = "Supplier Purchasing Data"), false, false, "", $js); check_db_has_purchasable_items(_("There are no purchasable inventory items defined in the system.")); check_db_has_suppliers(_("There are no suppliers defined in the system.")); @@ -130,6 +133,7 @@ $mb_flag = get_mb_flag($_POST['stock_id']); if ($mb_flag == -1) { display_error(_("Entered item is not defined. Please re-enter.")); + $Ajax->activate('price_table'); set_focus('stock_id'); } else @@ -215,7 +219,7 @@ if (!isset($_POST['conversion_factor']) || $_POST['conversion_factor'] == "") $_POST['conversion_factor'] = maxprec_format(1); } amount_row(_("Conversion Factor (to our UOM):"), 'conversion_factor', null, null, null, 'max'); -text_row(_("Supplier's Code or Description:"), 'supplier_description', null, 50, 51); +text_row(_("Supplier's Code or Description:"), 'supplier_description', null, 50, 50); end_table(1);