X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Fincludes%2Freporting.inc;h=7fa0c122ad1d9754951e5be3be79da37f35d6f5b;hb=11e485e4a7c5f12c9424713b7330815a9cc5e4ae;hp=a5dd5f2e58f8271c2d7640fad96f204f05c3029d;hpb=061f4eff6493a6cca071338156225401ae849d72;p=fa-stable.git diff --git a/reporting/includes/reporting.inc b/reporting/includes/reporting.inc index a5dd5f2e..7fa0c122 100644 --- a/reporting/includes/reporting.inc +++ b/reporting/includes/reporting.inc @@ -15,7 +15,7 @@ // You only need full parameter list for invoices/credit notes function print_document_link($doc_no, $link_text, $link=true, $type_no, - $icon=false, $class='', $id='') + $icon=false, $class='printlink', $id='', $email=0) { global $path_to_root; include_once($path_to_root . "/includes/types.inc"); @@ -24,6 +24,17 @@ function print_document_link($doc_no, $link_text, $link=true, $type_no, switch ($type_no) { + case systypes::sales_quotation() : + $rep = 111; + // from, to, currency, bank acc, email, quote, comments + $ar = array( + 'PARAM_0' => $doc_no, + 'PARAM_1' => $doc_no, + 'PARAM_2' => "", + 'PARAM_3' => get_first_bank_account(), + 'PARAM_4' => $email, + 'PARAM_5' => ""); + break; case systypes::sales_order() : $rep = 109; // from, to, currency, bank acc, email, quote, comments @@ -32,7 +43,7 @@ function print_document_link($doc_no, $link_text, $link=true, $type_no, 'PARAM_1' => $doc_no, 'PARAM_2' => "", 'PARAM_3' => get_first_bank_account(), - 'PARAM_4' => 0, + 'PARAM_4' => $email, 'PARAM_5' => 0, 'PARAM_6' => ""); break; @@ -42,7 +53,7 @@ function print_document_link($doc_no, $link_text, $link=true, $type_no, $ar = array( 'PARAM_0' => $doc_no, 'PARAM_1' => $doc_no, - 'PARAM_2' => 0, + 'PARAM_2' => $email, 'PARAM_3' => ""); break; case 10 : // Sales Invoice @@ -54,7 +65,7 @@ function print_document_link($doc_no, $link_text, $link=true, $type_no, 'PARAM_1' => $doc_no, 'PARAM_2' => "", 'PARAM_3' => get_first_bank_account(), - 'PARAM_4' => 0, + 'PARAM_4' => $email, 'PARAM_5' => "", 'PARAM_6' => "", 'PARAM_7' => $type_no); @@ -67,7 +78,7 @@ function print_document_link($doc_no, $link_text, $link=true, $type_no, 'PARAM_1' => $doc_no, 'PARAM_2' => "", 'PARAM_3' => get_first_bank_account(), - 'PARAM_4' => 0, + 'PARAM_4' => $email, 'PARAM_5' => ""); break; // default: $ar = array(); @@ -79,7 +90,7 @@ function print_document_link($doc_no, $link_text, $link=true, $type_no, // Universal link to any kind of report. // function print_link($link_text, $rep, $pars = array(), $dir = '', - $icon=false, $class='', $id='') + $icon=false, $class='printlink', $id='') { global $path_to_root, $pdf_debug;