[0004216] Print Work Orders: database error fixed when voided WO is in selected range.
[fa-stable.git] / reporting / rep409.php
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 $page_security = $_POST['PARAM_0'] == $_POST['PARAM_1'] ?
13         'SA_MANUFTRANSVIEW' : 'SA_MANUFBULKREP';
14 // ----------------------------------------------------------------
15 // Title:       Work Orders
16 $path_to_root="..";
17
18 include_once($path_to_root . "/includes/session.inc");
19 include_once($path_to_root . "/includes/date_functions.inc");
20 include_once($path_to_root . "/includes/data_checks.inc");
21 include_once($path_to_root . "/manufacturing/includes/manufacturing_db.inc");
22
23 //----------------------------------------------------------------------------------------------------
24
25 print_workorders();
26
27 //----------------------------------------------------------------------------------------------------
28
29 function print_workorders()
30 {
31         global $path_to_root, $dflt_lang;
32
33         include_once($path_to_root . "/reporting/includes/pdf_report.inc");
34
35         $from = $_POST['PARAM_0'];
36         $to = $_POST['PARAM_1'];
37         $email = $_POST['PARAM_2'];
38         $comments = $_POST['PARAM_3'];
39         $orientation = $_POST['PARAM_4'];
40
41         if (!$from || !$to) return;
42
43         $orientation = ($orientation ? 'L' : 'P');
44         $fno = explode("-", $from);
45         $tno = explode("-", $to);
46         $from = min($fno[0], $tno[0]);
47         $to = max($fno[0], $tno[0]);
48
49         $cols = array(4, 60, 190, 255, 320, 385, 450, 515);
50
51         // $headers in doctext.inc
52         $aligns = array('left', 'left', 'left', 'left', 'right', 'right', 'right');
53
54         $params = array('comments' => $comments);
55
56         $cur = get_company_Pref('curr_default');
57
58         if ($email == 0)
59                 $rep = new FrontReport(_('WORK ORDER'), "WorkOrderBulk", user_pagesize(), 9, $orientation);
60         if ($orientation == 'L')
61         recalculate_cols($cols);
62
63         for ($i = $from; $i <= $to; $i++)
64         {
65                 $myrow = get_work_order($i, true);
66                 if ($myrow === false)
67                         continue;
68                 if ($email == 1)
69                 {
70                         $rep = new FrontReport("", "", user_pagesize(), 9, $orientation);
71                         $rep->title = _('WORK ORDER');
72                         $rep->filename = "WorkOrder" . $myrow['wo_ref'] . ".pdf";
73                 }
74                 $rep->currency = $cur;
75                 $rep->Font();
76                 $rep->Info($params, $cols, null, $aligns);
77
78                 $contact = array('email' =>$myrow['email'],'lang' => $dflt_lang, // ???
79                         'name' => $myrow['contact'], 'name2' => '', 'contact');
80
81                 $rep->SetCommonData($myrow, null, null, '', 26, $contact);
82                 $rep->SetHeaderType('Header2');
83                 $rep->NewPage();
84
85                 $result = get_wo_requirements($i);
86                 $rep->TextCol(0, 5,_("Work Order Requirements"), -2);
87                 $rep->NewLine(2);
88                 while ($myrow2=db_fetch($result))
89                 {
90                         $rep->TextCol(0, 1,     $myrow2['stock_id'], -2);
91                         $rep->TextCol(1, 2, $myrow2['description'], -2);
92
93                         $rep->TextCol(2, 3,     $myrow2['location_name'], -2);
94                         $rep->TextCol(3, 4,     $myrow2['WorkCentreDescription'], -2);
95                         $dec = get_qty_dec($myrow2["stock_id"]);
96
97                         $rep->AmountCol(4, 5,   $myrow2['units_req'], $dec, -2);
98                         $rep->AmountCol(5, 6,   $myrow2['units_req'] * $myrow['units_issued'], $dec, -2);
99                         $rep->AmountCol(6, 7,   $myrow2['units_issued'], $dec, -2);
100                         $rep->NewLine(1);
101                         if ($rep->row < $rep->bottomMargin + (15 * $rep->lineHeight))
102                                 $rep->NewPage();
103                 }
104                 $memo = get_comments_string(ST_WORKORDER, $i);
105                 if ($memo != "")
106                 {
107                         $rep->NewLine();
108                         $rep->TextColLines(1, 5, $memo, -2);
109                 }
110
111                 if ($email == 1)
112                 {
113                         $myrow['DebtorName'] = $myrow['contact'];
114                         $myrow['reference'] = $myrow['wo_ref'];
115                         $rep->End($email);
116                 }
117         }
118         if ($email == 0)
119                 $rep->End();
120 }
121