Fixed supplier payment view link.
[fa-stable.git] / manufacturing / work_order_entry.php
index 9ba52cb68b2b44d175053993aaede0713f02d627..a0282ed2e46c75ec1ff21fccee36f79cc2cf99d6 100644 (file)
@@ -1,13 +1,13 @@
 <?php
 /**********************************************************************
     Copyright (C) FrontAccounting, LLC.
-       Released under the terms of the GNU Affero General Public License,
-       AGPL, as published by the Free Software Foundation, either version 
-       of the License, or (at your option) any later version.
+       Released under the terms of the GNU General Public License, GPL, 
+       as published by the Free Software Foundation, either version 3 
+       of the License, or (at your option) any later version.
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
-    See the License here <http://www.gnu.org/licenses/agpl-3.0.html>.
+    See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
 ***********************************************************************/
 $page_security = 10;
 $path_to_root="..";
@@ -100,7 +100,7 @@ function safe_exit()
 //-------------------------------------------------------------------------------------
 if (!isset($_POST['date_']))
 {
-       $_POST['date_'] = Today();
+       $_POST['date_'] = new_doc_date();
        if (!is_date_in_fiscalyear($_POST['date_']))
                $_POST['date_'] = end_fiscalyear();
 }
@@ -239,7 +239,7 @@ if (isset($_POST['ADD_ITEM']) && can_process())
        $id = add_work_order($_POST['wo_ref'], $_POST['StockLocation'], input_num('quantity'),
                $_POST['stock_id'],  $_POST['type'], $_POST['date_'],
                $_POST['RequDate'], input_num('Costs'), $_POST['memo_']);
-
+       new_doc_date($_POST['date_']);
        meta_forward($_SERVER['PHP_SELF'], "AddedID=$id");
 }
 
@@ -250,7 +250,7 @@ if (isset($_POST['UPDATE_ITEM']) && can_process())
 
        update_work_order($selected_id, $_POST['StockLocation'], input_num('quantity'),
                $_POST['stock_id'],  $_POST['date_'], $_POST['RequDate'], $_POST['memo_']);
-
+       new_doc_date($_POST['date_']);
        meta_forward($_SERVER['PHP_SELF'], "UpdatedID=$selected_id");
 }
 
@@ -382,13 +382,13 @@ if (get_post('type') == wo_types::advanced())
     qty_row(_("Quantity Required:"), 'quantity', null, null, null, $dec);
     if ($_POST['released'])
        label_row(_("Quantity Manufactured:"), number_format($_POST['units_issued'], get_qty_dec($_POST['stock_id'])));
-    date_row(_("Date") . ":", 'date_');
+    date_row(_("Date") . ":", 'date_', '', true);
        date_row(_("Date Required By") . ":", 'RequDate', '', null, sys_prefs::default_wo_required_by());
 }
 else
 {
     qty_row(_("Quantity:"), 'quantity', null, null, null, $dec);
-    date_row(_("Date") . ":", 'date_');
+    date_row(_("Date") . ":", 'date_', '', true);
        hidden('RequDate', '');
 
        if (!isset($_POST['Costs']))
@@ -408,7 +408,7 @@ if (isset($selected_id))
 {
        echo "<table align=center><tr>";
 
-       submit_cells('UPDATE_ITEM', _("Update"), '', _('Save changes to work order'), true);
+       submit_cells('UPDATE_ITEM', _("Update"), '', _('Save changes to work order'), 'default');
        if (isset($_POST['released']))
        {
                submit_cells('close', _("Close This Work Order"),'','',true);
@@ -419,7 +419,7 @@ if (isset($selected_id))
 }
 else
 {
-       submit_center('ADD_ITEM', _("Add Workorder"), true, '', true);
+       submit_center('ADD_ITEM', _("Add Workorder"), true, '', 'default');
 }
 
 end_form();