X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=inventory%2Fprices.php;h=dfac2aa5a4c6b01c27da23ba0ab1cdca1f7948b7;hb=d9b4de9d7e9d3ba77f6ece752fd6cc988effd8f1;hp=6268d2bf697324d13870bba256ff594b4ae40c0a;hpb=44012f6736c91bc0811d64544fd90b6181433a5f;p=fa-stable.git diff --git a/inventory/prices.php b/inventory/prices.php index 6268d2bf..dfac2aa5 100644 --- a/inventory/prices.php +++ b/inventory/prices.php @@ -9,11 +9,11 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the License here . ***********************************************************************/ -$page_security = 2; -$path_to_root=".."; +$page_security = 'SA_SALESPRICE'; +$path_to_root = ".."; include_once($path_to_root . "/includes/session.inc"); -page(_("Inventory Item Sales prices")); +page(_($help_context = "Inventory Item Sales prices")); include_once($path_to_root . "/sales/includes/sales_db.inc"); include_once($path_to_root . "/sales/includes/db/sales_types_db.inc"); @@ -54,7 +54,7 @@ if (!isset($_POST['stock_id'])) $_POST['stock_id'] = get_global_stock_item(); echo "
" . _("Item:"). " "; -sales_items_list('stock_id', $_POST['stock_id'], false, true); +echo sales_items_list('stock_id', $_POST['stock_id'], false, true, '', array('editable' => false)); echo "
"; set_global_stock_item($_POST['stock_id']); @@ -128,7 +128,7 @@ if (list_updated('stock_id') || isset($_POST['_curr_abrev_update']) || isset($_P $prices_list = get_prices($_POST['stock_id']); div_start('price_table'); -start_table("$table_style width=30%"); +start_table(TABLESTYLE, "width=30%"); $th = array(_("Currency"), _("Sales Type"), _("Price"), "", ""); table_header($th); @@ -150,7 +150,8 @@ while ($myrow = db_fetch($prices_list)) end_table(); if (db_num_rows($prices_list) == 0) { - $calculated = true; + if (get_company_pref('add_pct') != -1) + $calculated = true; display_note(_("There are no prices set up for this part."), 1); } div_end(); @@ -168,7 +169,7 @@ if ($Mode == 'Edit') hidden('selected_id', $selected_id); div_start('price_details'); -start_table($table_style2); +start_table(TABLESTYLE2); currencies_list_row(_("Currency:"), 'curr_abrev', null, true);