Added helpers for list editor F4 calls.
[fa-stable.git] / purchasing / manage / suppliers.php
index d349b432474b8ea4d8f47ac2f4b64cdab03dc8f6..fb2a05948f277a9ee449ffc997bc455667784b6e 100644 (file)
@@ -1,5 +1,14 @@
 <?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 
+       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>.
+***********************************************************************/
 $page_security=5;
 $path_to_root="../..";
 include($path_to_root . "/includes/session.inc");
@@ -157,10 +166,9 @@ else
        hidden('supplier_id', get_post('supplier_id'));
 }
 
-//start_table("class='tablestyle2'", 0, 3);
-start_table("class='tablestyle'", 3);
+start_outer_table($table_style2, 5);
 
-table_section_title(_("Supplier"));
+table_section(1);
 
 if (!$new_supplier) 
 {
@@ -195,7 +203,7 @@ else
        $_POST['sales_type'] = -1;
        $_POST['email'] = $_POST['phone'] = $_POST['fax'] = $_POST['gst_no'] = $_POST['contact'] = $_POST['bank_account'] = '';
        $_POST['payment_terms']  = '';
-       $_POST['credit_limit']  = price_format(sys_prefs::default_credit_limit());
+       $_POST['credit_limit']  = "";
 
        $company_record = get_company_prefs();
        $_POST['curr_code']  = $company_record["curr_default"];
@@ -204,17 +212,26 @@ else
        $_POST['payment_discount_account'] = $company_record['pyt_discount_act'];
 }
 
+table_section_title(_("Name and Contact"));
+
 text_row(_("Supplier Name:"), 'supp_name', null, 42, 40);
-textarea_row(_("Postal ddress:"), 'address', null, 35, 5);
+text_row(_("Contact Person:"), 'contact', null, 42, 40);
+
+text_row(_("Phone Number:"), 'phone', null, 42, 40);
+text_row(_("Fax Number:"), 'fax', null, 42, 40);
+
+email_row(_("E-mail:"), 'email', null, 35, 55);
+
+table_section_title(_("Addresses"));
+textarea_row(_("Mailing Address:"), 'address', null, 35, 5);
 textarea_row(_("Physical Address:"), 'supp_address', null, 35, 5);
-text_row(_("Phone:"), 'phone', null, 42, 40);
-text_row(_("Fax:"), 'fax', null, 42, 40);
+
+table_section(2);
+
+table_section_title(_("Purchasing"));
 text_row(_("GSTNo:"), 'gst_no', null, 42, 40);
-text_row(_("Email:"), 'email', null, 42, 40);
-text_row(_("Contact:"), 'contact', null, 42, 40);
 text_row(_("Bank Name/Account:"), 'bank_account', null, 42, 40);
 amount_row(_("Credit Limit:"), 'credit_limit', null);
-// Sherifoz 23.09.03 currency can't be changed if editing
 if (!$new_supplier) 
 {
        label_row(_("Supplier's Currency:"), $_POST['curr_code']);
@@ -251,7 +268,8 @@ if ($dim < 1)
 if ($dim < 2)
        hidden('dimension2_id', 0);
 
-end_table(1);
+end_outer_table(1);
+
 div_start('controls');
 if (!$new_supplier) 
 {