X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=inventory%2Fpurchasing_data.php;h=c545beb5f902fb7703233b0f71b2d01fbbcc5bf9;hb=777ef96148b96c83d8e21a3d6e036ee8f2b3c607;hp=3e2f77b6733feb1fccc7aa9d7a7e642f1e68abd5;hpb=5b8ee3cb748382ab5a2665a620183f08c8ba204b;p=fa-stable.git diff --git a/inventory/purchasing_data.php b/inventory/purchasing_data.php index 3e2f77b6..c545beb5 100644 --- a/inventory/purchasing_data.php +++ b/inventory/purchasing_data.php @@ -1,4 +1,14 @@ . +***********************************************************************/ $page_security = 4; $path_to_root=".."; include_once($path_to_root . "/includes/session.inc"); @@ -141,10 +151,10 @@ else } else { - start_table("$table_style width=60%"); + start_table("$table_style width=65%"); $th = array(_("Supplier"), _("Price"), _("Currency"), - _("Supplier's Unit"), _("Supplier's Description"), "", ""); + _("Supplier's Unit"), _("Conversion Factor"), _("Supplier's Description"), "", ""); table_header($th); @@ -158,9 +168,10 @@ else amount_cell($myrow["price"]); label_cell($myrow["curr_code"]); label_cell($myrow["suppliers_uom"]); + qty_cell($myrow['conversion_factor'], false, user_exrate_dec()); label_cell($myrow["supplier_description"]); edit_button_cell("Edit".$myrow['supplier_id'], _("Edit")); - edit_button_cell("Delete".$myrow['supplier_id'], _("Delete")); + delete_button_cell("Delete".$myrow['supplier_id'], _("Delete")); end_row(); $j++; @@ -197,7 +208,7 @@ if ($Mode =='Edit') $_POST['conversion_factor'] = exrate_format($myrow["conversion_factor"]); } -echo "
"; +br(); hidden('selected_id', $selected_id); start_table($table_style2); @@ -209,6 +220,7 @@ if ($Mode == 'Edit') else { supplier_list_row(_("Supplier:"), 'supplier_id', null, false, true); + $_POST['price'] = $_POST['suppliers_uom'] = $_POST['conversion_factor'] = $_POST['supplier_description'] = ""; } amount_row(_("Price:"), 'price', null,'', get_supplier_currency($selected_id)); text_row(_("Suppliers Unit of Measure:"), 'suppliers_uom', null, 50, 51);