8c4aec6ae44d2b27e7db29c0c6013add32e4a7b4
[fa-stable.git] / gl / includes / ui / gl_journal_ui.inc
1 <?php
2 /**********************************************************************
3     Copyright (C) FrontAccounting, LLC.
4         Released under the terms of the GNU General Public License, GPL, 
5         as published by the Free Software Foundation, either version 3 
6         of the License, or (at your option) any later version.
7     This program is distributed in the hope that it will be useful,
8     but WITHOUT ANY WARRANTY; without even the implied warranty of
9     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
10     See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
11 ***********************************************************************/
12 include_once($path_to_root . "/includes/ui.inc");
13 include_once($path_to_root . "/includes/ui/items_cart.inc");
14
15 //--------------------------------------------------------------------------------
16
17 function display_order_header(&$Order)
18 {
19         global $Ajax;
20
21         $qes = has_quick_entries(QE_JOURNAL);
22         $new = $Order->order_id==0;
23         start_outer_table(TABLESTYLE2, "width=90%");
24         table_section(1, $qes ? "20%" : "");
25
26         start_row();
27     date_cells(_("Date:"), 'date_', '', $new);
28
29         table_section(2, $qes ? "20%" : "50%");
30         ref_cells(_("Reference:"), 'ref', '');
31         hidden('ref_original');
32         end_row();
33
34
35         if ($new) {
36                 table_section(3, "20%");
37                 start_row();
38                 check_cells(_("Reverse Transaction:"), 'Reverse', null);
39                 end_row();
40         }
41
42         if ($qes !== false)
43         {
44                 table_section(3, "40%");
45                 start_row();
46                 quick_entries_list_cells(_("Quick Entry").":", 'person_id', null, QE_JOURNAL, true);
47                 $qid = get_quick_entry(get_post('person_id'));
48                 if (list_updated('person_id')) {
49                         unset($_POST['totamount']); // enable default
50                 $Ajax->activate('totamount');
51                 }
52                 if ($qid['bal_type'] == 1)
53                 {
54                         end_row();
55                         start_row();
56                         $accname = get_gl_account_name($qid['base_desc']);
57                         label_cell(($qid['base_amount'] == 0 ? _("Yearly") : _("Monthly")) . " ". _("balance from account")." ".
58                                 $qid['base_desc']." ".$accname."&nbsp;&nbsp;".submit('go', _("Go"), false, false, true), "colspan=2");
59                 }
60                 else
61                         amount_cells($qid['base_desc'].":", 'totamount', price_format($qid['base_amount']),
62                                 null, "&nbsp;&nbsp;".submit('go', _("Go"), false, false, true));
63                 end_row();
64
65         }
66                 
67         end_outer_table(1);
68 }
69
70 //---------------------------------------------------------------------------------
71
72 function display_gl_items($title, &$order)
73 {
74         global $path_to_root;
75
76         display_heading($title);
77
78         $dim = get_company_pref('use_dimension');
79
80     div_start('items_table');
81         start_table(TABLESTYLE, "colspan=7 width=95%");
82         if ($dim == 2)
83                 $th = array(_("Account Code"), _("Account Description"), _("Dimension")." 1",
84                         _("Dimension")." 2", _("Debit"), _("Credit"), _("Memo"), "");
85         else if ($dim == 1)
86                 $th = array(_("Account Code"), _("Account Description"), _("Dimension"),
87                         _("Debit"), _("Credit"), _("Memo"), "");
88         else
89                 $th = array(_("Account Code"), _("Account Description"),
90                         _("Debit"), _("Credit"), _("Memo"), "");
91
92         if (count($order->gl_items)) $th[] = '';
93
94         table_header($th);      
95
96         $k = 0;
97
98         $id = find_submit('Edit');
99         foreach ($order->gl_items as $line => $item) 
100         {
101                 if ($id != $line)
102                 {
103                 alt_table_row_color($k);
104
105                         label_cells($item->code_id, $item->description);
106                 if ($dim >= 1)
107                                 label_cell(get_dimension_string($item->dimension_id, true));
108                 if ($dim > 1)
109                                 label_cell(get_dimension_string($item->dimension2_id, true));
110                 if ($item->amount > 0)
111                 {
112                         amount_cell(abs($item->amount));
113                         label_cell("");
114                 }       
115                 else
116                 {
117                         label_cell("");
118                         amount_cell(abs($item->amount));
119                 }       
120                         label_cell($item->reference);
121
122                         edit_button_cell("Edit$line", _("Edit"),
123                                 _('Edit journal line'));
124                         delete_button_cell("Delete$line", _("Delete"),
125                                 _('Remove line from journal'));
126                 end_row();
127                 } 
128                 else 
129                 {
130                         gl_edit_item_controls($order, $dim, $line);
131                 }
132         }
133
134         if ($id == -1)
135                 gl_edit_item_controls($order, $dim);
136
137         if ($order->count_gl_items()) 
138         {
139                 $colspan = ($dim == 2 ? "4" : ($dim == 1 ? "3" : "2"));
140                 start_row();
141                 label_cell(_("Total"), "align=right colspan=" . $colspan);
142                 amount_cell($order->gl_items_total_debit());
143                 amount_cell(abs($order->gl_items_total_credit()));
144                 label_cell('', "colspan=3");
145                 end_row();
146         }
147
148     end_table();
149         div_end();
150 }
151
152 //---------------------------------------------------------------------------------
153
154 function gl_edit_item_controls(&$order, $dim, $Index=null)
155 {
156         global $Ajax;
157         start_row();
158
159         $id = find_submit('Edit');
160         if ($Index != -1 && $Index == $id)
161         {
162             // Modifying an existing row
163                 $item = $order->gl_items[$Index];
164                 $_POST['code_id'] = $item->code_id;
165                 $_POST['dimension_id'] = $item->dimension_id;
166                 $_POST['dimension2_id'] = $item->dimension2_id;
167                 if ($item->amount > 0)
168                 {
169                         $_POST['AmountDebit'] = price_format($item->amount);
170                         $_POST['AmountCredit'] = "";
171                 }
172                 else
173                 {
174                         $_POST['AmountDebit'] = "";
175                         $_POST['AmountCredit'] = price_format(abs($item->amount));
176                 }       
177                 $_POST['description'] = $item->description;
178                 $_POST['LineMemo'] = $item->reference;
179
180                 hidden('Index', $id);
181                 $skip_bank = !$_SESSION["wa_current_user"]->can_access('SA_BANKJOURNAL');
182                 echo gl_all_accounts_list('code_id', null, $skip_bank, true);
183                 if ($dim >= 1) 
184                         dimensions_list_cells(null, 'dimension_id', null, true, " ", false, 1);
185                 if ($dim > 1) 
186                         dimensions_list_cells(null, 'dimension2_id', null, true, " ", false, 2);
187             $Ajax->activate('items_table');
188         }
189         else
190         {
191             // Adding a new row
192                 $_POST['AmountDebit'] = '';  //price_format(0);
193                 $_POST['AmountCredit'] = ''; //price_format(0);
194                 $_POST['dimension_id'] = 0;
195                 $_POST['dimension2_id'] = 0;
196                 //$_POST['LineMemo'] = ""; // let memo go to next line Joe Hunt 2010-05-30
197                 $_POST['_code_id_edit'] = "";
198                 $_POST['code_id'] = "";
199                 if(isset($_POST['_code_id_update'])) {
200                             $Ajax->activate('code_id');
201                 }
202                 
203                 $skip_bank = !$_SESSION["wa_current_user"]->can_access('SA_BANKJOURNAL');
204                 echo gl_all_accounts_list('code_id', null, $skip_bank, true);
205                 if ($dim >= 1)
206                         dimensions_list_cells(null, 'dimension_id', null, true, " ", false, 1);
207                 if ($dim > 1)
208                         dimensions_list_cells(null, 'dimension2_id', null, true, " ", false, 2);
209         }
210         if ($dim < 1)
211                 hidden('dimension_id', 0);
212         if ($dim < 2)
213                 hidden('dimension2_id', 0);
214
215         small_amount_cells(null, 'AmountDebit');
216         small_amount_cells(null, 'AmountCredit');
217         text_cells_ex(null, 'LineMemo', 35, 255);
218
219         if ($id != -1)
220         {
221                 button_cell('UpdateItem', _("Update"),
222                                 _('Confirm changes'), ICON_UPDATE);
223                 button_cell('CancelItemChanges', _("Cancel"),
224                                 _('Cancel changes'), ICON_CANCEL);
225                 set_focus('amount');
226         } 
227         else 
228                 submit_cells('AddItem', _("Add Item"), "colspan=2",
229                     _('Add new line to journal'), true);
230
231         end_row();
232 }
233
234 //---------------------------------------------------------------------------------
235
236 function gl_options_controls()
237 {
238           echo "<br><table align='center'>";
239
240           textarea_row(_("Memo"), 'memo_', null, 50, 3);
241
242           echo "</table>";
243 }
244
245
246 //---------------------------------------------------------------------------------
247
248 ?>