X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=inventory%2Fmanage%2Fitem_categories.php;h=b52d67c812b27497a42eb5f4a54258bd37086148;hb=aba8836338d2bc58328f3e5a1862bc845500aaf3;hp=78c21944d49f1a7c824d87eab58b749b758567d8;hpb=0b253e5e0d23400838d3bfb4f27fb3fb2637b3ab;p=fa-stable.git diff --git a/inventory/manage/item_categories.php b/inventory/manage/item_categories.php index 78c21944..b52d67c8 100644 --- a/inventory/manage/item_categories.php +++ b/inventory/manage/item_categories.php @@ -9,11 +9,11 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the License here . ***********************************************************************/ -$page_security = 11; -$path_to_root="../.."; +$page_security = 'SA_ITEMCATEGORY'; +$path_to_root = "../.."; include($path_to_root . "/includes/session.inc"); -page(_("Item Categories")); +page(_($help_context = "Item Categories")); include_once($path_to_root . "/includes/ui.inc"); @@ -43,7 +43,8 @@ if ($Mode=='ADD_ITEM' || $Mode=='UPDATE_ITEM') $_POST['tax_type_id'], $_POST['sales_account'], $_POST['cogs_account'], $_POST['inventory_account'], $_POST['adjustment_account'], $_POST['assembly_account'], - $_POST['units'], $_POST['mb_flag'], $_POST['dim1'], $_POST['dim2']); + $_POST['units'], $_POST['mb_flag'], $_POST['dim1'], $_POST['dim2'], + check_value('no_sale')); display_notification(_('Selected item category has been updated')); } else @@ -53,7 +54,7 @@ if ($Mode=='ADD_ITEM' || $Mode=='UPDATE_ITEM') $_POST['cogs_account'], $_POST['inventory_account'], $_POST['adjustment_account'], $_POST['assembly_account'], $_POST['units'], $_POST['mb_flag'], $_POST['dim1'], - $_POST['dim2']); + $_POST['dim2'], check_value('no_sale')); display_notification(_('New item category has been added')); } $Mode = 'RESET'; @@ -66,10 +67,7 @@ if ($Mode == 'Delete') { // PREVENT DELETES IF DEPENDENT RECORDS IN 'stock_master' - $sql= "SELECT COUNT(*) FROM ".TB_PREF."stock_master WHERE category_id='$selected_id'"; - $result = db_query($sql, "could not query stock master"); - $myrow = db_fetch_row($result); - if ($myrow[0] > 0) + if (key_in_foreign_table($selected_id, 'stock_master', 'category_id')) { display_error(_("Cannot delete this item category because items have been created using this item category.")); } @@ -93,16 +91,12 @@ if (list_updated('mb_flag')) { } //---------------------------------------------------------------------------------- -$sql = "SELECT c.*, t.name as tax_name FROM ".TB_PREF."stock_category c, " - .TB_PREF."item_tax_types t WHERE c.dflt_tax_type=t.id"; -if (!check_value('show_inactive')) $sql .= " AND !inactive"; - -$result = db_query($sql, "could not get stock categories"); +$result = get_item_categories(check_value('show_inactive')); start_form(); -start_table("$table_style width=80%"); +start_table(TABLESTYLE, "width=80%"); $th = array(_("Name"), _("Tax type"), _("Units"), _("Type"), _("Sales Act"), -_("COGS Account"), _("Inventory Account"), _("Adjustment Account"), +_("Inventory Account"), _("COGS Account"), _("Adjustment Account"), _("Assembly Account"), "", ""); inactive_control_column($th); @@ -119,8 +113,8 @@ while ($myrow = db_fetch($result)) label_cell($myrow["dflt_units"], "align=center"); label_cell($stock_types[$myrow["dflt_mb_flag"]]); label_cell($myrow["dflt_sales_act"], "align=center"); - label_cell($myrow["dflt_cogs_act"], "align=center"); label_cell($myrow["dflt_inventory_act"], "align=center"); + label_cell($myrow["dflt_cogs_act"], "align=center"); label_cell($myrow["dflt_adjustment_act"], "align=center"); label_cell($myrow["dflt_assembly_act"], "align=center"); inactive_control_cell($myrow["category_id"], $myrow["inactive"], 'stock_category', 'category_id'); @@ -135,7 +129,7 @@ echo '
'; //---------------------------------------------------------------------------------- div_start('details'); -start_table($table_style2); +start_table(TABLESTYLE2); if ($selected_id != -1) { @@ -155,12 +149,14 @@ if ($selected_id != -1) $_POST['mb_flag'] = $myrow["dflt_mb_flag"]; $_POST['dim1'] = $myrow["dflt_dim1"]; $_POST['dim2'] = $myrow["dflt_dim2"]; + $_POST['no_sale'] = $myrow["dflt_no_sale"]; } hidden('selected_id', $selected_id); hidden('category_id'); -} else { +} else if ($Mode != 'CLONE') { $_POST['long_description'] = ''; $_POST['description'] = ''; + $_POST['no_sale'] = 0; $company_record = get_company_prefs(); @@ -191,19 +187,22 @@ stock_item_types_list_row(_("Item Type:"), 'mb_flag', null, true); stock_units_list_row(_("Units of Measure:"), 'units', null); -gl_all_accounts_list_row(_("Sales Account:"), 'sales_account', $_POST['sales_account']); +check_row(_("Exclude from sales:"), 'no_sale'); -gl_all_accounts_list_row(_("Inventory Account:"), 'inventory_account', $_POST['inventory_account']); +gl_all_accounts_list_row(_("Sales Account:"), 'sales_account', $_POST['sales_account']); -if (!is_service($_POST['mb_flag'])) +if (is_service($_POST['mb_flag'])) { gl_all_accounts_list_row(_("C.O.G.S. Account:"), 'cogs_account', $_POST['cogs_account']); - gl_all_accounts_list_row(_("Inventory Adjustments Account:"), 'adjustment_account', $_POST['adjustment_account']); + hidden('inventory_account', $_POST['inventory_account']); + hidden('adjustment_account', $_POST['adjustment_account']); } -else +else { - hidden('cogs_account', $_POST['cogs_account']); - hidden('adjustment_account', $_POST['adjustment_account']); + gl_all_accounts_list_row(_("Inventory Account:"), 'inventory_account', $_POST['inventory_account']); + + gl_all_accounts_list_row(_("C.O.G.S. Account:"), 'cogs_account', $_POST['cogs_account']); + gl_all_accounts_list_row(_("Inventory Adjustments Account:"), 'adjustment_account', $_POST['adjustment_account']); } if (is_manufactured($_POST['mb_flag'])) @@ -225,7 +224,7 @@ if ($dim < 2) end_table(1); div_end(); -submit_add_or_update_center($selected_id == -1, '', 'both'); +submit_add_or_update_center($selected_id == -1, '', 'both', true); end_form();