X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=manufacturing%2Fwork_order_entry.php;h=c4d3dd5d1a64054dc5d6db0589ee7921faee10f2;hb=2e181b13aa722a43e78b897404912d6b13a0a937;hp=40484ea3e65e075d0542de20e155baaa4adf2572;hpb=6e349a924dd02e35d94555807d34b25e4427ab6e;p=fa-stable.git diff --git a/manufacturing/work_order_entry.php b/manufacturing/work_order_entry.php index 40484ea3..c4d3dd5d 100644 --- a/manufacturing/work_order_entry.php +++ b/manufacturing/work_order_entry.php @@ -1,5 +1,14 @@ . +***********************************************************************/ $page_security = 10; $path_to_root=".."; @@ -281,6 +290,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 +334,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 +348,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,20 +404,23 @@ textarea_row(_("Memo:"), 'memo_', null, 40, 5); end_table(1); -submit_add_or_update_center(!isset($selected_id)); - if (isset($selected_id)) { - echo "

"; + echo "
"; + submit_cells('UPDATE_ITEM', _("Update"), '', _('Save changes to work order'), true); 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 "
"; } +else +{ + submit_center('ADD_ITEM', _("Add Workorder"), true, '', true); +} end_form(); end_page();