Changed license type to GPLv3 in top of files
[fa-stable.git] / gl / gl_journal.php
index 9d42cdad89f2537a5c8de63d9386b743b4d4304a..8d2853348a85e80cc339dbb635c7f78a77e15a83 100644 (file)
@@ -1,5 +1,14 @@
 <?php
-
+/**********************************************************************
+    Copyright (C) FrontAccounting, LLC.
+       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/gpl-3.0.html>.
+***********************************************************************/
 $page_security = 3;
 $path_to_root="..";
 include_once($path_to_root . "/includes/ui/items_cart.inc");
@@ -21,6 +30,13 @@ if ($use_date_picker)
 
 page(_("Journal Entry"), false, false,'', $js);
 
+//--------------------------------------------------------------------------------------------------
+function line_start_focus() {
+  global       $Ajax;
+
+  $Ajax->activate('items_table');
+  set_focus('_code_id_edit');
+}
 //-----------------------------------------------------------------------------------------------
 
 if (isset($_GET['AddedID'])) 
@@ -30,33 +46,14 @@ if (isset($_GET['AddedID']))
 
        display_notification_centered( _("Journal entry has been entered") . " #$trans_no");
 
-    display_note(get_gl_view_str($trans_type, $trans_no, _("View this Journal Entry")));
+    display_note(get_gl_view_str($trans_type, $trans_no, _("&View this Journal Entry")));
 
-       hyperlink_no_params($_SERVER['PHP_SELF'], _("Enter Another Journal Entry"));
+       hyperlink_no_params($_SERVER['PHP_SELF'], _("Enter &Another Journal Entry"));
 
        display_footer_exit();
 }
-
-//--------------------------------------------------------------------------------------------------
-
-function copy_to_je()
-{
-       $_SESSION['journal_items']->tran_date = $_POST['date_'];
-       $_SESSION['journal_items']->transfer_type = check_value('Reverse');
-       $_SESSION['journal_items']->memo_ = $_POST['memo_'];
-}
-
 //--------------------------------------------------------------------------------------------------
 
-function copy_from_je()
-{
-       $_POST['date_'] = $_SESSION['journal_items']->tran_date;
-       $_POST['Reverse'] = $_SESSION['journal_items']->transfer_type;
-       $_POST['memo_'] = $_SESSION['journal_items']->memo_;
-}
-
-//----------------------------------------------------------------------------------------
-
 function handle_new_order()
 {
        if (isset($_SESSION['journal_items']))
@@ -82,6 +79,19 @@ if (isset($_POST['Process']))
 
        $input_error = 0;
 
+       if ($_SESSION['journal_items']->count_gl_items() < 1) {
+               display_error(_("You must enter at least one journal line."));
+               set_focus('code_id');
+               $input_error = 1;
+       }
+       if (abs($_SESSION['journal_items']->gl_items_total()) > 0.0001)
+       {
+               display_error(_("The journal must balance (debits equal to credits) before it can be processed."));
+               set_focus('code_id');
+               $input_error = 1;
+       }
+
+
        if (!is_date($_POST['date_'])) 
        {
                display_error(_("The entered date is invalid."));
@@ -94,7 +104,7 @@ if (isset($_POST['Process']))
                set_focus('date_');
                $input_error = 1;
        } 
-       elseif (!references::is_valid($_POST['ref'])) 
+       if (!references::is_valid($_POST['ref'])) 
        {
                display_error( _("You must enter a reference."));
                set_focus('ref');
@@ -185,13 +195,15 @@ function handle_update_item()
        $_SESSION['journal_items']->update_gl_item($_POST['Index'], $_POST['dimension_id'],
                $_POST['dimension2_id'], $amount, $_POST['LineMemo']);
     }
+       line_start_focus();
 }
 
 //-----------------------------------------------------------------------------------------------
 
-function handle_delete_item()
+function handle_delete_item($id)
 {
-       $_SESSION['journal_items']->remove_gl_item($_GET['Delete']);
+       $_SESSION['journal_items']->remove_gl_item($id);
+       line_start_focus();
 }
 
 //-----------------------------------------------------------------------------------------------
@@ -208,34 +220,29 @@ function handle_new_item()
        
        $_SESSION['journal_items']->add_gl_item($_POST['code_id'], $_POST['dimension_id'],
                $_POST['dimension2_id'], $amount, $_POST['LineMemo']);
+       line_start_focus();
 }
 
 //-----------------------------------------------------------------------------------------------
-if (isset($_GET['Edit'])) {
-       copy_from_je();
-       set_focus('dimension_id');
-}
-if (isset($_GET['Delete'])) {
-       copy_from_je();
-       handle_delete_item();
-       set_focus('_code_id_edit');
-}
-if (isset($_POST['AddItem'])) {
-       copy_to_je();
+$id = find_submit('Delete');
+if ($id != -1)
+       handle_delete_item($id);
+
+if (isset($_POST['AddItem'])) 
        handle_new_item();
-       set_focus('_code_id_edit');
-}
-if (isset($_POST['UpdateItem'])) {
-       copy_to_je();
+
+if (isset($_POST['UpdateItem'])) 
        handle_update_item();
-       set_focus('_code_id_edit');
-}
+       
 if (isset($_POST['CancelItemChanges']))
-       set_focus('_code_id_edit');
-
-if (isset($_POST['EditItem']))
-       set_focus('dimension_id');
+       line_start_focus();
 
+if (isset($_POST['go']))
+{
+       display_quick_entries($_SESSION['journal_items'], $_POST['person_id'], input_num('totamount'), QE_JOURNAL);
+       $_POST['totamount'] = price_format(0); $Ajax->activate('totamount');
+       line_start_focus();
+}      
 //-----------------------------------------------------------------------------------------------
 
 if (isset($_GET['NewJournal']) || !isset($_SESSION['journal_items']))
@@ -258,18 +265,10 @@ echo "</td>";
 end_row();
 end_table(1);
 
-if ($_SESSION['journal_items']->count_gl_items() >= 1 &&
-       abs($_SESSION['journal_items']->gl_items_total()) < 0.0001)
-{
-    submit_center('Process', _("Process Journal Entry"));
-} 
-else 
-{
-       display_note(_("The journal must balance (debits equal to credits) before it can be processed."), 0, 1);
-}
+submit_center('Process', _("Process Journal Entry"), true , 
+       _('Process journal entry only if debits equal to credits'), true);
 
 end_form();
-
 //------------------------------------------------------------------------------------------------
 
 end_page();