Feature 5388: Print Invoices (documents) list gets too long. Fixed by default 180...
[fa-stable.git] / admin / fiscalyears.php
index d6cd8c0138b432467bfbd13bb0edafe188ed49dd..d6d05c5a14153a643c25e7fc4c924adcd66c32cc 100644 (file)
@@ -1,51 +1,53 @@
 <?php
-
-$page_security = 9;
-$path_to_root="..";
+/**********************************************************************
+    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 = 'SA_FISCALYEARS';
+$path_to_root = "..";
 include_once($path_to_root . "/includes/session.inc");
 
 include_once($path_to_root . "/includes/date_functions.inc");
 include_once($path_to_root . "/admin/db/company_db.inc");
+include_once($path_to_root . "/admin/db/fiscalyears_db.inc");
 include_once($path_to_root . "/includes/ui.inc");
+include_once($path_to_root . "/sales/includes/db/cust_trans_db.inc");
+include_once($path_to_root . "/admin/db/maintenance_db.inc");
 $js = "";
-if ($use_date_picker)
+if (user_use_date_picker())
        $js .= get_js_date_picker();
-page(_("Fiscal Years"), false, false, "", $js);
-
-//---------------------------------------------------------------------------------------------
-
-if (isset($_GET['selected_id']))
-{
-       $selected_id = $_GET['selected_id'];
-}
-elseif (isset($_POST['selected_id']))
-{
-       $selected_id = $_POST['selected_id'];
-}
-else
-       $selected_id = null;
+page(_($help_context = "Fiscal Years"), false, false, "", $js);
 
+simple_page_mode(true);
 //---------------------------------------------------------------------------------------------
 
 function check_data()
 {
-       if (!isset($selected_id))
-               $from = $_POST['from_date'];
-       else
-               $from = $selected_id;
-       if (!is_date($from) || get_fiscalyear($from) !== false)
+       if (!is_date($_POST['from_date']) || is_date_in_fiscalyears($_POST['from_date']))
        {
                display_error( _("Invalid BEGIN date in fiscal year."));
                set_focus('from_date');
                return false;
        }
-       if (!is_date($_POST['to_date']))
+       if (!is_date($_POST['to_date']) || is_date_in_fiscalyears($_POST['to_date']))
        {
                display_error( _("Invalid END date in fiscal year."));
                set_focus('to_date');
                return false;
        }
-       if (date1_greater_date2($from, $_POST['to_date']))
+       if (!check_begin_end_date($_POST['from_date'], $_POST['to_date']))
+       {
+               display_error( _("Invalid BEGIN or END date in fiscal year."));
+               set_focus('from_date');
+               return false;
+       }
+       if (date1_greater_date2($_POST['from_date'], $_POST['to_date']))
        {
                display_error( _("BEGIN date bigger than END date."));
                set_focus('from_date');
@@ -54,74 +56,84 @@ function check_data()
        return true;
 }
 
-//---------------------------------------------------------------------------------------------
-
 function handle_submit()
 {
-       global $selected_id;
+       global $selected_id, $Mode;
 
-       if (!check_data())
-               return false;
-
-       if (isset($selected_id))
+       $ok = true;
+       if ($selected_id != -1)
        {
-               update_fiscalyear($_POST['from_date'], $_POST['closed']);
+               if ($_POST['closed'] == 1)
+               {
+                       if (check_years_before($_POST['from_date'], false))
+                       {
+                               display_error( _("Cannot CLOSE this year because there are open fiscal years before"));
+                               set_focus('closed');
+                               return false;
+                       }       
+                       $ok = close_year($selected_id);
+               }       
+               else
+                       open_year($selected_id);
+               if ($ok)
+               {
+                       update_fiscalyear($selected_id, $_POST['closed']);
+                       display_notification(_('Selected fiscal year has been updated'));
+               }       
        }
        else
        {
+               if (!check_data())
+                       return false;
                add_fiscalyear($_POST['from_date'], $_POST['to_date'], $_POST['closed']);
+               display_notification(_('New fiscal year has been added'));
        }
-
-       return true;
+       $Mode = 'RESET';
 }
 
 //---------------------------------------------------------------------------------------------
 
-function check_can_delete($todate)
+function check_can_delete($selected_id)
 {
-       global $selected_id;
-
+       $myrow = get_fiscalyear($selected_id);
        // PREVENT DELETES IF DEPENDENT RECORDS IN gl_trans
-       $from = date2sql($selected_id);
-       $to = date2sql($todate);
-       $sql= "SELECT COUNT(*) FROM ".TB_PREF."gl_trans WHERE tran_date >= '$from' AND tran_date <= '$to'";
-       $result = db_query($sql, "could not query gl_trans master");
-       $myrow = db_fetch_row($result);
-       if ($myrow[0] > 0)
+       if (check_years_before(sql2date($myrow['begin']), true))
        {
-               display_error(_("Cannot delete this fiscal year because items have been created referring to it."));
+               display_error(_("Cannot delete this fiscal year because there are fiscal years before."));
+               return false;
+       }
+       if ($myrow['closed'] == 0)
+       {
+               display_error(_("Cannot delete this fiscal year because the fiscal year is not closed."));
                return false;
        }
-
        return true;
 }
 
-//---------------------------------------------------------------------------------------------
-
-function handle_delete($todate)
+function handle_delete()
 {
-       global $selected_id;
+       global $selected_id, $Mode;
 
-       if (!check_can_delete($todate))
-               return;
+       if (check_can_delete($selected_id)) {
        //only delete if used in neither customer or supplier, comp prefs, bank trans accounts
-
-       delete_fiscalyear($selected_id);
-
-       meta_forward($_SERVER['PHP_SELF']);
+               delete_this_fiscalyear($selected_id);
+               display_notification(_('Selected fiscal year has been deleted'));
+       }
+       $Mode = 'RESET';
 }
 
 //---------------------------------------------------------------------------------------------
 
 function display_fiscalyears()
 {
-       global $table_style;
-
        $company_year = get_company_pref('f_year');
 
        $result = get_all_fiscalyears();
-
-       start_table($table_style);
+       start_form();
+       display_note(_("Warning: Deleting a fiscal year all transactions 
+               are removed and converted into relevant balances. This process is irreversible!"), 
+               0, 1, "class='currentfg'");
+       start_table(TABLESTYLE);
 
        $th = array(_("Fiscal Year Begin"), _("Fiscal Year End"), _("Closed"), "", "");
        table_header($th);
@@ -149,13 +161,18 @@ function display_fiscalyears()
                label_cell($from);
                label_cell($to);
                label_cell($closed_text);
-               edit_link_cell("selected_id=" . urlencode($from));
-               if ($myrow["id"] != $company_year)
-                       delete_link_cell("selected_id=" . urlencode($from) . "&to_date=" . urlencode($to) . "&delete=1");
+               edit_button_cell("Edit".$myrow['id'], _("Edit"));
+               if ($myrow["id"] != $company_year) {
+                       delete_button_cell("Delete".$myrow['id'], _("Delete"));
+                       submit_js_confirm("Delete".$myrow['id'],
+                               sprintf(_("Are you sure you want to delete fiscal year %s - %s? All transactions are deleted and converted into relevant balances. Do you want to continue ?"), $from, $to));
+               } else
+                       label_cell('');
                end_row();
        }
 
-       end_table();;
+       end_table();
+       end_form();
        display_note(_("The marked fiscal year is the current fiscal year which cannot be deleted."), 0, 0, "class='currentfg'");
 }
 
@@ -163,61 +180,72 @@ function display_fiscalyears()
 
 function display_fiscalyear_edit($selected_id)
 {
-       global $table_style2;
+       global $Mode;
 
        start_form();
-       start_table($table_style2);
+       start_table(TABLESTYLE2);
 
-       if ($selected_id)
+       if ($selected_id != -1)
        {
-               $myrow = get_fiscalyear($selected_id);
-
-               $_POST['from_date'] = sql2date($myrow["begin"]);
-               $_POST['to_date']  = sql2date($myrow["end"]);
-               $_POST['closed']  = $myrow["closed"];
-               hidden('selected_id', $selected_id);
-               hidden('from_date', $_POST['from_date']);
-               hidden('to_date', $_POST['to_date']);
+               if($Mode =='Edit')
+               {
+                       $myrow = get_fiscalyear($selected_id);
+
+                       $_POST['from_date'] = sql2date($myrow["begin"]);
+                       $_POST['to_date']  = sql2date($myrow["end"]);
+                       $_POST['closed']  = $myrow["closed"];
+               }
+               hidden('from_date');
+               hidden('to_date');
                label_row(_("Fiscal Year Begin:"), $_POST['from_date']);
                label_row(_("Fiscal Year End:"), $_POST['to_date']);
        }
        else
        {
+               $begin = next_begin_date();
+               if ($begin && $Mode != 'ADD_ITEM')
+               {
+                       $_POST['from_date'] = $begin;
+                       $_POST['to_date'] = end_month(add_months($begin, 11));
+               }
                date_row(_("Fiscal Year Begin:"), 'from_date', '', null, 0, 0, 1001);
                date_row(_("Fiscal Year End:"), 'to_date', '', null, 0, 0, 1001);
        }
+       hidden('selected_id', $selected_id);
 
        yesno_list_row(_("Is Closed:"), 'closed', null, "", "", false);
 
        end_table(1);
 
-       submit_add_or_update_center(!isset($selected_id));
+       submit_add_or_update_center($selected_id == -1, '', 'both');
 
        end_form();
 }
 
 //---------------------------------------------------------------------------------------------
 
-if (isset($_POST['ADD_ITEM']) || isset($_POST['UPDATE_ITEM']))
+if ($Mode=='ADD_ITEM' || $Mode=='UPDATE_ITEM')
 {
-       if (handle_submit())
-       {
-               meta_forward($_SERVER['PHP_SELF']);
-       }
+       handle_submit();
 }
 
 //---------------------------------------------------------------------------------------------
 
-if (isset($_GET['delete']))
+if ($Mode == 'Delete')
 {
-       handle_delete($_GET['to_date']);
+       global $selected_id;
+       handle_delete($selected_id);
 }
 
+if ($Mode == 'RESET')
+{
+       $selected_id = -1;
+}
 //---------------------------------------------------------------------------------------------
 
 display_fiscalyears();
 
-hyperlink_no_params($_SERVER['PHP_SELF'], _("Enter a New Fiscal Year"));
+echo '<br>';
 
 display_fiscalyear_edit($selected_id);
 
@@ -225,4 +253,3 @@ display_fiscalyear_edit($selected_id);
 
 end_page();
 
-?>