forked from webERP-team/webERP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PDFPrintLabel.php
358 lines (311 loc) · 13.8 KB
/
PDFPrintLabel.php
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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
<?php
include('includes/session.php');
include('includes/barcodepack/class.code128.php');
$PtsPerMM = 2.83464567; //pdf points per mm (72 dpi / 25.4 mm per inch)
if ((isset($_POST['ShowLabels']) OR isset($_POST['SelectAll']))
AND isset($_POST['StockCategory'])
AND mb_strlen($_POST['StockCategory'])>=1){
$Title = _('Print Labels');
include('includes/header.php');
$SQL = "SELECT prices.stockid,
stockmaster.description,
stockmaster.barcode,
prices.price,
currencies.decimalplaces
FROM stockmaster INNER JOIN stockcategory
ON stockmaster.categoryid=stockcategory.categoryid
INNER JOIN prices
ON stockmaster.stockid=prices.stockid
INNER JOIN currencies
ON prices.currabrev=currencies.currabrev
WHERE stockmaster.categoryid = '" . $_POST['StockCategory'] . "'
AND prices.typeabbrev='" . $_POST['SalesType'] . "'
AND prices.currabrev='" . $_POST['Currency'] . "'
AND prices.startdate<='" . FormatDateForSQL($_POST['EffectiveDate']) . "'
AND (prices.enddate='0000-00-00' OR prices.enddate>'" . FormatDateForSQL($_POST['EffectiveDate']) . "')
AND prices.debtorno=''
ORDER BY prices.currabrev,
stockmaster.categoryid,
stockmaster.stockid,
prices.startdate";
$LabelsResult = DB_query($SQL,'','',false,false);
if (DB_error_no() !=0) {
prnMsg( _('The Price Labels could not be retrieved by the SQL because'). ' - ' . DB_error_msg(), 'error');
echo '<br /><a href="' .$RootPath .'/index.php">' . _('Back to the menu'). '</a>';
if ($debug==1){
prnMsg(_('For debugging purposes the SQL used was:') . $SQL,'error');
}
include('includes/footer.php');
exit;
}
if (DB_num_rows($LabelsResult)==0){
prnMsg(_('There were no price labels to print out for the category specified'),'warn');
echo '<br /><a href="'.htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '">' . _('Back') . '</a>';
include('includes/footer.php');
exit;
}
echo '<form action="' . htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '" method="post">';
echo '<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />';
echo '<table class="selection">
<tr>
<th>' . _('Item Code') . '</th>
<th>' . _('Item Description') . '</th>
<th>' . _('Price') . '</th>
<th>' . _('Print') . ' ?</th>
</tr>
<tr>
<th colspan="4"><input type="submit" name="SelectAll" value="' . _('Select All Labels') . '" /><input type="checkbox" name="CheckAll" ';
if (isset($_POST['CheckAll'])){
echo 'checked="checked" ';
}
echo 'onchange="ReloadForm(SelectAll)" /></td>
</tr>';
$i=0;
while ($LabelRow = DB_fetch_array($LabelsResult)){
echo '<tr>
<td>' . $LabelRow['stockid'] . '</td>
<td>' . $LabelRow['description'] . '</td>
<td class="number">' . locale_number_format($LabelRow['price'],$LabelRow['decimalplaces']) . '</td>
<td>';
if (isset($_POST['SelectAll']) AND isset($_POST['CheckAll'])) {
echo '<input type="checkbox" checked="checked" name="PrintLabel' . $i .'" />';
} else {
echo '<input type="checkbox" name="PrintLabel' . $i .'" />';
}
echo '</td>
</tr>';
echo '<input type="hidden" name="StockID' . $i . '" value="' . $LabelRow['stockid'] . '" />
<input type="hidden" name="Description' . $i . '" value="' . $LabelRow['description'] . '" />
<input type="hidden" name="Barcode' . $i . '" value="' . $LabelRow['barcode'] . '" />
<input type="hidden" name="Price' . $i . '" value="' . locale_number_format($LabelRow['price'],$LabelRow['decimalplaces']) . '" />';
$i++;
}
$i--;
echo '</table>
<input type="hidden" name="NoOfLabels" value="' . $i . '" />
<input type="hidden" name="LabelID" value="' . $_POST['LabelID'] . '" />
<input type="hidden" name="StockCategory" value="' . $_POST['StockCategory'] . '" />
<input type="hidden" name="SalesType" value="' . $_POST['SalesType'] . '" />
<input type="hidden" name="Currency" value="' . $_POST['Currency'] . '" />
<input type="hidden" name="EffectiveDate" value="' . $_POST['EffectiveDate'] . '" />
<input type="hidden" name="LabelsPerItem" value="' . $_POST['LabelsPerItem'] . '" />
<br />
<div class="centre">
<input type="submit" name="PrintLabels" value="'. _('Print Labels'). '" />
</div>
<br />
<div class="centre">
<a href="'. $RootPath . '/Labels.php">' . _('Label Template Maintenance'). '</a>
</div>
</form>';
include('includes/footer.php');
exit;
}
$NoOfLabels = 0;
if (isset($_POST['PrintLabels']) AND isset($_POST['NoOfLabels']) AND $_POST['NoOfLabels']>0){
for ($i=0;$i < $_POST['NoOfLabels'];$i++){
if (isset($_POST['PrintLabel'.$i])){
$NoOfLabels++;
}
}
if ($NoOfLabels ==0){
prnMsg(_('There are no labels selected to print'),'info');
}
}
if (isset($_POST['PrintLabels']) AND $NoOfLabels>0) {
$result = DB_query("SELECT description,
pagewidth*" . $PtsPerMM . " as page_width,
pageheight*" . $PtsPerMM . " as page_height,
width*" . $PtsPerMM . " as label_width,
height*" . $PtsPerMM . " as label_height,
rowheight*" . $PtsPerMM . " as label_rowheight,
columnwidth*" . $PtsPerMM . " as label_columnwidth,
topmargin*" . $PtsPerMM . " as label_topmargin,
leftmargin*" . $PtsPerMM . " as label_leftmargin
FROM labels
WHERE labelid='" . $_POST['LabelID'] . "'");
$LabelDimensions = DB_fetch_array($result);
$result = DB_query("SELECT fieldvalue,
vpos,
hpos,
fontsize,
barcode
FROM labelfields
WHERE labelid = '" . $_POST['LabelID'] . "'");
$LabelFields = array();
$i=0;
while ($LabelFieldRow = DB_fetch_array($result)){
if ($LabelFieldRow['fieldvalue'] == 'itemcode'){
$LabelFields[$i]['FieldValue'] = 'stockid';
} elseif ($LabelFieldRow['fieldvalue'] == 'itemdescription'){
$LabelFields[$i]['FieldValue'] = 'description';
} else {
$LabelFields[$i]['FieldValue'] = $LabelFieldRow['fieldvalue'];
}
$LabelFields[$i]['VPos'] = $LabelFieldRow['vpos']*$PtsPerMM;
$LabelFields[$i]['HPos'] = $LabelFieldRow['hpos']*$PtsPerMM;
$LabelFields[$i]['FontSize'] = $LabelFieldRow['fontsize'];
$LabelFields[$i]['Barcode'] = $LabelFieldRow['barcode'];
$i++;
}
$PaperSize = 'Custom'; // so PDF starter wont default the DocumentPaper
$DocumentPaper = array($LabelDimensions['page_width'],$LabelDimensions['page_height']);
include('includes/PDFStarter.php');
$Top_Margin = $LabelDimensions['label_topmargin'];
$Left_Margin = $LabelDimensions['label_leftmargin'];
$Page_Height = $LabelDimensions['page_height'];
$Page_Width = $LabelDimensions['page_width'];
$Right_Margin =0;
$Bottom_Margin =0;
$pdf->addInfo('Title', $LabelDimensions['description'] . ' ' . _('Price Labels') );
$pdf->addInfo('Subject', $LabelDimensions['description'] . ' ' . _('Price Labels') );
$pdf->setPrintHeader(false);
$pdf->setPrintFooter(false);
$pdf->SetDefaultMonospacedFont(PDF_FONT_MONOSPACED);
$pdf->setImageScale(PDF_IMAGE_SCALE_RATIO);
$pdf->setPrintHeader(false);
$pdf->setPrintFooter(false);
$PageNumber=1;
//go down first then accross
$YPos = $Page_Height - $Top_Margin; //top of current label
$XPos = $Left_Margin; // left of current label
$TotalLabels = $NoOfLabels * $_POST['LabelsPerItem'];
$LabelsPrinted = 0;
for ($i=0;$i < $_POST['NoOfLabels'];$i++){
if (isset($_POST['PrintLabel'.$i])){
$NoOfLabels--;
for ($LabelNumber=0; $LabelNumber < $_POST['LabelsPerItem'];$LabelNumber++){
foreach ($LabelFields as $Field){
//print_r($Field);
if ($Field['FieldValue']== 'price'){
$Value = $_POST['Price' . $i] . ' '. $_POST['Currency'];
} elseif ($Field['FieldValue']== 'stockid'){
$Value = $_POST['StockID' . $i];
} elseif ($Field['FieldValue']== 'description'){
$Value = $_POST['Description' . $i];
} elseif ($Field['FieldValue']== 'barcode'){
$Value = $_POST['Barcode' . $i];
}
if ($Field['FieldValue'] == 'price'){ //need to format for the number of decimal places
$LeftOvers = $pdf->addTextWrap($XPos+$Field['HPos'],$YPos-$LabelDimensions['label_height']+$Field['VPos'],$LabelDimensions['label_width']-$Field['HPos'],$Field['FontSize'],$Value);
}elseif ($Field['FieldValue'] == 'logo'){
$pdf->addJpegFromFile($_SESSION['LogoFile'],$XPos+$Field['HPos'],$YPos-$LabelDimensions['label_height']+$Field['VPos'],'', $Field['FontSize']);
}elseif($Field['Barcode']==1) {
$BarcodeImage = new code128(str_replace('_','',$Value));
ob_start();
imagepng(imagepng($BarcodeImage->draw()));
$Image_String = ob_get_contents();
ob_end_clean();
$pdf->addJpegFromFile('@' . $Image_String,$XPos+$Field['HPos'],$YPos-$LabelDimensions['label_height']+$Field['VPos'],'', $Field['FontSize']);
} else {
$LeftOvers = $pdf->addTextWrap($XPos+$Field['HPos'],$YPos-$LabelDimensions['label_height']+$Field['VPos'],$LabelDimensions['label_width']-$Field['HPos'],$Field['FontSize'],$Value);
}
} // end loop through label fields
$LabelsPrinted++;
if ($LabelsPrinted < $TotalLabels){ // if there is another label to print
//setup $YPos and $XPos for the next label
if (($YPos - $LabelDimensions['label_rowheight']) < $LabelDimensions['label_height']){
/* not enough space below the above label to print a new label
* so the above was the last label in the column
* need to start either a new column or new page
*/
if (($Page_Width - $XPos - $LabelDimensions['label_columnwidth']) < $LabelDimensions['label_width']) {
/* Not enough space to start a new column so we are into a new page
*/
$pdf->newPage();
$PageNumber++;
$YPos = $Page_Height - $Top_Margin; //top of next label
$XPos = $Left_Margin; // left of next label
} else {
/* There is enough space for another column */
$YPos = $Page_Height - $Top_Margin; //back to the top of next label column
$XPos += $LabelDimensions['label_columnwidth']; // left of next label
}
} else {
/* There is space below to print a label
*/
$YPos -= $LabelDimensions['label_rowheight']; //Top of next label
}
}//end if there is another label to print
}
} //this label is set to print
} //loop through labels selected to print
$FileName=$_SESSION['DatabaseName']. '_' . _('Price_Labels') . '_' . date('Y-m-d').'.pdf';
ob_clean();
$pdf->OutputI($FileName);
$pdf->__destruct();
} else { /*The option to print PDF was not hit */
$Title= _('Price Labels');
include('includes/header.php');
echo '<p class="page_title_text"><img src="' . $RootPath . '/css/' . $Theme . '/images/customer.png" title="' . _('Price Labels') . '" alt="" />
' . ' ' . _('Print Price Labels') . '</p>';
if (!function_exists('gd_info')) {
prnMsg(_('The GD module for PHP is required to print barcode labels. Your PHP installation is not capable currently. You will most likely experience problems with this script until the GD module is enabled.'),'error');
}
if (!isset($_POST['StockCategory'])) {
/*if $StockCategory is not set then show a form to allow input */
echo '<form action="' . htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '" method="post">
<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />
<table class="selection">
<tr>
<td>' . _('Label to print') . ':</td>
<td><select required="required" autofocus="autofocus" name="LabelID">';
$LabelResult = DB_query("SELECT labelid, description FROM labels");
while ($LabelRow = DB_fetch_array($LabelResult)){
echo '<option value="' . $LabelRow['labelid'] . '">' . $LabelRow['description'] . '</option>';
}
echo '</select></td>
</tr>
<tr>
<td>' . _('For Stock Category') .':</td>
<td><select name="StockCategory">';
$CatResult= DB_query("SELECT categoryid, categorydescription FROM stockcategory ORDER BY categorydescription");
while ($myrow = DB_fetch_array($CatResult)){
echo '<option value="' . $myrow['categoryid'] . '">' . $myrow['categorydescription'] . '</option>';
}
echo '</select></td></tr>';
echo '<tr><td>' . _('For Sales Type/Price List').':</td>
<td><select name="SalesType">';
$sql = "SELECT sales_type, typeabbrev FROM salestypes";
$SalesTypesResult=DB_query($sql);
while ($myrow=DB_fetch_array($SalesTypesResult)){
if ($_SESSION['DefaultPriceList']==$myrow['typeabbrev']){
echo '<option selected="selected" value="' . $myrow['typeabbrev'] . '">' . $myrow['sales_type'] . '</option>';
} else {
echo '<option value="' . $myrow['typeabbrev'] . '">' . $myrow['sales_type'] . '</option>';
}
}
echo '</select></td></tr>';
echo '<tr><td>' . _('For Currency').':</td>
<td><select name="Currency">';
$sql = "SELECT currabrev, country, currency FROM currencies";
$CurrenciesResult=DB_query($sql);
while ($myrow=DB_fetch_array($CurrenciesResult)){
if ($_SESSION['CompanyRecord']['currencydefault']==$myrow['currabrev']){
echo '<option selected="selected" value="' . $myrow['currabrev'] . '">' . $myrow['country'] . ' - ' .$myrow['currency'] . '</option>';
} else {
echo '<option value="' . $myrow['currabrev'] . '">' . $myrow['country'] . ' - ' .$myrow['currency'] . '</option>';
}
}
echo '</select></td>
</tr>
<tr>
<td>' . _('Effective As At') . ':</td>
<td><input type="text" maxlength="10" size="11" class="date" name="EffectiveDate" value="' . Date($_SESSION['DefaultDateFormat']) . '" />';
echo '</td></tr>';
echo'<tr><td>' . _('Number of labels per item') . ':</td>
<td><input type="text" class="number" name="LabelsPerItem" size="3" value="1" /></tr>';
echo '</table>
<br />
<div class="centre">
<input type="submit" name="ShowLabels" value="'. _('Show Labels'). '" />
</div>
<br />
<div class="centre">
<a href="'. $RootPath . '/Labels.php">' . _('Label Template Maintenance'). '</a>
</div>
</form>';
}
include('includes/footer.php');
} /*end of else not PrintPDF */
?>