From: Janusz Dobrowolski Date: Thu, 26 Jun 2008 15:25:42 +0000 (+0000) Subject: Ajax added X-Git-Tag: v2.4.2~19^2~1968 X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=commitdiff_plain;h=afaf451d002765ddea2de980a163ddf02283aea5;p=fa-stable.git Ajax added --- diff --git a/manufacturing/work_order_entry.php b/manufacturing/work_order_entry.php index 40484ea3..32ba8e8c 100644 --- a/manufacturing/work_order_entry.php +++ b/manufacturing/work_order_entry.php @@ -281,6 +281,11 @@ if (isset($_POST['close'])) meta_forward($_SERVER['PHP_SELF'], "ClosedID=$selected_id"); } +//------------------------------------------------------------------------------------- +if (get_post('_type_update')) +{ + $Ajax->activate('_page_body'); +} //------------------------------------------------------------------------------------- start_form(); @@ -320,7 +325,7 @@ if (isset($selected_id)) $_POST['released_date'] = sql2date($myrow["released_date"]); $_POST['memo_'] = ""; $_POST['units_issued'] = $myrow["units_issued"]; - $_POST['Costs'] = price_format($myrow["Costs"]); + $_POST['Costs'] = price_format($myrow["additional_costs"]); $_POST['memo_'] = get_comments_string(systypes::work_order(), $selected_id); @@ -334,6 +339,7 @@ if (isset($selected_id)) label_row(_("Reference:"), $_POST['wo_ref']); label_row(_("Type:"), wo_types::name($_POST['type'])); + hidden('type', $myrow["type"]); } else { @@ -389,7 +395,7 @@ textarea_row(_("Memo:"), 'memo_', null, 40, 5); end_table(1); -submit_add_or_update_center(!isset($selected_id)); +submit_add_or_update_center(!isset($selected_id), '', true); if (isset($selected_id)) { @@ -397,9 +403,9 @@ if (isset($selected_id)) if (isset($_POST['released'])) { - submit_cells('close', _("Close This Work Order")); + submit_cells('close', _("Close This Work Order"),'','',true); } - submit_cells('delete', _("Delete This Work Order")); + submit_cells('delete', _("Delete This Work Order"),'','',true); echo ""; }