forked from webERP-team/webERP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WOSerialNos.php
357 lines (317 loc) · 13.4 KB
/
WOSerialNos.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
<?php
/*This page shows the serial numbers created for a works order
* - creating automatically from the last serial number counter in the stockmaster or by manual entry
* - If the item is lot controlled then the lot reference and the quantity in the lot can be entered
* - this updates the quantity on the work order.
* The work order quantity can only be modified by creating lots or serial numbers for controlled item work orders
*
* Need to allow adding serial numbers/batches and deleting batches/serial numbers
*/
include('includes/session.php');
if (isset($_GET['StockID'])){ //the page was called for the first time - get variables into $_POST array
$StockID = $_GET['StockID'];
$Description = $_GET['Description'];
$WO = $_GET['WO'];
$Serialised = $_GET['Serialised'];
$NextSerialNo = $_GET['NextSerialNo'];
} else {
$StockID = $_POST['StockID'];
$Description = $_POST['Description'];
$WO = $_POST['WO'];
$Serialised = $_POST['Serialised'];
$NextSerialNo = $_POST['NextSerialNo'];
}
if (!isset($WO) OR $WO==''){
prnMsg(_('This page must to be called from the work order entry screen'),'error');
include('includes/footer.php');
exit;
}
if ($Serialised==1){
$Title = _('Work Order Serial Numbers in Progress');
} else {
$Title = _('Work Order Batches in Progress');
}
include('includes/header.php');
echo '<p class="page_title_text">
<img src="'.$RootPath.'/css/'.$Theme.'/images/transactions.png" title="" alt="" />' . ' ' . _('For Work Order Number') . ' ' . $WO . ' ' . _('and output item') . ' ' . $StockID . ' - ' . $Description . '
</p>';
$DbgMsg = _('The SQL that failed was');
if (isset($_POST['AddControlledItems'])){
if (isset($_POST['NumberToAdd'])){ // Must be adding serial numbers automatically
if (!is_numeric(filter_number_format($_POST['NumberToAdd']))){
prnMsg(_('The quantity of controlled items to add was not numeric - a number is expected'),'error');
} else {
DB_Txn_Begin();
/*Process the additional controlled items into woserialnos and update the quantity on the work order order in woitems*/
$InputError = false;
$sql = "INSERT INTO woserialnos (stockid,
wo,
qualitytext,
serialno)
VALUES ('" . $StockID . "',
'" . $WO . "',
'',
' ";
$ValueLine = '';
for ($i=0;$i< filter_number_format($_POST['NumberToAdd']);$i++){
$NextItemNumber = $NextSerialNo + $i;
$result = DB_query("SELECT serialno FROM woserialnos
WHERE wo='" . $WO . "'
AND stockid='" . $StockID ."'
AND serialno='" . $NextItemNumber . "'");
if (DB_num_rows($result)!=0){
$InputError=true;
prnMsg($NextItemNumber . ' ' . _('is already entered on this work order'),'error');
}
$result = DB_query("SELECT serialno FROM stockserialitems
WHERE serialno='" . $NextItemNumber . "'
AND stockid='" . $StockID ."'");
if (DB_num_rows($result)!=0){
$InputError=true;
prnMsg($NextItemNumber . ' ' . _('has already been used for this item'),'error');
}
if (!$InputError){
if ($i>0){
$sql .= ',';
$ValueLine = "('".$StockId."','".$WO."','','";
}
$sql .= $ValueLine . $NextItemNumber . "')";
}
}
$NextSerialNo = $NextItemNumber + 1;
$ErrMsg = _('Unable to add the serial numbers requested');
$result = DB_query($sql,$ErrMsg,$DbgMsg,true);
// update the nextserialno in the stockmaster for the item
$result = DB_query("UPDATE stockmaster
SET nextserialno='" . $NextSerialNo . "'
WHERE stockid='" . $StockID . "'");
$result = DB_query("UPDATE woitems SET qtyreqd=qtyreqd+" . filter_number_format($_POST['NumberToAdd']) . "
WHERE stockid='" . $StockID . "'
AND wo='" . $WO . "'",
$ErrMsg,
$DbgMsg,
true);
DB_Txn_Commit();
}
} // end Adding a number of serial numbers automatically
else { //adding just an individual entry
$InputError = false;
if (mb_strlen($_POST['Reference'])==0){
prnMsg(_('The batch or serial number reference has not been entered - a reference is required'),'error');
$InputError=true;
}
if (!is_numeric(filter_number_format($_POST['Quantity']))){
prnMsg(_('The quantity for the batch must be numeric'),'error');
$InputError=true;
}
$result = DB_query("SELECT serialno FROM woserialnos
WHERE wo='" . $WO . "'
AND stockid='" . $StockID ."'
AND serialno='" . $_POST['Reference'] . "'");
if (DB_num_rows($result)!=0){
$InputError=true;
prnMsg(_('The serial number or batch reference must be unique to the item - the reference entered is already entered on this work order'),'error');
}
$result = DB_query("SELECT serialno FROM stockserialitems
WHERE serialno='" . $_POST['Reference'] . "'
AND stockid='" . $StockID ."'");
if (DB_num_rows($result)!=0){
$InputError=true;
prnMsg(_('The serial number or batch reference must be unique to the item. The serial number/batch entered already exists'),'error');
}
if (!$InputError){
DB_Txn_Begin();
$ErrMsg = _('Could not add a new serial number/batch');
$result = DB_query("UPDATE woitems
SET qtyreqd=qtyreqd+" . filter_number_format($_POST['Quantity']) . "
WHERE stockid='" . $StockID . "'
AND wo='" . $WO . "'",
$ErrMsg,
$DbgMsg,
true);
$sql = "INSERT INTO woserialnos (stockid,
wo,
qualitytext,
quantity,
serialno)
VALUES ('" . $StockID . "',
'" . $WO . "',
'',
'" . filter_number_format($_POST['Quantity']) . "',
'" . $_POST['Reference'] . "')";
$ErrMsg = _('Unable to add the batch or serial number requested');
$result = DB_query($sql,$ErrMsg,$DbgMsg,true);
DB_Txn_Commit();
}
}
}
if (isset($_GET['Delete'])){ //user hit delete link
/*when serial numbers /lots received they are removed from the woserialnos table so no need to check if already received - they will only show here if they are in progress */
$result = DB_query("DELETE FROM woserialnos
WHERE wo='" . $WO . "'
AND stockid='" . $StockID . "'
AND serialno='" . $_GET['Reference'] ."'");
$result = DB_query("UPDATE woitems SET qtyreqd=qtyreqd-" . filter_number_format($_GET['Quantity']) . "
WHERE wo='" . $WO . "'
AND stockid = '" . $StockID . "'");
prnMsg(_('The batch/serial number') . ' ' . $_GET['Reference'] . ' ' . _('has been deleted from this work order'),'info');
}
if (isset($_POST['UpdateItems'])){
//update the serial numbers and quantities and notes for each serial number or batch
$InputError=false;
$WOQuantityTotal=0;
$sql = array();
for ($i=0;$i<$_POST['CountOfItems'];$i++){
if (mb_strlen($_POST['Reference' . $i])==0){
prnMsg($_POST['OldReference' .$i] . ': ' , _('The new batch or serial number reference has not been entered - a reference is required'),'error');
$InputError=true;
}
if (!is_numeric(filter_number_format($_POST['Quantity' . $i]))){
prnMsg(_('The quantity for the batch must be numeric'),'error');
$InputError=true;
}
if ($_POST['Reference' .$i] != $_POST['OldReference' .$i]){
$result = DB_query("SELECT serialno FROM woserialnos
WHERE wo='" . $WO . "'
AND stockid='" . $StockID ."'
AND serialno='" . $_POST['Reference' . $i] . "'");
if (DB_num_rows($result)!=0){
$InputError=true;
prnMsg($_POST['Reference' .$i] . ': ' . _('The reference entered is already entered on this work order'),'error');
}
$result = DB_query("SELECT serialno FROM stockserialitems
WHERE serialno='" . $_POST['Reference' .$i] . "'
AND stockid='" . $StockID ."'");
if (DB_num_rows($result)!=0){
$InputError=true;
prnMsg($_POST['Reference' .$i] . ': ' . _('The serial number/batch entered already exists'),'error');
}
}
if (!$InputError){
$sql[] = "UPDATE woserialnos SET serialno='" . $_POST['Reference'.$i] . "',
quantity='" . filter_number_format($_POST['Quantity'.$i]) ."',
qualitytext='" . $_POST['Notes'.$i] . "'
WHERE wo='" . $WO . "'
AND stockid='" . $StockID . "'
AND serialno='" . $_POST['OldReference'.$i] . "'";
$WOQuantityTotal += filter_number_format($_POST['Quantity'.$i]);
} else {
$WOQuantityTotal += $_POST['OldQuantity'.$i];
}
}//end loop around all serial numbers/batches
$ErrMsg = _('Could not update serial/batches on the work order');
if (sizeof($sql)>0){
$result = DB_Txn_Begin();
foreach ($sql as $SQLStatement){
$result = DB_query($SQLStatement,$ErrMsg,$DbgMsg,true);
}
$result = DB_query("UPDATE woitems SET qtyreqd = '" . $WOQuantityTotal . "'
WHERE wo = '" .$WO . "'
AND stockid='" . $StockID . "'",
$ErrMsg,
$DbgMsg,
true);
$result = DB_Txn_Commit();
}
}
echo '<form method="post" action="' . htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '">';
echo '<div>';
echo '<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />';
echo '<input type="hidden" name="StockID" value="' . $StockID . '" />';
echo '<input type="hidden" name="Description" value="' . $Description . '" />';
echo '<input type="hidden" name="WO" value="' . $WO . '" />';
echo '<input type="hidden" name="Serialised" value="' . $Serialised . '" />';
echo '<input type="hidden" name="NextSerialNo" value="' . $NextSerialNo . '" />';
echo '<table class="selection">';
if ($Serialised==1 AND $NextSerialNo>0){
echo '<tr><td>' . _('Add A Number of New Serial Numbers');
echo ':</td>
<td><input type="text" name="NumberToAdd" required="required" size="10" class="number" maxlength="10" value="1" title="'._('The input must be in number format').'" placeholder="'._('Number of new serial numbers').'" /></td>
<td>' . _('Starting at') . ':</td><td align="right">' . $NextSerialNo . '</td>';
} else {
//Need to allow entry of batch or serial number and its a batch a quantity too for individual entry
if ($Serialised==1){
echo '<tr>
<th></th>
<th>' . _('Serial No') . '</th></tr>
<tr><td>';
echo _('Add a single serial number');
} else {
echo '<tr>
<th></th>
<th>' . _('Batch/Lot Ref') . '</th><th>' . _('Quantity') . '</th></tr>
<tr><td>';
echo _('Add a single batch/lot number');
}
echo '</td><td><input type="text" name="Reference" maxlength="30" size="30" title="'._('The reference must be input').'" placeholder="'._('SNs or batch no').'" /></td>';
if ($Serialised==0){ //also need to add the quantity
echo '<td><input type="text" required="required" name="Quantity" size="10" class="number" maxlength="10" value="1" title="'._('The quantity must be input').'" placeholder="'._('Quantity').'" /></td>';
} else { //it will be 1 for a serial item
echo '<td><input type="hidden" name="Quantity" value="1" /></td>';
}
}
echo '<td><input type="submit" name="AddControlledItems" value="' . _('Add') . '" /></td>
</tr>
</table>
<br />';
$sql = "SELECT serialno,
quantity,
qualitytext
FROM woserialnos
WHERE wo='" . $WO . "'
AND stockid='" . $StockID . "'";
$ErrMsg = _('Could not get the work order serial/batch items');
$WOSerialNoResult = DB_query($sql,$ErrMsg);
if (DB_num_rows($WOSerialNoResult)==0){
prnMsg(_('There are no serial items or batches yet defined for this work order item. Create new items first'),'info');
} else {
echo '<br />
<table class="selection">';
if ($Serialised==1){
$Header = '<tr>
<th>' . _('Serial No') . '</th>
<th>' . _('Notes') . '</th>
</tr>';
} else {
$Header = '<tr>
<th>' . _('Batch Ref') . '</th>
<th>' . _('Quantity') . '</th>
<th>' . _('Notes') . '</th>
</tr>';
}
echo $Header;
$i = 0;
$j = 0;
while ($WOSNRow = DB_fetch_array($WOSerialNoResult)){
if ($j==5){
echo $Header;
$j=0;
}
echo '<tr>
<td><input required="required" type="text" name="Reference' . $i .'" value="' . $WOSNRow['serialno'] . '"/>';
echo '<input type="hidden" name="OldReference' . $i . '" value="' . $WOSNRow['serialno'] . '"/></td>';
if ($Serialised==0){
echo '<td><input type="text" class="number" required="required" name="Quantity' . $i .'" value="' . locale_number_format($WOSNRow['quantity'],'Variable') . '" />';
echo '<input type="hidden" name="OldQuantity' . $i . '" value="' . locale_number_format($WOSNRow['quantity'],'Variable') . '" /></td>';
} else {
echo '<td><input type="hidden" name="Quantity' . $i . '" value="1" /></td>';
}
echo '<td><textarea name="Notes' . $i .'" cols="60" rows="3">' . $WOSNRow['qualitytext'] . '</textarea></td>';
echo '<td><a href="' . htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '?Delete=1&Reference=' . $WOSNRow['serialno'] . '&Quantity=' . locale_number_format($WOSNRow['quantity'],'Variable') . '&WO=' . $WO . '&StockID=' . $StockID . '&Description=' . $Description . '&Serialised=' . $Serialised . '&NextSerialNo=' . $NextSerialNo . '">' . _('Delete') . '</a></td></tr>';
$i++;
$j++;
}
if ($Serialised==0){
echo '<tr><td style="text-align: center" colspan="3">';
} else {
echo '<tr><td style="text-align: center" colspan="2">';
}
echo '<input type="submit" name="UpdateItems" value="' . _('Update') . '" /></td></tr>';
echo '</table>';
echo '<input type="hidden" name="CountOfItems" value="' . $i . '" />';
} //end of if there are woserialno items defined
echo '<br /><a href="' . $RootPath . '/WorkOrderEntry.php?WO=' . $WO . '">' . _('Back To Work Order') . ' ' . $WO . '</a>';
echo '</div>
</form>';
include('includes/footer.php');
?>