-
Notifications
You must be signed in to change notification settings - Fork 99
/
Copy pathsearch_work_orders.php
189 lines (155 loc) · 5.57 KB
/
search_work_orders.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
<?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>.
***********************************************************************/
$page_security = 'SA_MANUFTRANSVIEW';
$path_to_root = "..";
include($path_to_root . "/includes/db_pager.inc");
include_once($path_to_root . "/includes/session.inc");
include_once($path_to_root . "/includes/date_functions.inc");
include_once($path_to_root . "/manufacturing/includes/manufacturing_ui.inc");
include_once($path_to_root . "/reporting/includes/reporting.inc");
$js = "";
if ($SysPrefs->use_popup_windows)
$js .= get_js_open_window(800, 500);
if (isset($_GET['outstanding_only']) && ($_GET['outstanding_only'] == true))
{
// curently outstanding simply means not closed
$outstanding_only = 1;
page(_($help_context = "Search Outstanding Work Orders"), false, false, "", $js);
}
else
{
$outstanding_only = 0;
page(_($help_context = "Search Work Orders"), false, false, "", $js);
}
//-----------------------------------------------------------------------------------
// Ajax updates
//
if (get_post('SearchOrders'))
{
$Ajax->activate('orders_tbl');
} elseif (get_post('_OrderNumber_changed'))
{
$disable = get_post('OrderNumber') !== '';
$Ajax->addDisable(true, 'StockLocation', $disable);
$Ajax->addDisable(true, 'OverdueOnly', $disable);
$Ajax->addDisable(true, 'OpenOnly', $disable);
$Ajax->addDisable(true, 'SelectedStockItem', $disable);
if ($disable) {
set_focus('OrderNumber');
} else
set_focus('StockLocation');
$Ajax->activate('orders_tbl');
}
//--------------------------------------------------------------------------------------
if (isset($_GET["stock_id"]))
$_POST['SelectedStockItem'] = $_GET["stock_id"];
//--------------------------------------------------------------------------------------
start_form(false, false, $_SERVER['PHP_SELF'] ."?outstanding_only=$outstanding_only");
start_table(TABLESTYLE_NOBORDER);
start_row();
ref_cells(_("#:"), 'OrderId', '',null, '', true);
ref_cells(_("Reference:"), 'OrderNumber', '',null, '', true);
locations_list_cells(_("at Location:"), 'StockLocation', null, true);
end_row();
end_table();
start_table(TABLESTYLE_NOBORDER);
start_row();
check_cells( _("Only Overdue:"), 'OverdueOnly', null);
if ($outstanding_only==0)
check_cells( _("Only Open:"), 'OpenOnly', null);
stock_manufactured_items_list_cells(_("for item:"), 'SelectedStockItem', null, true);
submit_cells('SearchOrders', _("Search"),'',_('Select documents'), 'default');
end_row();
end_table();
//-----------------------------------------------------------------------------
function check_overdue($row)
{
return (!$row["closed"]
&& date_diff2(Today(), sql2date($row["required_by"]), "d") > 0);
}
function view_link($dummy, $order_no)
{
return get_trans_view_str(ST_WORKORDER, $order_no);
}
function view_stock($row)
{
return view_stock_status($row["stock_id"], $row["description"], false);
}
function wo_type_name($dummy, $type)
{
global $wo_types_array;
return $wo_types_array[$type];
}
function edit_link($row)
{
return $row['closed'] ? '<i>'._('Closed').'</i>' :
trans_editor_link(ST_WORKORDER, $row["id"]);
}
function release_link($row)
{
return $row["closed"] ? '' :
($row["released"]==0 ?
pager_link(_('Release'),
"/manufacturing/work_order_release.php?trans_no=" . $row["id"])
:
pager_link(_('Issue'),
"/manufacturing/work_order_issue.php?trans_no=" .$row["id"]));
}
function produce_link($row)
{
return $row["closed"] || !$row["released"] ? '' :
pager_link(_('Produce'),
"/manufacturing/work_order_add_finished.php?trans_no=" .$row["id"]);
}
function costs_link($row)
{
return $row["closed"] || !$row["released"] ? '' :
pager_link(_('Costs'),
"/manufacturing/work_order_costs.php?trans_no=" .$row["id"]);
}
function view_gl_link($row)
{
return get_gl_view_str(ST_WORKORDER, $row['id']);
}
function prt_link($row)
{
return print_document_link($row['id'], _("Print"), true, ST_WORKORDER, ICON_PRINT);
}
function dec_amount($row, $amount)
{
return number_format2($amount, $row['decimals']);
}
$sql = get_sql_for_work_orders($outstanding_only, get_post('SelectedStockItem'), get_post('StockLocation'),
get_post('OrderId'), get_post('OrderNumber'), check_value('OverdueOnly'));
$cols = array(
_("#") => array('fun'=>'view_link', 'ord'=>''),
_("Reference"), // viewlink 2 ?
_("Type") => array('fun'=>'wo_type_name'),
_("Location"),
_("Item") => array('fun'=>'view_stock', 'ord'=>''),
_("Required") => array('fun'=>'dec_amount', 'align'=>'right'),
_("Manufactured") => array('fun'=>'dec_amount', 'align'=>'right'),
_("Date") => array('name'=>'date_', 'type'=>'date', 'ord'=>'desc'),
_("Required By") => array('type'=>'date', 'ord'=>''),
array('insert'=>true, 'fun'=> 'view_gl_link'),
array('insert'=>true, 'fun'=> 'edit_link'),
array('insert'=>true, 'fun'=> 'release_link'),
array('insert'=>true, 'fun'=> 'costs_link'),
array('insert'=>true, 'fun'=> 'produce_link'),
array('insert'=>true, 'fun'=> 'prt_link')
);
$table =& new_db_pager('orders_tbl', $sql, $cols);
$table->set_marker('check_overdue', _("Marked orders are overdue."));
$table->width = "90%";
display_db_pager($table);
end_form();
end_page();