Merged changes from master branch up to current state.
[fa-stable.git] / includes / ui / ui_view.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 . "/admin/db/voiding_db.inc");
13 include_once($path_to_root . "/includes/types.inc");
14
15 //--------------------------------------------------------------------------------------
16
17 function get_supplier_trans_view_str($type, $trans_no, $label="", $icon=false, 
18         $class='', $id='')
19 {
20         $viewer = "purchasing/view/";
21         if ($type == ST_PURCHORDER)
22                 $viewer .= "view_po.php";
23         elseif ($type == ST_SUPPINVOICE)
24                 $viewer .= "view_supp_invoice.php";
25         elseif ($type == ST_SUPPCREDIT)
26                 $viewer .= "view_supp_credit.php";
27         elseif ($type == ST_SUPPAYMENT)
28                 $viewer .= "view_supp_payment.php";
29         elseif ($type == ST_SUPPRECEIVE)
30                 $viewer .= "view_grn.php";
31         else
32                 return null;
33         $viewer .= "?trans_no=$trans_no";
34
35         if ($label == "")
36                 $label = $trans_no;
37
38         return viewer_link($label, $viewer, $class, $id,  $icon);
39 }
40
41 //--------------------------------------------------------------------------------------
42
43 function get_gl_view_str($type, $trans_no, $label="", $force=false, $class='', $id='')
44 {
45         if (!$force && !user_show_gl_info())
46                 return "";
47
48         $icon = false;
49         if ($label == "")
50         {
51                 $label = _("GL");
52                 $icon = ICON_GL;
53         }
54         $url = ($type == ST_WORKORDER && !work_order_is_closed($trans_no)) ? "manufacturing/view/wo_costs_view.php?trans_no=$trans_no"
55                 : "gl/view/gl_trans_view.php?type_id=$type&trans_no=$trans_no";
56
57         return viewer_link($label, $url, $class, $id, $icon);
58 }
59
60 //--------------------------------------------------------------------------------------
61
62 function get_gl_view_str_cell($type, $trans_no, $label="")
63 {
64         $str = get_gl_view_str($type, $trans_no, $label);
65         if ($str != "")
66                 return "<td>$str</td>";
67 }
68
69 //--------------------------------------------------------------------------------------
70
71 function get_customer_trans_view_str($type, $trans_no, $label="", $icon=false, 
72         $class='', $id='')
73 {
74         $viewer = "sales/view/";
75
76         if ($type == ST_SALESINVOICE)
77                 $viewer .= "view_invoice.php";
78         elseif ($type == ST_CUSTCREDIT)
79                 $viewer .= "view_credit.php";
80         elseif ($type == ST_CUSTPAYMENT)
81                 $viewer .= "view_receipt.php";
82         elseif ($type == ST_CUSTDELIVERY)
83                 $viewer .= "view_dispatch.php";
84         elseif ($type == ST_SALESORDER || $type == ST_SALESQUOTE)
85                 $viewer .= "view_sales_order.php";
86         else
87                 return null;
88
89   if(!is_array($trans_no)) $trans_no = array($trans_no);
90
91   $lbl = $label;
92   $preview_str = '';
93
94   foreach($trans_no as $trans) {
95         if ($label == "")
96                 $lbl = $trans;
97         if($preview_str!='') $preview_str .= ',';
98
99         $preview_str .= viewer_link($lbl, $viewer."?trans_no=$trans&trans_type=$type", 
100                 $class, $id, $icon);
101
102   }
103   return $preview_str;
104 }
105
106 //--------------------------------------------------------------------------------------
107
108 function get_banking_trans_view_str($type, $trans_no, $label="", 
109         $icon=false, $class='', $id='')
110 {
111         if ($label == "")
112                 $label = $trans_no;
113
114         if ($type == ST_BANKTRANSFER)
115                 $viewer = "bank_transfer_view.php";
116         elseif ($type == ST_BANKPAYMENT)
117                 $viewer = "gl_payment_view.php";
118         elseif ($type == ST_BANKDEPOSIT)
119                 $viewer = "gl_deposit_view.php";
120         else
121                 return null;
122
123         return viewer_link($label, "gl/view/$viewer?trans_no=$trans_no", 
124                 $class, $id,  $icon);
125 }
126
127 //--------------------------------------------------------------------------------------
128
129 function get_inventory_trans_view_str($type, $trans_no, $label="", 
130         $icon=false, $class='', $id='')
131 {
132         $viewer = "inventory/view/";
133
134         if ($type == ST_INVADJUST)
135                 $viewer .= "view_adjustment.php";
136         elseif ($type == ST_LOCTRANSFER)
137                 $viewer .= "view_transfer.php";
138         else
139                 return null;
140         $viewer .= "?trans_no=$trans_no";
141
142         if ($label == "")
143                 $label = $trans_no;
144
145         return viewer_link($label, $viewer, $class, $id,  $icon);
146 }
147
148 //--------------------------------------------------------------------------------------
149
150 function get_manufacturing_trans_view_str($type, $trans_no, $label="", 
151         $icon=false, $class='', $id='')
152 {
153         $viewer = "manufacturing/view/";
154
155         if ($type == ST_MANUISSUE)
156                 $viewer .= "wo_issue_view.php";
157         elseif ($type == ST_MANURECEIVE)
158                 $viewer .= "wo_production_view.php";
159         elseif ($type == ST_WORKORDER)
160                 $viewer .= "work_order_view.php";
161         else
162                 return null;
163
164         $viewer .= "?trans_no=$trans_no";
165
166         if ($label == "")
167                 $label = $trans_no;
168
169         return viewer_link($label, $viewer, $class, $id,  $icon);
170 }
171
172 //--------------------------------------------------------------------------------------
173
174 function get_dimensions_trans_view_str($type, $trans_no, $label="", $icon=false, 
175         $class='', $id='')
176 {
177         if ($type == ST_DIMENSION)
178                 $viewer = "dimensions/view/view_dimension.php?trans_no=$trans_no";
179         else
180                 return null;
181
182         if ($label == "")
183                 $label = $trans_no;
184
185         return viewer_link($label, $viewer, $class, $id,  $icon);
186 }
187 /*
188         Journal entry or cost update postings link
189 */
190 function get_journal_trans_view_str($type, $trans_no, $label="", $icon=false, 
191         $class='', $id='')
192 {
193         if ($type == ST_JOURNAL || $type == ST_COSTUPDATE)
194                 $viewer = "gl/view/gl_trans_view.php?type_id=$type&trans_no=$trans_no";
195         else
196                 return null;
197
198         if ($label == "")
199                 $label = $trans_no;
200
201         return viewer_link($label, $viewer, $class, $id,  $icon);
202 }
203
204 //--------------------------------------------------------------------------------------
205
206 function get_package_view_str($pkg, $label="", $icon=false, $class='', $id='')
207 {
208         if ($label == "")
209         {
210                 $label = _("Info");
211 //              $icon = ICON_GL;
212         }
213         return viewer_link($label, "admin/view/view_package.php?id=$pkg", $class, $id, $icon);
214 }
215
216
217 //--------------------------------------------------------------------------------------
218
219 function get_trans_view_str($type, $trans_no, $label="", $icon=false, 
220         $class='', $id='')
221 {
222         $view_str = get_customer_trans_view_str($type, $trans_no, $label, $icon, $class, $id);
223         if ($view_str != null)
224                 return $view_str;
225
226         $view_str = get_supplier_trans_view_str($type, $trans_no, $label, $icon, $class, $id);
227         if ($view_str != null)
228                 return $view_str;
229
230         $view_str = get_banking_trans_view_str($type, $trans_no, $label, $icon, $class, $id);
231         if ($view_str != null)
232                 return $view_str;
233
234         $view_str = get_inventory_trans_view_str($type, $trans_no, $label, $icon, $class, $id);
235         if ($view_str != null)
236                 return $view_str;
237
238         $view_str = get_manufacturing_trans_view_str($type, $trans_no, $label, $icon, $class, $id);
239         if ($view_str != null)
240                 return $view_str;
241
242         $view_str = get_dimensions_trans_view_str($type, $trans_no, $label, $icon, $class, $id);
243         if ($view_str != null)
244                 return $view_str;
245
246         $view_str = get_journal_trans_view_str($type, $trans_no, $label, $icon, $class, $id);
247         if ($view_str != null)
248                 return $view_str;
249
250         return null;
251 }
252
253 /*
254         Helper for ui drawing functions.
255         Checks whether any of input function parameters has changed or page is called with GET method (first page display).
256         $name - context
257 */
258 function check_ui_refresh($name=null)
259 {
260         $bt = debug_backtrace();
261         if (!$name)
262                 $name = $bt[1]['function'];
263         $old = @$_SESSION['ui_context'][$name];
264         $new = $_SESSION['ui_context'][$name] = $bt[1]['args'];
265         return ($new != $old);
266 }
267
268 //--------------------------------------------------------------------------------------
269 // Displays currency exchange rate for given date.
270 // When there is no exrate for today, 
271 // gets it form ECB and stores in local database.
272 //
273 function exchange_rate_display($from_currency, $to_currency, $date_, $force_edit=false)
274 {
275     global $Ajax, $SysPrefs;
276
277         $readonly = false;
278
279         if ($from_currency != $to_currency)
280         {
281                 $rate = get_post('_ex_rate');
282                 if (check_ui_refresh() || !$rate) { // readonly or ui context changed
283                         $comp_currency = get_company_currency();
284                         if ($from_currency == $comp_currency)
285                                 $currency = $to_currency;
286                         else
287                                 $currency = $from_currency;
288
289                         $rate = get_date_exchange_rate($currency, $date_); // try local
290
291                         if ($rate)
292                                 $readonly = true; // if we have already local exrate keep it unchanged 
293
294                         if (!$rate) {   // retry from remote service
295                                 $row = get_currency($currency);
296
297                                 if ($row['auto_update']) // autoupdate means use remote service & store exrate on first transaction.
298                                 {
299                                         $rate = retrieve_exrate($currency, $date_);
300                                         if (!$rate)
301                                                 display_warning(sprintf(_("Cannot retrieve exchange rate for currency %s. Please adjust approximate rate if needed."), $currency));
302                                         elseif ($SysPrefs->xr_provider_authoritative) {
303                                                 // if the remote exrate is considered authoritative we can store the rate here,
304                                                 // otherwise exrate will be stored during transaction write
305                                                 $readonly = true;
306                                                 add_new_exchange_rate($currency, $date_, $rate);
307                                         }
308                                 }
309                         }
310                         if (!$rate)     {       // get and edit latest available
311                                 $rate = get_exchange_rate_from_home_currency($currency, $date_);
312                         }
313                         if ($from_currency != $comp_currency)
314                                 $rate = 1 / ($rate / get_exchange_rate_from_home_currency($to_currency, $date_));
315                         $Ajax->activate('_ex_rate_span');
316                 }
317
318                 $rate = number_format2($rate, user_exrate_dec());
319
320                 if ($force_edit || !$readonly)
321                         $ctrl = "<input type=\"text\" name=\"_ex_rate\" size=\"8\" maxlength=\"8\" value=\"$rate\">";
322             else
323                 $ctrl = "<span id=\"_ex_rate\">$rate</span>";
324
325                 label_row(_("Exchange Rate:"), $span = "<span style='vertical-align:top;' id='_ex_rate_span'>$ctrl $from_currency = 1 $to_currency</span>" );
326
327                 $Ajax->addUpdate('_ex_rate_span', '_ex_rate_span', $span);
328         }
329 }
330
331 //--------------------------------------------------------------------------------------
332
333 function is_voided_display($type, $id, $label)
334 {
335         $void_entry = get_voided_entry($type, $id);
336
337         if ($void_entry == null)
338                 return false;
339
340         start_table(TABLESTYLE, "width='50%'");
341         echo "<tr><td align=center><font color=red>$label</font><br>";
342         echo "<font color=red>" . _("Date Voided:") . " " . sql2date($void_entry["date_"]) . "</font><br>";
343         if (strlen($void_entry["memo_"]) > 0)
344                 echo "<center><font color=red>" . _("Memo:") . " " . $void_entry["memo_"] . "</font></center><br>";
345         echo "</td></tr>";
346         end_table(1);
347
348         return true;
349 }
350
351 //--------------------------------------------------------------------------------------
352
353 function comments_display_row($type, $id)
354 {
355         $comments = get_comments($type, $id);
356         if ($comments and db_num_rows($comments))
357         {
358                 echo "<tr><td colspan=15>";
359         while ($comment = db_fetch($comments))
360         {
361                 echo nl2br($comment["memo_"]) . "<br>";
362         }
363                 echo "</td></tr>";
364         }
365 }
366
367 //--------------------------------------------------------------------------------------
368
369 function get_comments_string($type, $type_no)
370 {
371         $str_return = "";
372         $result = get_comments($type, $type_no);
373         while ($comment = db_fetch($result))
374         {
375                 if (strlen($str_return))
376                         $str_return = $str_return . " \n";
377                 $str_return = $str_return . $comment["memo_"];
378         }
379         return $str_return;
380 }
381
382 //--------------------------------------------------------------------------------------
383
384 function view_stock_status($stock_id, $description=null, $echo=true)
385 {
386         global $path_to_root;
387         if ($description)
388                 //hyperlink_params_separate($path_to_root . "/inventory/inquiry/stock_status.php", (user_show_codes()?$stock_id . " - ":"") . $description, "stock_id=$stock_id");
389                 $preview_str = "<a target='_blank' href='$path_to_root/inventory/inquiry/stock_status.php?stock_id=$stock_id&popup=1' onclick=\"javascript:openWindow(this.href,this.target); return false;\" >". (user_show_codes()?$stock_id . " - ":"") . $description."</a>";
390         else
391                 //hyperlink_params_separate($path_to_root . "/inventory/inquiry/stock_status.php", $stock_id, "stock_id=$stock_id");
392                 $preview_str = "<a target='_blank' href='$path_to_root/inventory/inquiry/stock_status.php?stock_id=$stock_id&popup=1' onclick=\"javascript:openWindow(this.href,this.target); return false;\" >$stock_id</a>";
393         if($echo)
394                 echo $preview_str;
395         return $preview_str;
396 }
397
398 function view_stock_status_cell($stock_id, $description=null)
399 {
400         echo "<td>";
401         view_stock_status($stock_id, $description);
402         echo "</td>";
403 }
404
405 //--------------------------------------------------------------------------------------
406
407 function display_debit_or_credit_cells($value, $bold=false)
408 {
409         $value = round2($value, user_price_dec());
410         if ($value >= 0)
411         {
412                 amount_cell($value, $bold);
413                 label_cell("");
414         }
415         elseif ($value < 0)
416         {
417                 label_cell("");
418                 amount_cell(abs($value), $bold);
419         }
420 }
421
422 //--------------------------------------------------------------------------------------
423
424 function display_customer_trans_tax_details($tax_items, $columns)
425 {
426         global $SysPrefs;
427
428         $first = true;
429     while ($tax_item = db_fetch($tax_items))
430     {
431         if (!$tax_item['amount'])
432                 continue;
433
434         $tax = number_format2($tax_item['amount'],user_price_dec());
435                 if ($SysPrefs->suppress_tax_rates() == 1)
436                         $tax_type_name = $tax_item['tax_type_name'];
437                 else
438                         $tax_type_name = $tax_item['tax_type_name']." (".$tax_item['rate']."%) ";
439         if ($tax_item['included_in_price'])
440         {
441                         if ($SysPrefs->alternative_tax_include_on_docs() == 1)
442                         {
443                                 if ($first)
444                                         label_row(_("Total Tax Excluded"), number_format2($tax_item['net_amount'], user_price_dec()),
445                                                 "colspan=$columns align=right", "align=right");
446                         label_row($tax_type_name, $tax, "colspan=$columns align=right", "align=right");
447                         $first = false;
448                 }
449                 else
450                         label_row(_("Included") . " " . $tax_type_name
451                                 . ": $tax", "", "colspan=$columns align=right", "align=right");
452         }                       
453         else
454                 label_row($tax_type_name, $tax, "colspan=$columns align=right", "align=right");
455     }
456 }
457
458 //--------------------------------------------------------------------------------------
459
460 function display_supp_trans_tax_details($tax_items, $columns)
461 {
462     while ($tax_item = db_fetch($tax_items))
463     {
464         if (!$tax_item['amount'])
465                 continue;
466
467         $tax = number_format2(abs($tax_item['amount']),user_price_dec());
468         if ($tax_item['included_in_price'])
469                 label_row(_("Included") . " " . $tax_item['tax_type_name'] . " (" . $tax_item['rate'] . "%) "
470                         . ": $tax", '', "colspan=$columns align=right", "align=right");
471         else
472                 label_row($tax_item['tax_type_name'] . " (" . $tax_item['rate'] . "%)",
473                         $tax, "colspan=$columns align=right", "align=right");
474     }
475 }
476
477 //--------------------------------------------------------------------------------------
478
479 function display_edit_tax_items($taxes, $columns, $tax_included, $rightspan=0, $editable=false)
480 {
481         $total = 0;
482
483     foreach ($taxes as $taxitem)
484         {
485                 $amount = isset($taxitem['Override']) ? $taxitem['Override'] : $taxitem['Value'];
486                 if ($taxitem['Value'] != 0){
487                         if ($editable) {
488                                 if (!isset($_POST['mantax['.$taxitem['tax_type_id'].']']))
489                                         $_POST['mantax['.$taxitem['tax_type_id'].']'] = price_format($amount);
490                                 start_row();
491                                 if ($tax_included) {
492                                         $colspan = $columns-1;
493                                         label_cell(_("Included") . " " . $taxitem['tax_type_name'].":",
494                                                 "colspan={$colspan} align='right'");
495                                         amount_cells(null, 'mantax['.$taxitem['tax_type_id'].']',
496                                                 null, "colspan=$columns align=right", '<td></td>', user_price_dec());
497                                 } else {
498                                         label_cell($taxitem['tax_type_name'], "colspan=$columns align='right'");
499                                         amount_cells(null, 'mantax['.$taxitem['tax_type_id'].']',
500                                                 null, "colspan=$columns align=right", null, user_price_dec());
501                                         $total +=  round2($amount, user_price_dec());
502                                 }
503                                 if ($rightspan)
504                                         label_cell('', "colspan ='$rightspan'");
505                                 end_row();
506                         } else {
507                                 $value = number_format2($taxitem['Value'],user_price_dec());
508                                 if ($tax_included)
509                                 {
510                                         label_row(_("Included") . " " . $taxitem['tax_type_name']
511                                                 . " " . $value , "", "colspan=$columns align=right", "align=right", $rightspan);
512                                 }
513                                 else
514                                 {
515                                         label_row($taxitem['tax_type_name'],
516                                                 $value, "colspan=$columns align=right", "align=right", $rightspan);
517                                         $total +=  round2($taxitem['Value'], user_price_dec());
518                                 }
519                         }
520                 }
521         }
522         return $total;
523 }
524
525 //--------------------------------------------------------------------------------------
526
527 function display_footer_exit($space=2)
528 {
529         if ($space)
530                 br($space);
531         end_page(false, false, true);
532         exit;
533 }
534
535 //--------------------------------------------------------------------------------------
536
537 function display_allocations($alloc_result, $total, $title, $show_summary=true)
538 {
539         global $systypes_array;
540
541         if (!$alloc_result || db_num_rows($alloc_result) == 0)
542                 return;
543
544     display_heading2($title);
545
546     start_table(TABLESTYLE, "width='80%'");
547
548     $th = array( _("Type"), _("Number"), _("Date"), _("Total Amount"),
549         _("Left to Allocate"), _("This Allocation"));
550         table_header($th);
551     $k = $total_allocated = 0;
552
553     while ($alloc_row = db_fetch($alloc_result))
554     {
555         alt_table_row_color($k);
556
557         label_cell($systypes_array[$alloc_row['type']]);
558         label_cell(get_trans_view_str($alloc_row['type'],$alloc_row['trans_no']));
559         label_cell(sql2date($alloc_row['tran_date']));
560         $alloc_row['Total'] = round2($alloc_row['Total'], user_price_dec());
561         $alloc_row['amt'] = round2($alloc_row['amt'], user_price_dec());
562         if ($alloc_row['type'] == ST_SUPPAYMENT || $alloc_row['type'] == ST_BANKPAYMENT || $alloc_row['type'] == ST_SUPPCREDIT)
563                 $alloc_row['Total'] = -$alloc_row['Total'];
564         amount_cell($alloc_row['Total']);
565                 amount_cell($alloc_row['Total'] - $alloc_row['amt']);
566         amount_cell($alloc_row['amt']);
567         end_row();
568
569         $total_allocated += $alloc_row['amt'];
570     }
571     start_row();
572         label_cell(_("Total Allocated:"), "align=right colspan=5");
573         amount_cell($total_allocated);
574         end_row();
575         if ($show_summary)
576         {
577                 start_row();
578             label_cell(_("Left to Allocate:"), "align=right colspan=5");
579             $total = round2($total, user_price_dec());
580         amount_cell($total - $total_allocated);
581         end_row();
582         }
583     end_table(1);
584 }
585
586 //--------------------------------------------------------------------------------------
587
588 function display_allocations_from($person_type, $person_id, $type, $type_no, $total)
589 {
590         switch ($person_type)
591         {
592                 case PT_CUSTOMER :
593                         $alloc_result = get_allocatable_to_cust_transactions($person_id, $type_no, $type);
594                         display_allocations($alloc_result, $total, _("Allocations"));
595                         return;
596                 case PT_SUPPLIER :
597                         $alloc_result = get_allocatable_to_supp_transactions($person_id, $type_no, $type);
598                         display_allocations($alloc_result, $total, _("Allocations"));
599                         return;
600         }
601 }
602
603 //--------------------------------------------------------------------------------------
604
605 function display_allocations_to($person_type, $person_id, $type, $type_no, $total)
606 {
607         switch ($person_type)
608         {
609                 case PT_CUSTOMER :
610                         $alloc_result = get_allocatable_from_cust_transactions($person_id, $type_no, $type);
611                         display_allocations($alloc_result, $total, $type == ST_SALESORDER ? _("Pre-Payments") : _("Payments"), false);
612                         return;
613                 case PT_SUPPLIER :
614                         $alloc_result = get_allocatable_from_supp_transactions($person_id, $type_no, $type);
615                         display_allocations($alloc_result, $total, $type == ST_PURCHORDER ? _("Pre-Payments") : _("Payments"), false);
616                         return;
617         }
618 }
619
620 //--------------------------------------------------------------------------------------
621 //
622 //      Expands selected quick entry $id into GL posings and adds to cart.
623 //              returns calculated amount posted to bank GL account.
624 //
625 function display_quick_entries(&$cart, $id, $base, $type, $descr='')
626 {
627         $bank_amount = 0;
628
629         if (!isset($id) || $id == null || $id == "")
630         {
631                 display_error( _("No Quick Entries are defined."));
632                 set_focus('totamount');
633         }
634         else
635         {
636                 if ($type == QE_DEPOSIT)
637                         $base = -$base;
638                 if ($type != QE_SUPPINV && $type != QE_JOURNAL) // only one quick entry on journal/bank transaction
639                         $cart->clear_items();
640
641                 // as for now tax_group is passed only in QE_SUPPINV
642                 $qe_lines = quickentry_calculate($base, $id, @$cart->tax_group_id, $cart->tran_date);
643
644                 if ($qe_lines === 0)
645                 {
646                         display_error( _("No Quick Entry lines are defined."));
647                         set_focus('totamount');
648                         return 0;
649                 } elseif ($qe_lines === -1)
650                 {
651                         display_error(_("Cannot post to GL account used by more than one tax type."));
652                         return 0;
653                 }
654                 foreach($qe_lines as $qe_line)
655                 {
656                         if ($descr != '') $qe_line['descr'] .= ': '.$descr;
657                         if ($type != QE_SUPPINV)
658                                 $cart->add_gl_item($qe_line['code'], $qe_line['dim1'],
659                                         $qe_line['dim2'], $qe_line['amount'], $qe_line['descr']);
660                         else 
661                         {
662                                 $acc_name = get_gl_account_name($qe_line['code']);
663                                 $cart->add_gl_codes_to_trans($qe_line['code'], 
664                                         $acc_name, $qe_line['dim1'], 
665                                         $qe_line['dim2'], $qe_line['amount'], $qe_line['descr']);
666                         }
667                 }
668         }
669         return $bank_amount;
670 }
671
672 //--------------------------------------------------------------------------------------
673
674 function quickentry_calculate($base, $id, $taxgroup=null, $date=null)
675 {
676                 $gl_entries = array();
677                 $qe = get_quick_entry($id);
678                 $type = $qe['type'];
679                 $total = $base;
680                 // quick entry made on account balance is special case.
681                 if ($qe['bal_type'] == 1) // if this is quick entry based on balance - calculate it
682                 {
683                         // Note, that this is ugly hack overriding standard field usage 
684                         // just to make the feature available between major FA releases!
685                         $gl_code = $qe['base_desc'];
686                         $monthly = $qe['base_amount'] == 1.0;
687
688                         if (!isset($date))
689                                 $date = Today();
690
691                         if ($monthly) // marked as monthly
692                                 $begin = begin_month($date);
693                         else
694                         {
695                                 if (is_account_balancesheet($gl_code)) // total
696                                         $begin = "";
697                                 else
698                                         $begin = begin_fiscalyear(); // from fiscalyear begin
699                         }
700                         $base = get_gl_trans_from_to($begin, $date, $gl_code);
701
702                 }
703
704                 $result = get_quick_entry_lines($id);
705                 if (db_num_rows($result) == 0)
706                 {
707                         return 0;
708                 }
709
710                 // first calculate total rate in case more than one tax is used
711                 $totrate = 0;
712                 while ($row = db_fetch($result))
713                 {
714                         $qe_lines[] = $row;
715
716                         switch (strtolower($row['action'])) {
717                                 case "t": // post taxes calculated on base amount
718                                 case "t+": // ditto & increase base amount
719                                 case "t-": // ditto & reduce base amount
720                                         if (substr($row['action'], 0, 1) != 'T') 
721                                                 $totrate += get_tax_type_default_rate($row['dest_id']);
722                         }
723                 }
724                 $first = true;
725                 $taxbase = 0;
726                 foreach($qe_lines as $qe_line)
727                 {
728                         $gl_code = $qe_line['dest_id'];
729                         switch (strtolower($qe_line['action'])) {
730                                 case "=": // post current base amount to GL account
731                                         $part = $base;
732                                         break;
733                                 case "a": // post amount to GL account and reduce base
734                                         $part = $qe_line['amount'];
735                                         break;
736                                 case "a+": // post amount to GL account and increase base
737                                         $part = $qe_line['amount']; $base += $part;
738                                         break;
739                                 case "a-": // post amount to GL account and reduce base
740                                         $part = $qe_line['amount']; $base -= $part;
741                                         break;
742                                 case "%":       // store acc*amount% to GL account
743                                         $part = round2($base * $qe_line['amount'] / 100, user_price_dec());
744                                         break;
745                                 case "%+":      // ditto & increase base amount
746                                         $part = round2($base * $qe_line['amount'] / 100, user_price_dec());
747                                         $base += $part;
748                                         break;
749                                 case "%-":      // ditto & reduce base amount
750                                         $part = round2($base * $qe_line['amount'] / 100, user_price_dec());
751                                         $base -= $part;
752                                         break;
753                                 case "t": // post taxes calculated on base amount
754                                 case "t+": // ditto & increase base amount
755                                 case "t-": // ditto & reduce base amount
756                                         if ($first)
757                                         {
758                                                 $taxbase = $base/($totrate+100);
759                                                 $first = false;
760                                         }
761
762                                         if (substr($qe_line['action'],0,1) != 'T') 
763                                                 $part = $taxbase;
764                                         else
765                                                 $part = $base/100;
766
767                                         $item_tax = get_tax_type($qe_line['dest_id']);
768                                         //if ($type == QE_SUPPINV && substr($qe_line['action'],0,1) != 'T')
769                                         if ($type == QE_SUPPINV)
770                                         {
771                                                 $rates = 0;
772                                                 $res = get_tax_group_rates($taxgroup);
773                                                 while ($row = db_fetch($res))
774                                                         $rates += $row['rate'];
775                                                 if ($rates == 0)
776                                                         continue 2;
777                                         }
778                                         $tax = round2($part * $item_tax['rate'],  user_price_dec());
779                                         if ($tax == 0) continue 2;
780                                         $gl_code = ($type == QE_DEPOSIT || ($type == QE_JOURNAL && $base < 0)) 
781                                                 ? $item_tax['sales_gl_code'] : $item_tax['purchasing_gl_code'];
782                                         if (!is_tax_gl_unique($gl_code)) {
783                                                 return -1; // more than one taxtype used with this GL account
784                                         }
785
786                                         $part = $tax;
787                                         if (strpos($qe_line['action'], '+'))
788                                                 $base += $tax;
789                                         elseif (strpos($qe_line['action'], '-'))
790                                                 $base -= $tax;
791                                 }
792                                 $gl_entries[] = array(
793                                         'code' => $gl_code, 
794                                         'name' => get_gl_account_name($gl_code),
795                                         'dim1' => $qe_line['dimension_id'], 
796                                         'dim2' => $qe_line['dimension2_id'], 
797                                         'amount' => $part, 
798                                         'descr' => $qe_line['memo']
799                                 );
800                         }
801         return $gl_entries;
802 }
803
804
805 //--------------------------------------------------------------------------------------
806 //
807 //      Simple English version of number to words conversion.
808 //
809 function _number_to_words($number) 
810
811     $Bn = floor($number / 1000000000); /* Billions (giga) */ 
812     $number -= $Bn * 1000000000; 
813     $Gn = floor($number / 1000000);  /* Millions (mega) */ 
814     $number -= $Gn * 1000000; 
815     $kn = floor($number / 1000);     /* Thousands (kilo) */ 
816     $number -= $kn * 1000; 
817     $Hn = floor($number / 100);      /* Hundreds (hecto) */ 
818     $number -= $Hn * 100; 
819     $Dn = floor($number / 10);       /* Tens (deca) */ 
820     $n = $number % 10;               /* Ones */
821
822     $res = ""; 
823
824     if ($Bn) 
825         $res .= _number_to_words($Bn) . " Billion"; 
826     if ($Gn) 
827         $res .= (empty($res) ? "" : " ") . _number_to_words($Gn) . " Million"; 
828     if ($kn) 
829         $res .= (empty($res) ? "" : " ") . _number_to_words($kn) . " Thousand"; 
830     if ($Hn) 
831         $res .= (empty($res) ? "" : " ") . _number_to_words($Hn) . " Hundred"; 
832
833     $ones = array("", "One", "Two", "Three", "Four", "Five", "Six", 
834         "Seven", "Eight", "Nine", "Ten", "Eleven", "Twelve", "Thirteen", 
835         "Fourteen", "Fifteen", "Sixteen", "Seventeen", "Eighteen", 
836         "Nineteen"); 
837     $tens = array("", "", "Twenty", "Thirty", "Fourty", "Fifty", "Sixty", 
838         "Seventy", "Eighty", "Ninety"); 
839
840     if ($Dn || $n) 
841     { 
842         if (!empty($res)) 
843             $res .= " and "; 
844         if ($Dn < 2) 
845             $res .= $ones[$Dn * 10 + $n]; 
846         else 
847         { 
848             $res .= $tens[$Dn]; 
849             if ($n) 
850                 $res .= "-" . $ones[$n]; 
851         } 
852     } 
853
854     if (empty($res)) 
855         $res = "zero"; 
856     return $res; 
857
858
859 function price_in_words($amount, $document=0)
860 {
861         // use local price_in_words() if the hook is defined
862         $price = hook_price_in_words($amount, $document);
863         if ($price) 
864                 return $price;
865
866         // Only usefor Remittance and Receipts as default
867         if (!($document == ST_SUPPAYMENT || $document == ST_CUSTPAYMENT || $document == ST_CHEQUE))
868                 return "";
869         if ($amount < 0 || $amount > 999999999999)
870                 return "";
871         $dec = user_price_dec();
872         if ($dec > 0)
873         {
874                 $divisor = pow(10, $dec);
875         $frac = round2($amount - floor($amount), $dec) * $divisor;
876                 $frac = sprintf("%0{$dec}d", round2($frac, 0));
877                 $and = _("and");
878         $frac = " $and $frac/$divisor";
879     }
880     else
881         $frac = "";
882     return _number_to_words(intval($amount)) . $frac;
883 }
884
885 function get_js_open_window($width, $height)
886 {
887         $js ="function openWindow(url, title)\n"
888                 . "{\n"
889                 . " var left = (screen.width - $width) / 2;\n"
890                 . " var top = (screen.height - $height) / 2;\n"
891                 . " return window.open(url, title, 'width=$width,height=$height,left='+left+',top='+top+',screenX='+left+',screenY='+top+',status=no,scrollbars=yes');\n"
892                 . "}\n";
893         return $js;
894 }
895
896 /*
897   Setting focus on element $name in $form.
898   If $form<0 $name is element id.
899 */
900 function set_focus($name, $form_no=0) {
901   global $Ajax;
902         $Ajax->addFocus(true, $name);
903     $_POST['_focus'] = $name;
904 }
905 //
906 //      Set default focus on first field $name if not set yet
907 //      Returns unique name if $name=null
908 //      
909 function default_focus($name=null, $form_no=0) {
910         static $next; 
911         if ($name==null) 
912                 $name = uniqid('_el',true);
913     if (!isset($_POST['_focus'])) {
914           set_focus($name);
915     }
916         return $name;
917 }
918 /*
919         Reset focus to next control element (e.g. link).
920 */
921 function reset_focus()
922 {
923         unset($_POST['_focus']);
924 }
925
926 function get_js_date_picker()
927 {
928     global $SysPrefs, $tmonths;
929
930     $fpath = user_js_cache().'/'.'date_picker.js';
931
932     if (!file_exists($fpath) || $SysPrefs->go_debug) {
933
934         $date_system = $SysPrefs->date_system;
935         $dateseps = $SysPrefs->dateseps;
936         $how = user_date_format();                              // 0 = us/ca, 1 = eu, au, nz, 2 = jp, sw
937         $sep = $dateseps[user_date_sep()];              // date separator
938         $wstart = (($date_system == 1 || $date_system == 2 || $date_system == 3) ? 6 : ($how == 0 || $how == 3 ? 0 : 1));       // weekstart (sun = 0, mon = 1)
939         $months = array(_("January"),_("February"),_("March"),_("April"),_("May"),_("June"),_("July"),_("August"),_("September"),_("October"),_("November"),_("December"));
940         $wdays = array(_("Su"),_("Mo"),_("Tu"),_("We"),_("Th"),_("Fr"),_("Sa"));
941         $wno = _("W"); // week no
942         $back = _("Back");
943         if ($date_system == 1)
944                 list($cyear, $cmon, $cday) = gregorian_to_jalali(date("Y"), date("n"), date("j"));
945         elseif ($date_system == 2)
946                 list($cyear, $cmon, $cday) = gregorian_to_islamic(date("Y"), date("n"), date("j"));
947
948
949         $js = "
950 function positionInfo(object) {
951   var p_elm = object;
952   this.getElementLeft = getElementLeft;
953   function getElementLeft() {
954     var x = 0;
955     var elm;
956     if(typeof(p_elm) == 'object'){
957       elm = p_elm;
958     } else {
959       elm = document.getElementById(p_elm);
960     }
961     while (elm != null) {
962       x+= elm.offsetLeft;
963       elm = elm.offsetParent;
964     }
965     return parseInt(x);
966   }
967   this.getElementWidth = getElementWidth;
968   function getElementWidth(){
969     var elm;
970     if(typeof(p_elm) == 'object'){
971       elm = p_elm;
972     } else {
973       elm = document.getElementById(p_elm);
974     }
975     return parseInt(elm.offsetWidth);
976   }
977   this.getElementRight = getElementRight;
978   function getElementRight(){
979     return getElementLeft(p_elm) + getElementWidth(p_elm);
980   }
981   this.getElementTop = getElementTop;
982   function getElementTop() {
983     var y = 0;
984     var elm;
985     if(typeof(p_elm) == 'object'){
986       elm = p_elm;
987     } else {
988       elm = document.getElementById(p_elm);
989     }
990     while (elm != null) {
991       y+= elm.offsetTop;
992       elm = elm.offsetParent;
993     }
994     return parseInt(y);
995   }
996   this.getElementHeight = getElementHeight;
997   function getElementHeight(){
998     var elm;
999     if(typeof(p_elm) == 'object'){
1000       elm = p_elm;
1001     } else {
1002       elm = document.getElementById(p_elm);
1003     }
1004     return parseInt(elm.offsetHeight);
1005   }
1006   this.getElementBottom = getElementBottom;
1007   function getElementBottom(){
1008     return getElementTop(p_elm) + getElementHeight(p_elm);
1009   }
1010 }
1011 function CC() {
1012   var calendarId = 'CC';
1013   var currentYear = 0;
1014   var currentMonth = 0;
1015   var currentDay = 0;
1016   var selectedYear = 0;
1017   var selectedMonth = 0;
1018   var selectedDay = 0;
1019   var months = ['$months[0]','$months[1]','$months[2]','$months[3]','$months[4]','$months[5]','$months[6]','$months[7]','$months[8]','$months[9]','$months[10]','$months[11]'];
1020   var wdays = ['$wdays[0]', '$wdays[1]', '$wdays[2]', '$wdays[3]', '$wdays[4]', '$wdays[5]', '$wdays[6]'];
1021   var tmonths = ['$tmonths[0]','$tmonths[1]','$tmonths[2]','$tmonths[3]','$tmonths[4]','$tmonths[5]','$tmonths[6]','$tmonths[7]','$tmonths[8]','$tmonths[9]','$tmonths[10]','$tmonths[11]','$tmonths[12]'];
1022   var dateField = null;
1023   function getProperty(p_property){
1024     var p_elm = calendarId;
1025     var elm = null;
1026     if(typeof(p_elm) == 'object'){
1027       elm = p_elm;
1028     } else {
1029       elm = document.getElementById(p_elm);
1030     }
1031     if (elm != null){
1032       if(elm.style){
1033         elm = elm.style;
1034         if(elm[p_property]){
1035           return elm[p_property];
1036         } else {
1037           return null;
1038         }
1039       } else {
1040         return null;
1041       }
1042     }
1043   }
1044   function setElementProperty(p_property, p_value, p_elmId){
1045     var p_elm = p_elmId;
1046     var elm = null;
1047     if(typeof(p_elm) == 'object'){
1048       elm = p_elm;
1049     } else {
1050       elm = document.getElementById(p_elm);
1051     }
1052     if((elm != null) && (elm.style != null)){
1053       elm = elm.style;
1054       elm[ p_property ] = p_value;
1055     }
1056   }
1057   function setProperty(p_property, p_value) {
1058     setElementProperty(p_property, p_value, calendarId);
1059   }
1060   function getDaysInMonth(year, month) {
1061 ";
1062         if ($date_system == 1)
1063                 $js .= "
1064     return [31,31,31,31,31,31,30,30,30,30,30,(((((((year - ((year > 0) ? 474 : 473)) % 2820) + 474) + 38) * 682) % 2816) < 682 ? 30 : 29)][month-1];
1065 ";
1066         elseif ($date_system == 2)
1067                 $js .= "
1068     return [30,29,30,29,30,29,30,29,30,29,30,(((((11 * year) + 14) % 30) < 11) ? 30 : 29)][month-1];
1069 ";
1070         else
1071                 $js .= "
1072     return [31,((!(year % 4 ) && ( (year % 100 ) || !( year % 400 ) ))?29:28),31,30,31,30,31,31,30,31,30,31][month-1];
1073 ";
1074         $js .= "
1075   }
1076   function getDayOfWeek(year, month, day) {
1077 ";
1078         if ($date_system == 1 || $date_system == 2)
1079         {
1080                 $js .= "
1081         function mod(a, b)
1082         {
1083             return a - (b * Math.floor(a / b));
1084         }
1085         function jwday(j)
1086         {
1087             return mod(Math.floor((j + 1.5)), 7);
1088         }
1089 ";
1090         if ($date_system == 1)
1091                 $js .= "
1092     var epbase, epyear, t;
1093     epbase = year - ((year >= 0) ? 474 : 473);
1094     epyear = 474 + mod(epbase, 2820);
1095     t = day + ((month <= 7) ? ((month - 1) * 31) : (((month - 1) * 30) + 6)) +
1096       Math.floor(((epyear * 682) - 110) / 2816) + (epyear - 1) * 365 +
1097       Math.floor(epbase / 2820) * 1029983 + (1948320.5 - 1);
1098 ";
1099         elseif ($date_system == 2)
1100                 $js .= "
1101         var t;
1102         t = Math.floor((11 * year + 3) / 30) + 354 * year + 30 * month -
1103           Math.floor((month - 1) / 2) + day + 1948440 - 385;
1104 ";
1105         $js .= "
1106     return jwday(t);
1107 ";
1108         }
1109         else
1110                 $js .= "
1111     var date = new Date(year,month-1,day)
1112     return date.getDay();
1113 ";
1114         $js .= "
1115   }
1116   this.clearDate = clearDate;
1117   function clearDate() {
1118     dateField.value = '';
1119     hide();
1120   }
1121   this.getWeek = getWeek;
1122   function getWeek(year, month, day) {
1123 ";
1124         if ($how == 0 || $how == 3)
1125                 $js .= "  day++;";
1126         $js .= "
1127     var date = new Date(year,month-1,day);
1128     var D = date.getDay();
1129     if(D == 0) D = 7;
1130     date.setDate(date.getDate() + (4 - D));
1131     var YN = date.getFullYear();
1132     var ZBDoCY = Math.floor((date.getTime() - new Date(YN, 0, 1, -6)) / 86400000);
1133     var WN = 1 + Math.floor(ZBDoCY / 7);
1134     return WN;
1135   }
1136   this.setDate = setDate;
1137   function setDate(year, month, day) {
1138     if (dateField){
1139 ";
1140         if ($how < 3)
1141                 $js .= "
1142       if (month < 10) {month = '0' + month;}
1143       if (day < 10) {day = '0' + day;}
1144 ";
1145         else
1146                 $js .= "
1147       month = tmonths[month];
1148 ";
1149         if ($how == 0 || $how == 3)
1150                 $js .= "
1151       var dateString = month+'$sep'+day+'$sep'+year;
1152 ";
1153         elseif ($how == 1 || $how == 4)
1154                 $js .= "
1155       var dateString = day+'$sep'+month+'$sep'+year;
1156 ";
1157         elseif ($how == 2 || $how == 5)
1158                 $js .= "
1159       var dateString = year+'$sep'+month+'$sep'+day;
1160 ";
1161         $js .= "
1162       dateField.value = dateString;
1163           setFocus(dateField.name);
1164         if(dateField.getAttribute('aspect')=='cdate')
1165       setElementProperty('color', (dateField.value==user.date ? 'black':'red'), dateField);
1166           if (dateField.className=='searchbox')
1167                 dateField.onblur();
1168       hide();
1169     }
1170     return;
1171   }
1172   this.changeMonth = changeMonth;
1173   function changeMonth(change) {
1174     currentMonth += change;
1175     currentDay = 0;
1176     if(currentMonth > 12) {
1177       currentMonth = 1;
1178       currentYear++;
1179     } else if(currentMonth < 1) {
1180       currentMonth = 12;
1181       currentYear--;
1182     }
1183     calendar = document.getElementById(calendarId);
1184     calendar.innerHTML = calendarDrawTable();
1185   }
1186   this.changeYear = changeYear;
1187   function changeYear(change) {
1188     currentYear += change;
1189     currentDay = 0;
1190     calendar = document.getElementById(calendarId);
1191     calendar.innerHTML = calendarDrawTable();
1192   }
1193   function getCurrentYear() {
1194     var year = new Date().getYear();
1195     if(year < 1900) year += 1900;
1196     return year;
1197   }
1198   function getCurrentMonth() {
1199     return new Date().getMonth() + 1;
1200   }
1201   function getCurrentDay() {
1202     return new Date().getDate();
1203   }
1204   function calendarDrawTable() {
1205     var dayOfMonth = 1;
1206     var wstart = $wstart;
1207     var wno = '&nbsp;$wno&nbsp;';
1208     var validDay = 0;
1209     var startDayOfWeek = getDayOfWeek(currentYear, currentMonth, dayOfMonth);
1210     var daysInMonth = getDaysInMonth(currentYear, currentMonth);
1211     var css_class = null; //CSS class for each day
1212     var table = \"<table cellspacing='0' cellpadding='0' border='0'>\";
1213     table += \"<tr class='header'>\";
1214     table += \"  <td colspan='2' class='previous'><a href='javascript:changeCCMonth(-1);'>&lt;</a><br><a href='javascript:changeCCYear(-1);'>&laquo;</a></td>\";
1215     table += \"  <td colspan='4' class='title'>\" + months[currentMonth-1] + \"<br>\" + currentYear + \"</td>\";
1216     table += \"  <td colspan='2' class='next'><a href='javascript:changeCCMonth(1);'>&gt;</a><br><a href='javascript:changeCCYear(1);'>&raquo;</a></td>\";
1217     table += \"</tr>\";
1218     table += \"<tr>\";
1219     table += \"<th class='weekno'>\"+wno+\"</th>\";
1220     for (var n=0; n<7; n++)
1221         table += \"<th>\" + wdays[(wstart+n)%7]+\"</th>\";
1222     table += \"</tr>\";
1223     for(var week=0; week < 6; week++) {
1224       table += \"<tr>\";
1225       for(var n=0; n < 7; n++) {
1226         dayOfWeek = (wstart+n)%7;
1227         if(week == 0 && startDayOfWeek == dayOfWeek) {
1228           validDay = 1;
1229         } else if (validDay == 1 && dayOfMonth > daysInMonth) {
1230           validDay = 0;
1231         }
1232         if (n==0)
1233         {
1234                 if (dayOfMonth > daysInMonth)
1235                         table += \"<td class='empty'>&nbsp;</td>\";
1236                 else
1237                         table += \"<td class='weekno'>\"+getWeek(currentYear, currentMonth, dayOfMonth)+\"</td>\";
1238         }
1239         if(validDay) {
1240           if (dayOfMonth == selectedDay && currentYear == selectedYear && currentMonth == selectedMonth) {
1241             css_class = 'current';
1242 ";
1243         if ($date_system == 1 || $date_system == 2 || $date_system == 3)
1244                 $js .= "
1245           } else if (dayOfWeek == 5) {
1246 ";
1247         else
1248                 $js .= "
1249           } else if (dayOfWeek == 0 || dayOfWeek == 6) {
1250 ";
1251                 $js .= "
1252             css_class = 'weekend';
1253           } else {
1254             css_class = 'weekday';
1255           }
1256           table += \"<td><a class='\"+css_class+\"' href=\\\"javascript:setCCDate(\"+currentYear+\",\"+currentMonth+\",\"+dayOfMonth+\")\\\">\"+dayOfMonth+\"</a></td>\";
1257           dayOfMonth++;
1258         } else {
1259           table += \"<td class='empty'>&nbsp;</td>\";
1260         }
1261       }
1262       table += \"</tr>\";
1263     }
1264     table += \"<tr class='header'><th colspan='8' style='padding: 3px;text-align:center;'><a href='javascript:hideCC();'>$back</a></td></tr>\";
1265     table += \"</table>\";
1266     return table;
1267   }
1268   this.show = show;
1269   function show(field) {
1270     can_hide = 0;
1271     if (dateField == field) {
1272       return;
1273     } else {
1274       dateField = field;
1275     }
1276     if(dateField) {
1277       try {
1278         var dateString = new String(dateField.value);
1279         var dateParts = dateString.split('$sep');
1280 ";
1281         if ($how == 0)
1282                 $js .= "
1283         selectedMonth = parseInt(dateParts[0],10);
1284         selectedDay = parseInt(dateParts[1],10);
1285         selectedYear = parseInt(dateParts[2],10);
1286 ";
1287         elseif ($how == 1)
1288                 $js .= "
1289         selectedDay = parseInt(dateParts[0],10);
1290         selectedMonth = parseInt(dateParts[1],10);
1291         selectedYear = parseInt(dateParts[2],10);
1292 ";
1293         elseif ($how == 2)
1294                 $js .= "
1295         selectedYear = parseInt(dateParts[0],10);
1296         selectedMonth = parseInt(dateParts[1],10);
1297         selectedDay = parseInt(dateParts[2],10);
1298 ";
1299         elseif ($how == 3)
1300                 $js .= "
1301         selectedDay = parseInt(dateParts[1],10);
1302         selectedMonth = parseInt(tmonths.indexOf(dateParts[0]),10);
1303         selectedYear = parseInt(dateParts[2],10);
1304 ";
1305         elseif ($how == 4)
1306                 $js .= "
1307         selectedDay = parseInt(dateParts[0],10);
1308         selectedMonth = parseInt(tmonths.indexOf(dateParts[1]),10);
1309         selectedYear = parseInt(dateParts[2],10);
1310 ";
1311         else
1312                 $js .= "
1313         selectedYear = parseInt(dateParts[0],10);
1314         selectedMonth = parseInt(tmonths.indexOf(dateParts[1]),10);
1315         selectedDay = parseInt(dateParts[2],10);
1316 ";
1317         $js .= "
1318       } catch(e) {}
1319     }
1320     if (!(selectedYear && selectedMonth && selectedDay)) {
1321 ";
1322         if ($date_system == 1 || $date_system == 2)
1323         {
1324                 $js .= "
1325       selectedMonth = $cmon;
1326       selectedDay = $cday;
1327       selectedYear = $cyear;
1328 ";
1329         }
1330         else
1331         {
1332                 $js .= "
1333       selectedMonth = getCurrentMonth();
1334       selectedDay = getCurrentDay();
1335       selectedYear = getCurrentYear();
1336 ";
1337         }
1338         $js .= "
1339     }
1340     currentMonth = selectedMonth;
1341     currentDay = selectedDay;
1342     currentYear = selectedYear;
1343     if(document.getElementById){
1344       calendar = document.getElementById(calendarId);
1345       calendar.innerHTML = calendarDrawTable(currentYear, currentMonth);
1346       var fieldPos = new positionInfo(dateField);
1347       var calendarPos = new positionInfo(calendarId);
1348       var x = fieldPos.getElementLeft();
1349       var y = fieldPos.getElementBottom();
1350       setProperty('left', x + 'px');
1351       setProperty('top', y + 'px');
1352       setProperty('display', 'block');
1353       if (document.all) {
1354         setElementProperty('left', x + 'px', 'CCIframe');
1355         setElementProperty('top', y + 'px', 'CCIframe');
1356         setElementProperty('width', calendarPos.getElementWidth() + 'px', 'CCIframe');
1357         setElementProperty('height', calendarPos.getElementHeight() + 'px', 'CCIframe');
1358         setElementProperty('display', 'block', 'CCIframe');
1359       }
1360     }
1361   }
1362   this.hide = hide;
1363   function hide() {
1364     if(dateField) {
1365       setProperty('display', 'none');
1366       setElementProperty('display', 'none', 'CCIframe');
1367       dateField = null;
1368     }
1369   }
1370   this.visible = visible;
1371   function visible() {
1372     return dateField
1373   }
1374   this.can_hide = can_hide;
1375   var can_hide = 0;
1376 }
1377 var cC = new CC();
1378 function date_picker(textField) {
1379   cC.show(textField);
1380 }
1381 function hideCC() {
1382   if (cC.visible()) {
1383     cC.hide();
1384   }
1385 }
1386 function setCCDate(year, month, day) {
1387   cC.setDate(year, month, day);
1388 }
1389 function changeCCYear(change) {
1390   cC.changeYear(change);
1391 }
1392 function changeCCMonth(change) {
1393   cC.changeMonth(change);
1394 }
1395 document.write(\"<iframe id='CCIframe' src='javascript:false;' frameBorder='0' scrolling='no'></iframe>\");
1396 document.write(\"<div id='CC'></div>\");";
1397
1398      cache_js_file($fpath, $js);
1399     }
1400     add_js_ufile($fpath);
1401
1402  return '';
1403 }
1404
1405 function alert($msg)
1406 {
1407         echo "\n<script type=\"text/javascript\">\n"
1408                 . "<!--\n"
1409                 . "alert('$msg');\n"
1410                 . "-->\n"
1411                 . "</script>\n";
1412 }
1413
1414 if (!function_exists('_vd'))
1415 {
1416         function _vd($mixed, $title = '', $exit = false)
1417         {
1418         $str = (!empty($title) ? ($title .':') : '') .'<pre>';
1419         $str .= print_r($mixed, true); //var_dump($mixed);
1420         $str .= "</pre>\n";
1421                 display_notification('<table><tr><td>'.$str.'</td></tr></table>');
1422         if ($exit)
1423                 exit;
1424         }
1425 }
1426
1427 function _vl($mixed, $title = '', $exit = false)
1428 {
1429         error_log((!empty($title) ? ($title .':') : '') . var_export($mixed, true));
1430         if ($exit)
1431                 exit;
1432 }
1433
1434 function display_backtrace($cond=true, $msg='') {
1435         if ($cond) {
1436                 if ($msg) 
1437                         $str = "<center><span class='headingtext'>$msg</span></center>\n";
1438                 else
1439                         $str = '';
1440                 $str .= get_backtrace(true);
1441                 display_error($str);
1442         }
1443 }
1444
1445 //
1446 // FIXME: $payment_services array will be moved to bank_accounts in 2.4.x
1447 //
1448 if (!isset($payment_services))
1449 {
1450         $payment_services = array(
1451                 'PayPal' => "https://www.paypal.com/xclick?business=<company_email>&item_name=<comment>&amount=<amount>&currency_code=<currency>",
1452         );
1453 }
1454 /*
1455 *       Payment link generation. Options provided during invoice generation:
1456 *       company_email, comment, amount, currency
1457 */
1458 function payment_link($name, $options)
1459 {
1460         global $payment_services;
1461
1462         $link = @$payment_services[$name];
1463
1464         if (!$link) return null;
1465
1466         $patterns = array();
1467         foreach ($options as $id => $option)
1468                 $patterns['<'.$id.'>'] = urlencode($options[$id]);
1469
1470         return strtr($link, $patterns);
1471 }
1472
1473 function trans_editor_link($type, $trans_no)
1474 {
1475         global $path_to_root;
1476
1477         $editor_url = array(
1478                 ST_JOURNAL => "/gl/gl_journal.php?ModifyGL=Yes&trans_no=%d&trans_type=%d",
1479                 ST_BANKPAYMENT => "/gl/gl_bank.php?ModifyPayment=Yes&trans_no=%d&trans_type=%d",
1480                 ST_BANKDEPOSIT => "/gl/gl_bank.php?ModifyDeposit=Yes&trans_no=%d&trans_type=%d",
1481             ST_BANKTRANSFER => "/gl/bank_transfer.php?ModifyTransfer=Yes&trans_no=%d&trans_type=%d",
1482         ST_SALESINVOICE => "/sales/customer_invoice.php?ModifyInvoice=%d",
1483                 ST_CUSTCREDIT => "/sales/credit_note_entry.php?ModifyCredit=%d", // only for free hand credit notes (debtors_trans.order_==0)
1484                 ST_CUSTPAYMENT => "/sales/customer_payments.php?trans_no=%d",
1485                 ST_CUSTDELIVERY => "/sales/customer_delivery.php?ModifyDelivery=%d",
1486 //   16=> Location Transfer,
1487 //   17=> Inventory Adjustment,
1488                 ST_SUPPINVOICE => "/purchasing/supplier_invoice.php?ModifyInvoice=%d",
1489                 ST_SUPPCREDIT =>  "/purchasing/supplier_credit.php?ModifyCredit=%d",
1490 //   21=> Supplier Credit Note,
1491 //   22=> Supplier Payment,
1492 //   25=> Purchase Order Delivery,
1493                 ST_PURCHORDER => "/purchasing/po_entry_items.php?ModifyOrderNumber=%d",
1494 //   28=> Work Order Issue,
1495 //   29=> Work Order Production",
1496                 ST_WORKORDER => "/manufacturing/work_order_entry.php?trans_no=%d",
1497                 ST_SALESORDER => "/sales/sales_order_entry.php?ModifyOrderNumber=%d",
1498                 ST_SALESQUOTE => "/sales/sales_order_entry.php?ModifyQuotationNumber=%d",
1499         //   35=> Cost Update,
1500         );
1501
1502         return !isset($editor_url[$type]) ? '' :
1503                 (is_closed_trans($type, $trans_no) ? set_icon(ICON_CLOSED, _('Closed')) :
1504                         pager_link(_("Edit"), sprintf($editor_url[$type], $trans_no, $type), ICON_EDIT));
1505 }