forked from notrinos/FrontHrm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreporting.inc
More file actions
197 lines (184 loc) · 5.98 KB
/
reporting.inc
File metadata and controls
197 lines (184 loc) · 5.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
<?php
/**********************************************************************
Copyright (C) FrontAccounting, LLC.
Released under the terms of the GNU General Public License, GPL,
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/gpl-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,
$icon=false, $class='printlink', $id='', $email=0, $extra=0)
{
global $path_to_root;
include_once($path_to_root . "/includes/types.inc");
$url = $path_to_root.'/reporting/prn_redirect.php?';
$def_orientation = (user_def_print_orientation() == 1 ? 1 : 0);
switch ($type_no)
{
case ST_SALESQUOTE :
$rep = 111;
// from, to, currency, email, comments, orientation
$ar = array(
'PARAM_0' => $doc_no,
'PARAM_1' => $doc_no,
'PARAM_2' => '',
'PARAM_3' => $email,
'PARAM_4' => '',
'PARAM_5' => $def_orientation);
break;
case ST_SALESORDER :
$rep = 109;
// from, to, currency, email, quote, comments, orientation
$ar = array(
'PARAM_0' => $doc_no,
'PARAM_1' => $doc_no,
'PARAM_2' => '',
'PARAM_3' => $email,
'PARAM_4' => 0,
'PARAM_5' => '',
'PARAM_6' => $def_orientation);
break;
case ST_CUSTDELIVERY :
$rep = 110;
// from, to, email, packing slip, comments, orientation
$ar = array(
'PARAM_0' => $doc_no,
'PARAM_1' => $doc_no,
'PARAM_2' => $email,
'PARAM_3' => $extra,
'PARAM_4' => '',
'PARAM_5' => $def_orientation);
break;
case ST_SALESINVOICE : // Sales Invoice
case ST_CUSTCREDIT : // Customer Credit Note
$rep = $type_no==ST_CUSTCREDIT ? 113 : 107;
// from, to, currency, email, paylink, comments, orientation
$ar = array(
'PARAM_0' => $doc_no,
'PARAM_1' => $doc_no,
'PARAM_2' => '',
'PARAM_3' => $email,
'PARAM_4' => '',
'PARAM_5' => '',
'PARAM_6' => $rep == 107 ? '' : $def_orientation);
if ($rep == 107)
$ar['PARAM_7'] = $def_orientation;
break;
case ST_PURCHORDER :
$rep = 209;
// from, to, currency, email, comments, orientation
$ar = array(
'PARAM_0' => $doc_no,
'PARAM_1' => $doc_no,
'PARAM_2' => '',
'PARAM_3' => $email,
'PARAM_4' => '',
'PARAM_5' => $def_orientation);
break;
case ST_CUSTPAYMENT :
$rep = 112;
// from, to, currency, comments, orientation
$ar = array(
'PARAM_0' => $doc_no,
'PARAM_1' => $doc_no,
'PARAM_2' => '',
'PARAM_3' => '',
'PARAM_4' => $def_orientation);
break;
case ST_SUPPAYMENT :
$rep = 210;
// from, to, currency, email, comments, orientation
$ar = array(
'PARAM_0' => $doc_no,
'PARAM_1' => $doc_no,
'PARAM_2' => '',
'PARAM_3' => $email,
'PARAM_4' => '',
'PARAM_5' => $def_orientation);
break;
case ST_WORKORDER :
$rep = 409;
// from, to, email, comments, orientation
$ar = array(
'PARAM_0' => $doc_no,
'PARAM_1' => $doc_no,
'PARAM_2' => $email,
'PARAM_3' => '',
'PARAM_4' => $def_orientation);
break;
case ST_PAYSLIP :
$rep = 889;
// from, to, email, comments, orientation
$ar = array(
'PARAM_0' => $doc_no,
'PARAM_1' => $def_orientation);
break;
default:
return null;
}
return print_link($link_text, $rep, $ar, "", $icon, $class, $id);
}
//
// Universal link to any kind of report.
//
function print_link($link_text, $rep, $pars = array(), $dir = '',
$icon=false, $class='printlink', $id='')
{
global $path_to_root, $SysPrefs;
$url = $dir == '' ? $path_to_root.'/reporting/prn_redirect.php?' : $dir;
$id = default_focus($id);
foreach($pars as $par => $val) {
$pars[$par] = "$par=".urlencode($val);
}
$pars[] = 'REP_ID='.urlencode($rep);
$url .= implode ('&', $pars);
if ($class != '')
$class = $SysPrefs->pdf_debug ? '' : " class='$class'";
if ($id != '')
$id = " id='$id'";
$pars = access_string($link_text);
if (user_graphic_links() && $icon)
$pars[0] = set_icon($icon, $pars[0]);
return "<a target='_blank' href='$url'$id$class $pars[1]>$pars[0]</a>";
}
/*
// Purpose: Function to parse a string into parameters
// Release Date: 2014-12-26
// Author: ApMuthu <apmuthu@usa.net>
// Usage:
$str = "PPFrt#2000 CID#6378465 TaxEx#2345-038 abcde ertrgdert COD#4253 jdegtd PIN#6473654";
$p = parse_notes_params($str);
echo print_r($p, true);
An example of usage will be in the reporting/rep110.php file at near the end just before the last $rep-Font(); statement:
$notes_params = parse_notes_params($branch['notes']);
if ($packing_slip == 0 && array_key_exists('CID', $notes_params)) {
$rep->NewLine(1);
$rep->TextCol(1, 7, "Old Customer# : " . $notes_params['CID'], - 2);
}
*/
function parse_notes_params($str, $sep=" ", $delim="#") {
$str_params = explode($sep, $str);
$param_array=Array('notes' => '');
foreach ($str_params AS $str_param) {
$param_set=explode($delim, trim($str_param));
$key = (array_key_exists(0, $param_set) ? trim($param_set[0]) : '');
$val = (array_key_exists(1, $param_set) ? trim($param_set[1]) : '');
if (strlen($key) > 0 && strlen($val) > 0) {
$param_array[$key]=$val;
} else {
// stop at first missing parameter set
// break;
// Collect the rest into notes
$param_array['notes'] .= (" " . $str_param);
}
}
$param_array['notes'] = trim($param_array['notes']);
return $param_array;
}