Better layout. Copyright notes. Mailto links, outer table routines. (3. run)
[fa-stable.git] / gl / includes / ui / gl_bank_ui.inc
index 303d557cf1f4debab35406fd941d3fb304f9ad9d..cf44945ea6226cdf0e12e6a7026871575e8ee84a 100644 (file)
@@ -1,25 +1,30 @@
 <?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>.
+***********************************************************************/
 function display_bank_header(&$order)
 {
        global $table_style2, $Ajax;
        $payment = $order->trans_type == systypes::bank_payment();
 
        div_start('pmt_header');
-       start_table("width=90% $table_style2"); // outer table
-       echo "<tr><td valign=top width=33%>";
 
-       echo "<table>"; // inner table
+       start_outer_table("width=90% $table_style2"); // outer table
 
+       table_section(1);
+       
     bank_accounts_list_row( $payment ? _("From:") : _("To:"), 'bank_account', null, true);
 
     date_row(_("Date:"), 'date_', '', null, 0, 0, 0, null, true);
 
-       echo "</table>"; // inner table
-
-       echo "</td><td width=33%>";
-
-       echo "<table>"; // inner table
+       table_section(2, "33%");
 
        if (!isset($_POST['PayType']))
        {
@@ -68,7 +73,7 @@ function display_bank_header(&$order)
                }
                break;
                case payment_person_types::QuickEntry() :
-                       quick_entries_list_row(_("Description:"), 'person_id', null, $payment);
+                       quick_entries_list_row(_("Description:"), 'person_id', null, ($payment ? 0 : 1), 1);
                        amount_row(_("Total Amount"), 'totamount', null, null, "&nbsp;&nbsp;".submit('go', _("Go"), false, false, true));                       
                        break;  
                //case payment_person_types::Project() :
@@ -81,22 +86,15 @@ function display_bank_header(&$order)
 
        exchange_rate_display($bank_currency, $person_currency, $_POST['date_']);
 
-       echo "</table>"; // inner table
-
-       echo "</td><td>";
-
-       echo "<table>"; // inner table
+       table_section(3, "33%");
 
        if (isset($_GET['NewPayment']))
        ref_row(_("Reference:"), 'ref', '', references::get_next(systypes::bank_payment()));
     else
        ref_row(_("Reference:"), 'ref', '', references::get_next(systypes::bank_deposit()));
 
-       echo "</table>"; // inner table
-
-       echo "</td></tr>";
+       end_outer_table(1); // outer table
 
-       end_table(1); // outer table
        div_end();
 }
 //---------------------------------------------------------------------------------
@@ -114,13 +112,13 @@ function display_gl_items($title, &$order)
 
        if ($dim == 2)
                $th = array(_("Account Code"), _("Account Description"), _("Dimension")." 1",
-                       _("Dimension")." 2", _("Amount"), _("Memo"));
+                       _("Dimension")." 2", _("Amount"), _("Memo"), "");
        else if ($dim == 1)
                $th = array(_("Account Code"), _("Account Description"), _("Dimension"),
-                       _("Amount"), _("Memo"));
+                       _("Amount"), _("Memo"), "");
        else
                $th = array(_("Account Code"), _("Account Description"),
-                       _("Amount"), _("Memo"));
+                       _("Amount"), _("Memo"), "");
 
        if (count($order->gl_items)) $th[] = '';
 
@@ -149,7 +147,7 @@ function display_gl_items($title, &$order)
 
                        edit_button_cell("Edit$item->index", _("Edit"),
                                _('Edit document line'));
-                       edit_button_cell("Delete$item->index", _("Delete"),
+                       delete_button_cell("Delete$item->index", _("Delete"),
                                _('Remove line from document'));
                end_row();
                }
@@ -240,10 +238,10 @@ function gl_edit_item_controls(&$order, $dim, $Index=null)
 
        if ($id != -1)
        {
-               edit_button_cell('UpdateItem', _("Update"),
-                               _('Confirm changes'));
-               edit_button_cell('CancelItemChanges', _("Cancel"),
-                               _('Cancel changes'));
+               button_cell('UpdateItem', _("Update"),
+                               _('Confirm changes'), ICON_UPDATE);
+               button_cell('CancelItemChanges', _("Cancel"),
+                               _('Cancel changes'), ICON_CANCEL);
                set_focus('amount');
        }
        else