Changed so document Sales Invoice now shows delivery notes instead of sales order
[fa-stable.git] / reporting / includes / reporting.inc
index c79aee7e33e6f23a9edc1fed1b2f358408571139..e514d769244c531b3eaad204b4d07c290fd0f098 100644 (file)
@@ -1,10 +1,20 @@
 <?php
+/**********************************************************************
+    Copyright (C) FrontAccounting, LLC.
+       Released under the terms of the GNU Affero General Public License,
+       AGPL, as published by the Free Software Foundation, either version 
+       3 of the License, or (at your option) any later version.
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
+    See the License here <http://www.gnu.org/licenses/agpl-3.0.html>.
+***********************************************************************/
 // Link to printing single document with bulk report template file.
 // Ex. label_cell(print_document_link($myrow['order_no'], _("Print")), $type);
 // or display_note(print_document_link($order_no, _("Print this order")));
 // You only need full parameter list for invoices/credit notes
 
-function print_document_link($doc_no, $link_text, $link=true, $type_no)
+function print_document_link($doc_no, $link_text, $link=true, $type_no, $icon=false)
 {
        global $path_to_root;
        include_once($path_to_root . "/includes/types.inc");
@@ -62,14 +72,14 @@ function print_document_link($doc_no, $link_text, $link=true, $type_no)
 //             default: $ar = array();
        }
        
-       return print_link($link_text, $rep, $ar);
+       return print_link($link_text, $rep, $ar, "", $icon);
 }
 //
 //     Universal link to any kind of report.
 //
-function print_link($link_text, $rep, $pars = array(), $dir = '')
+function print_link($link_text, $rep, $pars = array(), $dir = '', $icon=false)
 {
-       global $path_to_root;
+       global $path_to_root, $pdf_debug;
 
        $url = $dir == '' ?  $path_to_root.'/reporting/prn_redirect.php?' : $dir;
 
@@ -78,13 +88,16 @@ function print_link($link_text, $rep, $pars = array(), $dir = '')
        }
        $pars[] = 'REP_ID='.urlencode($rep);
        $url .= implode ('&', $pars);
-       
-       return "<a class='printlink' target='_blank' href='$url'>$link_text</a>";
+       $class = $pdf_debug ? '' : "class='printlink'";
+       $pars = access_string($link_text);
+       if (user_graphic_links() && $icon)
+               $pars[0] = set_icon($icon, $pars[0]);
+       return "<a $class target='_blank' href='$url'$pars[1]>$pars[0]</a>";
 }
 
 function get_first_bank_account()
 {
-       $sql = "SELECT ".TB_PREF."bank_accounts.account_code FROM ".TB_PREF."bank_accounts, ".TB_PREF."company
+       $sql = "SELECT ".TB_PREF."bank_accounts.id FROM ".TB_PREF."bank_accounts, ".TB_PREF."company
                WHERE bank_curr_code=curr_default LIMIT 0, 1";
        $result = db_query($sql);
        $row = db_fetch_row($result);