Inserted Copyright Notice and fixed graphic items
[fa-stable.git] / gl / includes / ui / gl_journal_ui.inc
index 01a22ad330ff8c1c7fa9ec6fc87d0de0d1273222..c5b5eb15a0c079169f0443bb02d19599eaea057e 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>.
+***********************************************************************/
 include_once($path_to_root . "/includes/ui.inc");
 include_once($path_to_root . "/includes/ui/items_cart.inc");
 
@@ -64,13 +73,13 @@ function display_gl_items($title, &$order)
        start_table("$table_style colspan=7 width=95%");
        if ($dim == 2)
                $th = array(_("Account Code"), _("Account Description"), _("Dimension")." 1",
-                       _("Dimension")." 2", _("Debit"), _("Credit"), _("Memo"));
+                       _("Dimension")." 2", _("Debit"), _("Credit"), _("Memo"), "");
        else if ($dim == 1)
                $th = array(_("Account Code"), _("Account Description"), _("Dimension"),
-                       _("Debit"), _("Credit"), _("Memo"));
+                       _("Debit"), _("Credit"), _("Memo"), "");
        else
                $th = array(_("Account Code"), _("Account Description"),
-                       _("Debit"), _("Credit"), _("Memo"));
+                       _("Debit"), _("Credit"), _("Memo"), "");
 
        if (count($order->gl_items)) $th[] = '';
 
@@ -104,7 +113,7 @@ function display_gl_items($title, &$order)
 
                        edit_button_cell("Edit$item->index", _("Edit"),
                                _('Edit journal line'));
-                       edit_button_cell("Delete$item->index", _("Delete"),
+                       delete_button_cell("Delete$item->index", _("Delete"),
                                _('Remove line from journal'));
                end_row();
                } 
@@ -199,10 +208,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