bd7595f76365dcc22e85f8877b411d6e9c53c627
[fa-stable.git] / gl / gl_journal.php
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 $page_security = 'SA_JOURNALENTRY';
13 $path_to_root = "..";
14 include_once($path_to_root . "/includes/ui/items_cart.inc");
15
16 include_once($path_to_root . "/includes/session.inc");
17
18 include_once($path_to_root . "/includes/date_functions.inc");
19 include_once($path_to_root . "/includes/data_checks.inc");
20
21 include_once($path_to_root . "/gl/includes/ui/gl_journal_ui.inc");
22 include_once($path_to_root . "/gl/includes/gl_db.inc");
23 include_once($path_to_root . "/gl/includes/gl_ui.inc");
24
25 $js = '';
26 if ($use_popup_windows)
27         $js .= get_js_open_window(800, 500);
28 if ($use_date_picker)
29         $js .= get_js_date_picker();
30
31 if (isset($_GET['ModifyGL'])) {
32         $_SESSION['page_title'] = sprintf(_("Modifying Journal Transaction # %d."), 
33                 $_GET['trans_no']);
34         $help_context = "Modifying Journal Transaction";
35 } else
36         $_SESSION['page_title'] = _($help_context = "Journal Entry");
37
38 page($_SESSION['page_title'], false, false,'', $js);
39 //--------------------------------------------------------------------------------------------------
40
41 function line_start_focus() {
42   global        $Ajax;
43
44   $Ajax->activate('items_table');
45   set_focus('_code_id_edit');
46 }
47 //-----------------------------------------------------------------------------------------------
48
49 if (isset($_GET['AddedID'])) 
50 {
51         $trans_no = $_GET['AddedID'];
52         $trans_type = ST_JOURNAL;
53
54         display_notification_centered( _("Journal entry has been entered") . " #$trans_no");
55
56     display_note(get_gl_view_str($trans_type, $trans_no, _("&View this Journal Entry")));
57
58         reset_focus();
59         hyperlink_params($_SERVER['PHP_SELF'], _("Entry &New Journal Entry"), "NewJournal=Yes");
60
61         display_footer_exit();
62 } elseif (isset($_GET['UpdatedID'])) 
63 {
64         $trans_no = $_GET['UpdatedID'];
65         $trans_type = ST_JOURNAL;
66
67         display_notification_centered( _("Journal entry has been updated") . " #$trans_no");
68
69     display_note(get_gl_view_str($trans_type, $trans_no, _("&View this Journal Entry")));
70
71         hyperlink_no_params($path_to_root."/gl/inquiry/journal_inquiry.php", _("Return to Journal &Inquiry"));
72
73         display_footer_exit();
74 }
75 //--------------------------------------------------------------------------------------------------
76
77 if (isset($_GET['NewJournal']))
78 {
79         create_cart(0,0);
80
81 elseif (isset($_GET['ModifyGL']))
82 {
83         if (!isset($_GET['trans_type']) || $_GET['trans_type']!= 0) {
84                 display_error(_("You can edit directly only journal entries created via Journal Entry page."));
85                 hyperlink_params("$path_to_root/gl/gl_journal.php", _("Entry &New Journal Entry"), "NewJournal=Yes");
86                 display_footer_exit();
87         }
88         create_cart($_GET['trans_type'], $_GET['trans_no']);
89 }
90
91 function create_cart($type=0, $trans_no=0)
92 {
93         global $Refs;
94
95         if (isset($_SESSION['journal_items']))
96         {
97                 unset ($_SESSION['journal_items']);
98         }
99
100         $cart = new items_cart($type);
101     $cart->order_id = $trans_no;
102
103         if ($trans_no) {
104                 $result = get_gl_trans($type, $trans_no);
105
106                 if ($result) {
107                         while ($row = db_fetch($result)) {
108                                 if ($row['amount'] == 0) continue;
109                                 $date = $row['tran_date'];
110                                 $cart->add_gl_item($row['account'], $row['dimension_id'], 
111                                         $row['dimension2_id'], $row['amount'], $row['memo_']);
112                         }
113                 }
114                 $cart->memo_ = get_comments_string($type, $trans_no);
115                 $cart->tran_date = sql2date($date);
116                 $cart->reference = $Refs->get($type, $trans_no);
117         } else {
118                 $cart->reference = $Refs->get_next(0);
119                 $cart->tran_date = new_doc_date();
120         }
121         if (!is_date_in_fiscalyear($cart->tran_date))
122                 $cart->tran_date = end_fiscalyear();
123
124         $_POST['memo_'] = $cart->memo_;
125         $_POST['ref'] = $cart->reference;       
126         $_POST['date_'] = $cart->tran_date;
127
128         $_SESSION['journal_items'] = &$cart;
129 }
130
131 //-----------------------------------------------------------------------------------------------
132
133 if (isset($_POST['Process']))
134 {
135
136         $input_error = 0;
137
138         if ($_SESSION['journal_items']->count_gl_items() < 1) {
139                 display_error(_("You must enter at least one journal line."));
140                 set_focus('code_id');
141                 $input_error = 1;
142         }
143         if (abs($_SESSION['journal_items']->gl_items_total()) > 0.0001)
144         {
145                 display_error(_("The journal must balance (debits equal to credits) before it can be processed."));
146                 set_focus('code_id');
147                 $input_error = 1;
148         }
149
150         if (!is_date($_POST['date_'])) 
151         {
152                 display_error(_("The entered date is invalid."));
153                 set_focus('date_');
154                 $input_error = 1;
155         } 
156         elseif (!is_date_in_fiscalyear($_POST['date_'])) 
157         {
158                 display_error(_("The entered date is not in fiscal year."));
159                 set_focus('date_');
160                 $input_error = 1;
161         } 
162         if ($_SESSION['journal_items']->order_id == 0) {
163                 if (!$Refs->is_valid($_POST['ref'])) 
164                 {
165                         display_error( _("You must enter a reference."));
166                         set_focus('ref');
167                         $input_error = 1;
168                 } 
169                 elseif ($Refs->exists(ST_JOURNAL, $_POST['ref'])) 
170                 {
171                         display_error( _("The entered reference is already in use."));
172                         set_focus('ref');
173                         $input_error = 1;
174                 }
175         }
176         if ($input_error == 1)
177                 unset($_POST['Process']);
178 }
179
180 if (isset($_POST['Process']))
181 {
182         $cart = &$_SESSION['journal_items'];
183         $new = $cart->order_id == 0;
184
185         if ($new) 
186                 $cart->reference = $_POST['ref'];
187         $cart->memo_ = $_POST['memo_'];
188         $cart->tran_date = $_POST['date_'];
189
190         $trans_no = write_journal_entries($cart, check_value('Reverse'));
191
192         $cart->clear_items();
193         new_doc_date($_POST['date_']);
194         unset($_SESSION['journal_items']);
195         if($new)
196                 meta_forward($_SERVER['PHP_SELF'], "AddedID=$trans_no");
197         else
198                 meta_forward($_SERVER['PHP_SELF'], "UpdatedID=$trans_no");
199 }
200
201 //-----------------------------------------------------------------------------------------------
202
203 function check_item_data()
204 {
205         if (isset($_POST['dimension_id']) && $_POST['dimension_id'] != 0 && dimension_is_closed($_POST['dimension_id'])) 
206         {
207                 display_error(_("Dimension is closed."));
208                 set_focus('dimension_id');
209                 return false;
210         }
211
212         if (isset($_POST['dimension2_id']) && $_POST['dimension2_id'] != 0 && dimension_is_closed($_POST['dimension2_id'])) 
213         {
214                 display_error(_("Dimension is closed."));
215                 set_focus('dimension2_id');
216                 return false;
217         }
218
219         if (!(input_num('AmountDebit')!=0 ^ input_num('AmountCredit')!=0) )
220         {
221                 display_error(_("You must enter either a debit amount or a credit amount."));
222                 set_focus('AmountDebit');
223                 return false;
224         }
225
226         if (strlen($_POST['AmountDebit']) && !check_num('AmountDebit', 0)) 
227         {
228                 display_error(_("The debit amount entered is not a valid number or is less than zero."));
229                 set_focus('AmountDebit');
230                 return false;
231         } elseif (strlen($_POST['AmountCredit']) && !check_num('AmountCredit', 0))
232         {
233                 display_error(_("The credit amount entered is not a valid number or is less than zero."));
234                 set_focus('AmountCredit');
235                 return false;
236         }
237         
238         if (!is_tax_gl_unique(get_post('code_id'))) {
239                 display_error(_("Cannot post to GL account used by more than one tax type."));
240                 set_focus('code_id');
241                 return false;
242         }
243
244         if (!$_SESSION["wa_current_user"]->can_access('SA_BANKJOURNAL') && is_bank_account($_POST['code_id'])) 
245         {
246                 display_error(_("You cannot make a journal entry for a bank account. Please use one of the banking functions for bank transactions."));
247                 set_focus('code_id');
248                 return false;
249         }
250
251         return true;
252 }
253
254 //-----------------------------------------------------------------------------------------------
255
256 function handle_update_item()
257 {
258     if($_POST['UpdateItem'] != "" && check_item_data())
259     {
260         if (input_num('AmountDebit') > 0)
261                 $amount = input_num('AmountDebit');
262         else
263                 $amount = -input_num('AmountCredit');
264
265         $_SESSION['journal_items']->update_gl_item($_POST['Index'], $_POST['dimension_id'],
266                 $_POST['dimension2_id'], $amount, $_POST['LineMemo']);
267     }
268         line_start_focus();
269 }
270
271 //-----------------------------------------------------------------------------------------------
272
273 function handle_delete_item($id)
274 {
275         $_SESSION['journal_items']->remove_gl_item($id);
276         line_start_focus();
277 }
278
279 //-----------------------------------------------------------------------------------------------
280
281 function handle_new_item()
282 {
283         if (!check_item_data())
284                 return;
285
286         if (input_num('AmountDebit') > 0)
287                 $amount = input_num('AmountDebit');
288         else
289                 $amount = -input_num('AmountCredit');
290         
291         $_SESSION['journal_items']->add_gl_item($_POST['code_id'], $_POST['dimension_id'],
292                 $_POST['dimension2_id'], $amount, $_POST['LineMemo']);
293         line_start_focus();
294 }
295
296 //-----------------------------------------------------------------------------------------------
297 $id = find_submit('Delete');
298 if ($id != -1)
299         handle_delete_item($id);
300
301 if (isset($_POST['AddItem'])) 
302         handle_new_item();
303
304 if (isset($_POST['UpdateItem'])) 
305         handle_update_item();
306         
307 if (isset($_POST['CancelItemChanges']))
308         line_start_focus();
309
310 if (isset($_POST['go']))
311 {
312         display_quick_entries($_SESSION['journal_items'], $_POST['person_id'], input_num('totamount'), QE_JOURNAL);
313         $_POST['totamount'] = price_format(0); $Ajax->activate('totamount');
314         line_start_focus();
315 }       
316 //-----------------------------------------------------------------------------------------------
317
318 start_form();
319
320 display_order_header($_SESSION['journal_items']);
321
322 start_table("$table_style2 width=90%", 10);
323 start_row();
324 echo "<td>";
325 display_gl_items(_("Rows"), $_SESSION['journal_items']);
326 gl_options_controls();
327 echo "</td>";
328 end_row();
329 end_table(1);
330
331 submit_center('Process', _("Process Journal Entry"), true , 
332         _('Process journal entry only if debits equal to credits'), 'default');
333
334 end_form();
335 //------------------------------------------------------------------------------------------------
336
337 end_page();
338
339 ?>