Merging version 2.1 RC to main trunk.
[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 $table_style2;
20
21         $qes = has_quick_entries(QE_JOURNAL);
22
23         start_outer_table("$table_style2 width=90%");
24         table_section(1);
25
26         start_row();
27     date_cells(_("Date:"), 'date_');
28         ref_cells(_("Reference:"), 'ref', '', references::get_next(0));
29         end_row();
30
31         if ($qes)
32                 table_section(2, "20%");
33         else    
34                 table_section(2, "50%");
35
36         start_row();
37         check_cells(_("Reverse Transaction:"), 'Reverse', null);
38         end_row();
39         if ($qes !== false)
40         {
41                 table_section(3, "50%");
42                 start_row();
43                 quick_entries_list_cells(_("Quick Entry").":", 'person_id', null, QE_JOURNAL, true);
44                 $qid = get_quick_entry(get_post('person_id'));
45                 if (list_updated('person_id')) {
46                         unset($_POST['totamount']); // enable default
47                 $Ajax->activate('totamount');
48                 }
49                 amount_cells($qid['base_desc'].":", 'totamount', price_format($qid['base_amount']),
50                  null, "&nbsp;&nbsp;".submit('go', _("Go"), false, false, true));
51                 end_row();
52
53         }
54                 
55         end_outer_table(1);
56 }
57
58 //---------------------------------------------------------------------------------
59
60 function display_gl_items($title, &$order)
61 {
62         global $table_style, $path_to_root;
63
64         display_heading($title);
65
66         $dim = get_company_pref('use_dimension');
67
68     div_start('items_table');
69         start_table("$table_style colspan=7 width=95%");
70         if ($dim == 2)
71                 $th = array(_("Account Code"), _("Account Description"), _("Dimension")." 1",
72                         _("Dimension")." 2", _("Debit"), _("Credit"), _("Memo"), "");
73         else if ($dim == 1)
74                 $th = array(_("Account Code"), _("Account Description"), _("Dimension"),
75                         _("Debit"), _("Credit"), _("Memo"), "");
76         else
77                 $th = array(_("Account Code"), _("Account Description"),
78                         _("Debit"), _("Credit"), _("Memo"), "");
79
80         if (count($order->gl_items)) $th[] = '';
81
82         table_header($th);      
83
84         $k = 0;
85
86         $id = find_submit('Edit');
87         foreach ($order->gl_items as $item) 
88         {
89                 if ($id != $item->index)
90                 {
91                 alt_table_row_color($k);
92
93                         label_cells($item->code_id, $item->description);
94                 if ($dim >= 1)
95                                 label_cell(get_dimension_string($item->dimension_id, true));
96                 if ($dim > 1)
97                                 label_cell(get_dimension_string($item->dimension2_id, true));
98                 if ($item->amount > 0)
99                 {
100                         amount_cell(abs($item->amount));
101                         label_cell("");
102                 }       
103                 else
104                 {
105                         label_cell("");
106                         amount_cell(abs($item->amount));
107                 }       
108                         label_cell($item->reference);
109
110                         edit_button_cell("Edit$item->index", _("Edit"),
111                                 _('Edit journal line'));
112                         delete_button_cell("Delete$item->index", _("Delete"),
113                                 _('Remove line from journal'));
114                 end_row();
115                 } 
116                 else 
117                 {
118                         gl_edit_item_controls($order, $dim, $item->index);
119                 }
120         }
121
122         if ($id == -1)
123                 gl_edit_item_controls($order, $dim);
124
125         if ($order->count_gl_items()) 
126         {
127                 $colspan = ($dim == 2 ? "4" : ($dim == 1 ? "3" : "2"));
128                 start_row();
129                 label_cell(_("Total"), "align=right colspan=" . $colspan);
130                 amount_cell($order->gl_items_total_debit());
131                 amount_cell(abs($order->gl_items_total_credit()));
132                 end_row();
133         }
134
135     end_table();
136         div_end();
137 }
138
139 //---------------------------------------------------------------------------------
140
141 function gl_edit_item_controls(&$order, $dim, $Index=null)
142 {
143         global $Ajax;
144         start_row();
145
146         $id = find_submit('Edit');
147         if ($Index != -1 && $Index == $id)
148         {
149                 $item = $order->gl_items[$Index];
150                 $_POST['code_id'] = $item->code_id;
151                 $_POST['dimension_id'] = $item->dimension_id;
152                 $_POST['dimension2_id'] = $item->dimension2_id;
153                 if ($item->amount > 0)
154                 {
155                         $_POST['AmountDebit'] = price_format($item->amount);
156                         $_POST['AmountCredit'] = "";
157                 }
158                 else
159                 {
160                         $_POST['AmountDebit'] = "";
161                         $_POST['AmountCredit'] = price_format(abs($item->amount));
162                 }       
163                 $_POST['description'] = $item->description;
164                 $_POST['LineMemo'] = $item->reference;
165
166                 hidden('Index', $item->index);
167                 hidden('code_id', $item->code_id);
168                 label_cell($_POST['code_id']);
169                 label_cell($item->description);
170                 if ($dim >= 1) 
171                         dimensions_list_cells(null, 'dimension_id', null, true, " ", false, 1);
172                 if ($dim > 1) 
173                         dimensions_list_cells(null, 'dimension2_id', null, true, " ", false, 2);
174             $Ajax->activate('items_table');
175         }
176         else
177         {
178                 $_POST['AmountDebit'] = '';  //price_format(0);
179                 $_POST['AmountCredit'] = ''; //price_format(0);
180                 $_POST['dimension_id'] = 0;
181                 $_POST['dimension2_id'] = 0;
182                 $_POST['LineMemo'] = "";
183                 $_POST['_code_id_edit'] = "";
184                 $_POST['code_id'] = "";
185                 if(isset($_POST['_code_id_update'])) {
186                             $Ajax->activate('code_id');
187                 }
188                 
189                 $skip_bank = ($_SESSION["wa_current_user"]->access != 2);
190                 gl_all_accounts_list('code_id', null, $skip_bank, true);
191                 if ($dim >= 1)
192                         dimensions_list_cells(null, 'dimension_id', null, true, " ", false, 1);
193                 if ($dim > 1)
194                         dimensions_list_cells(null, 'dimension2_id', null, true, " ", false, 2);
195         }
196         if ($dim < 1)
197                 hidden('dimension_id', 0);
198         if ($dim < 2)
199                 hidden('dimension2_id', 0);
200
201         small_amount_cells(null, 'AmountDebit');
202         small_amount_cells(null, 'AmountCredit');
203         text_cells_ex(null, 'LineMemo', 35, 50);
204
205         if ($id != -1)
206         {
207                 button_cell('UpdateItem', _("Update"),
208                                 _('Confirm changes'), ICON_UPDATE);
209                 button_cell('CancelItemChanges', _("Cancel"),
210                                 _('Cancel changes'), ICON_CANCEL);
211                 set_focus('amount');
212         } 
213         else 
214                 submit_cells('AddItem', _("Add Item"), "colspan=2",
215                     _('Add new line to journal'), true);
216
217         end_row();
218 }
219
220 //---------------------------------------------------------------------------------
221
222 function gl_options_controls()
223 {
224           echo "<br><table align='center'>";
225
226           textarea_row(_("Memo"), 'memo_', null, 50, 3);
227
228           echo "</table>";
229 }
230
231
232 //---------------------------------------------------------------------------------
233
234 ?>