X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=inventory%2Fpurchasing_data.php;h=67b670ffd6a89c742da8a5c37a352aa45992be57;hb=a7644a40245495d37dd13871b14e593f3c5e21ae;hp=8a1b4c0f2cef176859066345ddaa965f5a141791;hpb=0b0690657989cd259e5966faaac7cacbfa89cee2;p=fa-stable.git diff --git a/inventory/purchasing_data.php b/inventory/purchasing_data.php index 8a1b4c0f..67b670ff 100644 --- a/inventory/purchasing_data.php +++ b/inventory/purchasing_data.php @@ -1,6 +1,4 @@ activate('_page_body'); } + if (isset($_POST['_stock_id_update'])) $Ajax->activate('price_table'); //-------------------------------------------------------------------------------------------------- @@ -163,8 +149,8 @@ else label_cell($myrow["curr_code"]); label_cell($myrow["suppliers_uom"]); label_cell($myrow["supplier_description"]); - edit_link_cell("stock_id=" . $_POST['stock_id']. "&supplier_id=" . $myrow["supplier_id"] . "&Edit=1"); - delete_link_cell("stock_id=" . $_POST['stock_id']. "&supplier_id=" . $myrow["supplier_id"] . "&Delete=1"); + edit_button_cell("Edit".$myrow['supplier_id'], _("Edit")); + edit_button_cell("Delete".$myrow['supplier_id'], _("Delete")); end_row(); $j++; @@ -180,14 +166,14 @@ else div_end(); } -//------------------------------------------------------------------------------------------------ +//----------------------------------------------------------------------------------------------- -if (isset($_GET['Edit'])) +if ($Mode =='Edit') { $sql = "SELECT ".TB_PREF."purch_data.*,".TB_PREF."suppliers.supp_name FROM ".TB_PREF."purch_data INNER JOIN ".TB_PREF."suppliers ON ".TB_PREF."purch_data.supplier_id=".TB_PREF."suppliers.supplier_id - WHERE ".TB_PREF."purch_data.supplier_id='$supplier_id' + WHERE ".TB_PREF."purch_data.supplier_id='$selected_id' AND ".TB_PREF."purch_data.stock_id='" . $_POST['stock_id'] . "'"; $result = db_query($sql, "The supplier purchasing details for the selected supplier and item could not be retrieved"); @@ -202,19 +188,19 @@ if (isset($_GET['Edit'])) } echo "
"; +hidden('selected_id', $selected_id); start_table($table_style2); -if (isset($_GET['Edit'])) +if ($Mode == 'Edit') { - hidden('supplier_id', $supplier_id); + hidden('supplier_id'); label_row(_("Supplier:"), $supp_name); } else { supplier_list_row(_("Supplier:"), 'supplier_id', null, false, true); - $supplier_id = $_POST['supplier_id']; } -amount_row(_("Price:"), 'price', null,'', get_supplier_currency($supplier_id)); +amount_row(_("Price:"), 'price', null,'', get_supplier_currency($selected_id)); text_row(_("Suppliers Unit of Measure:"), 'suppliers_uom', null, 50, 51); if (!isset($_POST['conversion_factor']) || $_POST['conversion_factor'] == "") @@ -227,14 +213,7 @@ text_row(_("Supplier's Code or Description:"), 'supplier_description', null, 50, end_table(1); -if (isset($_GET['Edit'])) -{ - submit_center('UpdateRecord', _("Update Purchasing Data")); -} -else -{ - submit_center('AddRecord', _("Add Purchasing Data")); -} +submit_add_or_update_center($selected_id == -1, '', true); end_form(); end_page();