Cleanup: removed all closing tags in php files.
[fa-stable.git] / sales / manage / credit_status.php
index 6b0ee02d608b233911389da2433b201ff0708edf..af65a498b3f6448a96de1492329a19318f7f8c5b 100644 (file)
@@ -1,10 +1,19 @@
 <?php
-
-$page_security = 3;
-$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_CRSTATUS';
+$path_to_root = "../..";
 include($path_to_root . "/includes/session.inc");
 
-page(_("Credit Status")); 
+page(_($help_context = "Credit Status")); 
 
 include($path_to_root . "/sales/includes/db/credit_status_db.inc");
 
@@ -49,11 +58,7 @@ if ($Mode=='UPDATE_ITEM' && can_process())
 
 function can_delete($selected_id)
 {
-       $sql= "SELECT COUNT(*) FROM ".TB_PREF."debtors_master 
-               WHERE credit_status=$selected_id";
-       $result = db_query($sql, "could not query customers");
-       $myrow = db_fetch_row($result);
-       if ($myrow[0] > 0) 
+       if (key_in_foreign_table($selected_id, 'debtors_master', 'credit_status'))
        {
                display_error(_("Cannot delete this credit status because customer accounts have been created referring to it."));
                return false;
@@ -79,15 +84,18 @@ if ($Mode == 'Delete')
 if ($Mode == 'RESET')
 {
        $selected_id = -1;
+       $sav = get_post('show_inactive');
        unset($_POST);
+       $_POST['show_inactive'] = $sav;
 }
 //-----------------------------------------------------------------------------------
 
-$result = get_all_credit_status();
+$result = get_all_credit_status(check_value('show_inactive'));
 
 start_form();
-start_table("$table_style width=40%");
+start_table(TABLESTYLE, "width=40%");
 $th = array(_("Description"), _("Dissallow Invoices"),'','');
+inactive_control_column($th);
 table_header($th);
 
 $k = 0;
@@ -107,20 +115,19 @@ while ($myrow = db_fetch($result))
        
        label_cell($myrow["reason_description"]);
        label_cell($disallow_text);
+       inactive_control_cell($myrow["id"], $myrow["inactive"], 'credit_status', 'id');
        edit_button_cell("Edit".$myrow['id'], _("Edit"));
-       edit_button_cell("Delete".$myrow['id'], _("Delete"));
+       delete_button_cell("Delete".$myrow['id'], _("Delete"));
        end_row();
 }
 
+inactive_control_row($th);
 end_table();
-end_form();
 echo '<br>';
 
 //-----------------------------------------------------------------------------------
 
-start_form();
-
-start_table("$table_style2 width=40%");
+start_table(TABLESTYLE2);
 
 if ($selected_id != -1) 
 {
@@ -141,7 +148,7 @@ yesno_list_row(_("Dissallow invoicing ?"), 'DisallowInvoices', null);
 
 end_table(1);
 
-submit_add_or_update_center($selected_id == -1, '', true);
+submit_add_or_update_center($selected_id == -1, '', 'both');
 
 end_form();
 
@@ -149,4 +156,3 @@ end_form();
 
 end_page();
 
-?>