Stable branch merged up to 2.3.21
[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, $SysPrefs, $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);
66                 if ($myrow === false)
67                         continue;
68                 $date_ = sql2date($myrow["date_"]);
69                 if ($email == 1)
70                 {
71                         $rep = new FrontReport("", "", user_pagesize(), 9, $orientation);
72                         $rep->title = _('WORK ORDER');
73                         $rep->filename = "WorkOrder" . $myrow['wo_ref'] . ".pdf";
74                 }
75                 $rep->SetHeaderType('Header2');
76                 $rep->currency = $cur;
77                 $rep->Font();
78                 $rep->Info($params, $cols, null, $aligns);
79
80                 $contact = array('email' =>$myrow['email'],'lang' => $dflt_lang, // ???
81                         'name' => $myrow['contact'], 'name2' => '', 'contact');
82
83                 $rep->SetCommonData($myrow, null, null, '', 26, $contact);
84                 $rep->NewPage();
85
86                 $result = get_wo_requirements($i);
87                 $rep->TextCol(0, 5,_("Work Order Requirements"), -2);
88                 $rep->NewLine(2);
89                 $has_marked = false;
90                 while ($myrow2=db_fetch($result))
91                 {
92                         $qoh = 0;
93                         $show_qoh = true;
94                         // if it's a non-stock item (eg. service) don't show qoh
95                         if (!has_stock_holding($myrow2["mb_flag"]))
96                                 $show_qoh = false;
97
98                         if ($show_qoh)
99                                 $qoh = get_qoh_on_date($myrow2["stock_id"], $myrow2["loc_code"], $date_);
100
101                         if ($show_qoh && ($myrow2["units_req"] * $myrow["units_issued"] > $qoh) &&
102                                 !$SysPrefs->allow_negative_stock())
103                         {
104                                 // oops, we don't have enough of one of the component items
105                                 $has_marked = true;
106                         }
107                         else
108                                 $has_marked = false;
109                         if ($has_marked)
110                                 $str = $myrow2['stock_id']." ***";
111                         else
112                                 $str = $myrow2['stock_id'];
113                         $rep->TextCol(0, 1,     $str, -2);
114                         $rep->TextCol(1, 2, $myrow2['description'], -2);
115
116                         $rep->TextCol(2, 3,     $myrow2['location_name'], -2);
117                         $rep->TextCol(3, 4,     $myrow2['WorkCentreDescription'], -2);
118                         $dec = get_qty_dec($myrow2["stock_id"]);
119
120                         $rep->AmountCol(4, 5,   $myrow2['units_req'], $dec, -2);
121                         $rep->AmountCol(5, 6,   $myrow2['units_req'] * $myrow['units_issued'], $dec, -2);
122                         $rep->AmountCol(6, 7,   $myrow2['units_issued'], $dec, -2);
123                         $rep->NewLine(1);
124                         if ($rep->row < $rep->bottomMargin + (15 * $rep->lineHeight))
125                                 $rep->NewPage();
126                 }
127                 $rep->NewLine(1);
128                 $rep->TextCol(0, 5," *** = "._("Insufficient stock"), -2);
129
130                 $memo = get_comments_string(ST_WORKORDER, $i);
131                 if ($memo != "")
132                 {
133                         $rep->NewLine();
134                         $rep->TextColLines(1, 5, $memo, -2);
135                 }
136
137                 if ($email == 1)
138                 {
139                         $myrow['DebtorName'] = $myrow['contact'];
140                         $myrow['reference'] = $myrow['wo_ref'];
141                         $rep->End($email);
142                 }
143         }
144         if ($email == 0)
145                 $rep->End();
146 }
147
148 ?>