forked from webERP-team/webERP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSupplierPriceList.php
612 lines (587 loc) · 24.1 KB
/
SupplierPriceList.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
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
<?php
/* Maintain Supplier Price Lists */
include('includes/session.php');
$Title = _('Supplier Purchasing Data');
$ViewTopic = 'PurchaseOrdering';
$BookMark = 'SupplierPriceList';
include('includes/header.php');
if(isset($_POST['StockSearch'])) {
echo '<p class="page_title_text"><img alt="" src="', $RootPath, '/css/', $Theme,
'/images/magnifier.png" title="', // Icon image.
_('Search'), '" /> ', // Icon title.
_('Search for Inventory Items'), '</p>';// Page title.
echo '<form action="', htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8'), '" method="post">
<input name="FormID" type="hidden" value="', $_SESSION['FormID'], '" />
<input name="SupplierID" type="hidden" value="', $_POST['SupplierID'], '" />
<table class="selection">
<tr>
<td>' . _('In Stock Category') . ':<select name="StockCat">';
if(!isset($_POST['StockCat'])) {
$_POST['StockCat'] = '';
}
if($_POST['StockCat'] == 'All') {
echo '<option selected="True" value="All">' . _('All') . '</option>';
} else {
echo '<option value="All">' . _('All') . '</option>';
}
$SQL = "SELECT categoryid,
categorydescription
FROM stockcategory
ORDER BY categorydescription";
$result1 = DB_query($SQL);
while($MyRow1 = DB_fetch_array($result1)) {
if($MyRow1['categoryid'] == $_POST['StockCat']) {
echo '<option selected="True" value="' . $MyRow1['categoryid'] . '">' . $MyRow1['categorydescription'] . '</option>';
} else {
echo '<option value="' . $MyRow1['categoryid'] . '">' . $MyRow1['categorydescription'] . '</option>';
}
}
echo '</select></td>';
echo '<td>' . _('Enter partial') . '<b> ' . _('Description') . '</b>:</td><td>';
if(isset($_POST['Keywords'])) {
echo '<input type="search" name="Keywords" value="' . $_POST['Keywords'] . '" autofocus="autofocus" size="34" maxlength="25" />';
} else {
echo '<input type="search" name="Keywords" size="34" maxlength="25" autofocus="autofocus" placeholder="Enter part of the item description" />';
}
echo '</td>
</tr>
<tr>
<td></td>
<td><b>' . _('OR') . ' ' . '</b>' . _('Enter partial') . ' <b>' . _('Stock Code') . '</b>:</td>
<td>';
if(isset($_POST['StockCode'])) {
echo '<input type="text" name="StockCode" value="' . $_POST['StockCode'] . '" size="15" maxlength="18" />';
} else {
echo '<input type="text" name="StockCode" size="15" maxlength="18" />';
}
echo '</td>
</tr>
</table>
<br />
<div class="centre">
<input type="submit" name="Search" value="' . _('Search Now') . '" />
</div>
<br />
</div>
</form>';
include('includes/footer.php');
exit;
}
if(isset($_POST['Search']) OR isset($_POST['Go']) OR isset($_POST['Next']) OR isset($_POST['Previous'])) {
if(!isset($_POST['Go']) AND !isset($_POST['Next']) AND !isset($_POST['Previous'])) {
// if Search then set to first page
$_POST['PageOffset'] = 1;
}
if($_POST['Keywords'] AND $_POST['StockCode']) {
prnMsg (_('Stock description keywords have been used in preference to the Stock code extract entered'), 'info');
}
if($_POST['Keywords']) {
//insert wildcard characters in spaces
$_POST['Keywords'] = mb_strtoupper($_POST['Keywords']);
$SearchString = '%' . str_replace(' ', '%', $_POST['Keywords']) . '%';
if($_POST['StockCat'] == 'All') {
$SQL = "SELECT stockmaster.stockid,
stockmaster.description,
SUM(locstock.quantity) AS qoh,
stockmaster.units,
stockmaster.mbflag,
stockmaster.discontinued,
stockmaster.decimalplaces
FROM stockmaster
LEFT JOIN stockcategory
ON stockmaster.categoryid=stockcategory.categoryid,
locstock
WHERE stockmaster.stockid=locstock.stockid
AND stockmaster.description " . LIKE . " '$SearchString'
AND (stockmaster.mbflag='B' OR stockmaster.mbflag='M')
GROUP BY stockmaster.stockid,
stockmaster.description,
stockmaster.units,
stockmaster.mbflag,
stockmaster.discontinued,
stockmaster.decimalplaces
ORDER BY stockmaster.stockid";
} else {
$SQL = "SELECT stockmaster.stockid,
stockmaster.description,
SUM(locstock.quantity) AS qoh,
stockmaster.units,
stockmaster.mbflag,
stockmaster.discontinued,
stockmaster.decimalplaces
FROM stockmaster INNER JOIN locstock
ON stockmaster.stockid=locstock.stockid
WHERE description " . LIKE . " '$SearchString'
AND (stockmaster.mbflag='B' OR stockmaster.mbflag='M')
AND categoryid='" . $_POST['StockCat'] . "'
GROUP BY stockmaster.stockid,
stockmaster.description,
stockmaster.units,
stockmaster.mbflag,
stockmaster.discontinued,
stockmaster.decimalplaces
ORDER BY stockmaster.stockid";
}
} elseif(isset($_POST['StockCode'])) {
$_POST['StockCode'] = mb_strtoupper($_POST['StockCode']);
if($_POST['StockCat'] == 'All') {
$SQL = "SELECT stockmaster.stockid,
stockmaster.description,
stockmaster.mbflag,
stockmaster.discontinued,
SUM(locstock.quantity) AS qoh,
stockmaster.units,
stockmaster.decimalplaces
FROM stockmaster
INNER JOIN stockcategory
ON stockmaster.categoryid=stockcategory.categoryid
INNER JOIN locstock
ON stockmaster.stockid=locstock.stockid
WHERE (stockmaster.mbflag='B' OR stockmaster.mbflag='M')
AND stockmaster.stockid " . LIKE . " '%" . $_POST['StockCode'] . "%'
GROUP BY stockmaster.stockid,
stockmaster.description,
stockmaster.units,
stockmaster.mbflag,
stockmaster.discontinued,
stockmaster.decimalplaces
ORDER BY stockmaster.stockid";
} else {
$SQL = "SELECT stockmaster.stockid,
stockmaster.description,
stockmaster.mbflag,
stockmaster.discontinued,
sum(locstock.quantity) as qoh,
stockmaster.units,
stockmaster.decimalplaces
FROM stockmaster INNER JOIN locstock
ONstockmaster.stockid=locstock.stockid
WHERE stockmaster.stockid " . LIKE . " '%" . $_POST['StockCode'] . "%'
AND (stockmaster.mbflag='B' OR stockmaster.mbflag='M')
AND categoryid='" . $_POST['StockCat'] . "'
GROUP BY stockmaster.stockid,
stockmaster.description,
stockmaster.units,
stockmaster.mbflag,
stockmaster.discontinued,
stockmaster.decimalplaces
ORDER BY stockmaster.stockid";
}
} elseif(!isset($_POST['StockCode']) AND !isset($_POST['Keywords'])) {
if($_POST['StockCat'] == 'All') {
$SQL = "SELECT stockmaster.stockid,
stockmaster.description,
stockmaster.mbflag,
stockmaster.discontinued,
SUM(locstock.quantity) AS qoh,
stockmaster.units,
stockmaster.decimalplaces
FROM stockmaster
LEFT JOIN stockcategory
ON stockmaster.categoryid=stockcategory.categoryid,
locstock
WHERE stockmaster.stockid=locstock.stockid
AND (stockmaster.mbflag='B' OR stockmaster.mbflag='M')
GROUP BY stockmaster.stockid,
stockmaster.description,
stockmaster.units,
stockmaster.mbflag,
stockmaster.discontinued,
stockmaster.decimalplaces
ORDER BY stockmaster.stockid";
} else {
$SQL = "SELECT stockmaster.stockid,
stockmaster.description,
stockmaster.mbflag,
stockmaster.discontinued,
SUM(locstock.quantity) AS qoh,
stockmaster.units,
stockmaster.decimalplaces
FROM stockmaster INNER JOIN locstock
ONstockmaster.stockid=locstock.stockid
WHERE categoryid='" . $_POST['StockCat'] . "'
AND (stockmaster.mbflag='B' OR stockmaster.mbflag='M')
GROUP BY stockmaster.stockid,
stockmaster.description,
stockmaster.units,
stockmaster.mbflag,
stockmaster.discontinued,
stockmaster.decimalplaces
ORDER BY stockmaster.stockid";
}
}
$ErrMsg = _('No stock items were returned by the SQL because');
$DbgMsg = _('The SQL that returned an error was');
$searchresult = DB_query($SQL, $ErrMsg, $DbgMsg);
if(DB_num_rows($searchresult) == 0) {
prnMsg(_('No stock items were returned by this search please re-enter alternative criteria to try again'), 'info');
}
unset($_POST['Search']);
}
/* end query for list of records */
/* display list if there is more than one record */
if(isset($searchresult) AND !isset($_POST['Select'])) {
echo '<p class="page_title_text"><img src="' . $RootPath . '/css/' . $Theme . '/images/magnifier.png" title="' . _('Search') . '" alt="" />' . ' ' . _('Search for Inventory Items'). '</p>';
echo '<form action="' . htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '" method="post">
<div>
<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />
<input type="hidden" value="' . $_POST['SupplierID'] . '" name="SupplierID" />';
$ListCount = DB_num_rows($searchresult);
if($ListCount > 0) {
// If the user hit the search button and there is more than one item to show
$ListPageMax = ceil($ListCount / $_SESSION['DisplayRecordsMax']);
if(isset($_POST['Next'])) {
if($_POST['PageOffset'] < $ListPageMax) {
$_POST['PageOffset'] = $_POST['PageOffset'] + 1;
}
}
if(isset($_POST['Previous'])) {
if($_POST['PageOffset'] > 1) {
$_POST['PageOffset'] = $_POST['PageOffset'] - 1;
}
}
if($_POST['PageOffset'] > $ListPageMax) {
$_POST['PageOffset'] = $ListPageMax;
}
if($ListPageMax > 1) {
echo '<div class="centre"><br /> ' . $_POST['PageOffset'] . ' ' . _('of') . ' ' . $ListPageMax . ' ' . _('pages') . '. ' . _('Go to Page') . ': ';
echo '<select name="PageOffset">';
$ListPage = 1;
while($ListPage <= $ListPageMax) {
if($ListPage == $_POST['PageOffset']) {
echo '<option value=' . $ListPage . ' selected>' . $ListPage . '</option>';
} else {
echo '<option value=' . $ListPage . '>' . $ListPage . '</option>';
}
$ListPage++;
}
echo '</select>
<input type="submit" name="Go" value="' . _('Go') . '" />
<input type="submit" name="Previous" value="' . _('Previous') . '" />
<input type="submit" name="Next" value="' . _('Next') . '" />';
echo '<input type="hidden" name=Keywords value="'.$_POST['Keywords'].'" />';
echo '<input type="hidden" name=StockCat value="'.$_POST['StockCat'].'" />';
echo '<input type="hidden" name=StockCode value="'.$_POST['StockCode'].'" />';
// echo '<input type="hidden" name=Search value="Search" />';
echo '<br /></div>';
}
echo '<table class="selection">
<thead>
<tr>
<th class="ascending">' . _('Code') . '</th>
<th class="ascending">' . _('Description') . '</th>
<th>' . _('Units') . '</th>
</tr>
</thead>
<tbody>';
$RowIndex = 0;
if(DB_num_rows($searchresult) <> 0) {
DB_data_seek($searchresult, ($_POST['PageOffset'] - 1) * $_SESSION['DisplayRecordsMax']);
}
while(($MyRow = DB_fetch_array($searchresult)) AND ($RowIndex <> $_SESSION['DisplayRecordsMax'])) {
echo '<tr class="striped_row">
<td><input type="submit" name="Select" value="' . $MyRow['stockid'] . '" /></td>
<td>' . $MyRow['description'] . '</td>
<td>' . $MyRow['units'] . '</td>
</tr>';
$RowIndex = $RowIndex + 1;
}
//end of while loop
echo '</tbody></table>
<br />
</div>
</form>';
include('includes/footer.php');
exit;
}
}
foreach ($_POST as $key=>$value) {
if(mb_substr($key,0,6)=='Update') {
$Index = mb_substr($key,6,mb_strlen($key)-6);
$StockID = $_POST['StockID'.$Index];
$Price = filter_number_format($_POST['Price'.$Index]);// Convert data from user format to database number format.
$SuppUOM = $_POST['SuppUOM'.$Index];
$ConversionFactor = $_POST['ConversionFactor'.$Index];
$SupplierDescription = $_POST['SupplierDescription'.$Index];
$LeadTime = $_POST['LeadTime'.$Index];
if(isset($_POST['Preferred'.$Index])) {
$Preferred = 1;
$PreferredSQL = "UPDATE purchdata SET preferred=0
WHERE stockid='" . $StockID . "'";
$PreferredResult=DB_query($PreferredSQL);
} else {
$Preferred = 0;
}
$EffectiveFrom=$_POST['EffectiveFrom'.$Index];
$SupplierPartNo=$_POST['SupplierPartNo'.$Index];
$MinOrderQty=$_POST['MinOrderQty'.$Index];
$sql="UPDATE purchdata SET price='" . $Price . "',
suppliersuom='" . $SuppUOM . "',
conversionfactor='" . $ConversionFactor . "',
supplierdescription='" . $SupplierDescription . "',
leadtime='" . $LeadTime . "',
preferred='" . $Preferred . "',
effectivefrom='" . FormatDateForSQL($EffectiveFrom) . "',
suppliers_partno='" . $SupplierPartNo . "',
minorderqty='" . $MinOrderQty . "'
WHERE supplierno='" . $_POST['SupplierID'] . "'
AND stockid='" . $StockID . "'";
$result=DB_query($sql);
}
if(mb_substr($key,0,6)=='Insert') {
if(isset($_POST['Preferred0'])) {
$Preferred=1;
} else {
$Preferred=0;
}
$sql="INSERT INTO purchdata (stockid,
supplierno,
price,
suppliersuom,
conversionfactor,
supplierdescription,
leadtime,
preferred,
effectivefrom,
suppliers_partno,
minorderqty
) VALUES (
'" . $_POST['StockID0'] . "',
'" . $_POST['SupplierID'] . "',
'" . $_POST['Price0'] . "',
'" . $_POST['SuppUOM0'] . "',
'" . $_POST['ConversionFactor0'] . "',
'" . $_POST['SupplierDescription0'] . "',
'" . $_POST['LeadTime0'] . "',
'" . $Preferred . "',
'" . FormatDateForSQL($_POST['EffectiveFrom0']) . "',
'" . $_POST['SupplierPartNo0'] . "',
'" . $_POST['MinOrderQty0'] . "'
)";
$result=DB_query($sql);
}
}
if(isset($_GET['SupplierID'])) {
$SupplierID = trim(mb_strtoupper($_GET['SupplierID']));
} elseif(isset($_POST['SupplierID'])) {
$SupplierID = trim(mb_strtoupper($_POST['SupplierID']));
}
if(isset($SupplierID) AND $SupplierID != '' AND !isset($_POST['SearchSupplier'])) { /*NOT EDITING AN EXISTING BUT SUPPLIER selected OR ENTERED*/
$sql = "SELECT suppliers.suppname, suppliers.currcode FROM suppliers WHERE supplierid='".$SupplierID."'";
$ErrMsg = _('The supplier details for the selected supplier could not be retrieved because');
$DbgMsg = _('The SQL that failed was');
$SuppSelResult = DB_query($sql, $ErrMsg, $DbgMsg);
if(DB_num_rows($SuppSelResult) == 1) {
$MyRow = DB_fetch_array($SuppSelResult);
$SuppName = $MyRow['suppname'];
$CurrCode = $MyRow['currcode'];
} else {
prnMsg(_('The supplier code') . ' ' . $SupplierID . ' ' . _('is not an existing supplier in the database') . '. ' . _('You must enter an alternative supplier code or select a supplier using the search facility below'), 'error');
unset($SupplierID);
}
} else {
if($NoPurchasingData=0) {
echo '<p class="page_title_text"><img src="' . $RootPath . '/css/' . $Theme . '/images/maintenance.png" title="' . _('Search') . '" alt="" />' . ' ' .
$Title . ' ' . _('For Stock Code') . ' - ' . $StockID . '</p><br />';
}
if(!isset($_POST['SearchSupplier'])) {
echo '<p class="page_title_text"><img alt="" src="', $RootPath, '/css/', $Theme,
'/images/supplier.png" title="', // Icon image.
_('Search for a supplier'), '" /> ', // Icon title.
_('Search for a supplier'), '</p>';// Page title.
echo '<br />
<form action="', htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8'), '" method="post">
<input name="FormID" type="hidden" value="', $_SESSION['FormID'], '" />';
echo '<table cellpadding="3" class="selection"><tr>';
echo '<td>' . _('Text in the Supplier') . ' <b>' . _('NAME') . '</b>:</td>';
echo '<td><input maxlength="25" name="Keywords" size="20" type="text" /></td>';
echo '<td><b>' . _('OR') . '</b></td>';
echo '<td>' . _('Text in Supplier') . ' <b>' . _('CODE') . '</b>:</td>';
echo '<td><input maxlength="18" name="SupplierCode" size="15" type="text" /></td>';
echo '</tr></table><br />';
echo '<div class="centre"><input name="SearchSupplier" type="submit" value="' . _('Find Suppliers Now') . '" /></div>';
echo '</form>';
include ('includes/footer.php');
exit;
}
}
if(isset($_POST['SearchSupplier'])) {
if($_POST['Keywords'] == '' AND $_POST['SupplierCode'] == '') {
$_POST['Keywords'] = ' ';
}
if(mb_strlen($_POST['Keywords']) > 0) {
//insert wildcard characters in spaces
$SearchString = '%' . str_replace(' ', '%', $_POST['Keywords']) . '%';
$SQL = "SELECT suppliers.supplierid,
suppliers.suppname,
suppliers.currcode,
suppliers.address1,
suppliers.address2,
suppliers.address3
FROM suppliers WHERE suppliers.suppname " . LIKE . " '".$SearchString."'";
} elseif(mb_strlen($_POST['SupplierCode']) > 0) {
$SQL = "SELECT suppliers.supplierid,
suppliers.suppname,
suppliers.currcode,
suppliers.address1,
suppliers.address2,
suppliers.address3
FROM suppliers
WHERE suppliers.supplierid " . LIKE . " '%" . $_POST['SupplierCode'] . "%'";
} //one of keywords or SupplierCode was more than a zero length string
$ErrMsg = _('The suppliers matching the criteria entered could not be retrieved because');
$DbgMsg = _('The SQL to retrieve supplier details that failed was');
$SuppliersResult = DB_query($SQL, $ErrMsg, $DbgMsg);
} //end of if search
if(isset($SuppliersResult)) {
echo '<p class="page_title_text"><img alt="" src="', $RootPath, '/css/', $Theme,
'/images/supplier.png" title="', // Icon image.
_('Search'), '" /> ', // Icon title.
_('Select a supplier'), '</p>';// Page title.
echo '<br />
<form action="', htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8'), '" method="post">
<input name="FormID" type="hidden" value="' . $_SESSION['FormID'] . '" />';
echo '<table cellpadding="2" class="selection">
<tr>
<th>' . _('Code') . '</th>
<th>' . _('Supplier Name') . '</th>
<th>' . _('Currency') . '</th>
<th>' . _('Address 1') . '</th>
<th>' . _('Address 2') . '</th>
<th>' . _('Address 3') . '</th>
</tr>';
while($MyRow = DB_fetch_array($SuppliersResult)) {
echo '<tr class="striped_row">
<td><input name="SupplierID" type="submit" value="', $MyRow['supplierid'], '" /></td>
<td>', $MyRow['suppname'], '</td>
<td>', $MyRow['currcode'], '</td>
<td>', $MyRow['address1'], '</td>
<td>', $MyRow['address2'], '</td>
<td>', $MyRow['address3'], '</td>
</tr>';
}// END while($MyRow = DB_fetch_array($SuppliersResult)).
echo '</table>
</form>
<br />';
include('includes/footer.php');
exit;
}// END if(isset($SuppliersResult)).
if(isset($_POST['SupplierID'])) {
$MyRow = DB_fetch_array(DB_query("SELECT suppname FROM `suppliers` WHERE `supplierid`='" . $_POST['SupplierID'] . "'"));// Retrieve supplier's name from database.
$SuppName = $MyRow['suppname'];
echo '<p class="page_title_text"><img alt="" src="', $RootPath, '/css/', $Theme,
'/images/supplier.png" title="', // Icon image.
_('Search'), '" /> ', // Icon title.
_('Supplier Purchasing Data'), '<br />',
$_POST['SupplierID'], ' - ', $SuppName, '</p>';// Page title.
$SQL="SELECT purchdata.stockid,
stockmaster.description,
price,
suppliersuom,
conversionfactor,
supplierdescription,
leadtime,
preferred,
effectivefrom,
suppliers_partno,
minorderqty
FROM purchdata
INNER JOIN stockmaster
ON purchdata.stockid=stockmaster.stockid
WHERE supplierno='".$_POST['SupplierID']."'
ORDER BY purchdata.stockid, effectivefrom DESC";
$result=DB_query($SQL);
$UOMSQL = "SELECT unitid,
unitname
FROM unitsofmeasure";
$UOMResult = DB_query($UOMSQL);
echo '<br />
<form action="', htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8'), '" method="post">
<input name="FormID" type="hidden" value="', $_SESSION['FormID'], '" />
<input name="SupplierID" type="hidden" value="', $_POST['SupplierID'], '" />';
echo '<table class="selection">
<tr>
<th colspan="12" class="number">' . _('Find new Item Code') .
'<button type="submit" name="StockSearch"><img width="15" src="' . $RootPath . '/css/' . $Theme . '/images/magnifier.png" alt="" /></button></th>
</tr>';
echo '<tr>
<th>' . _('StockID') . '</th>
<th>' . _('Description') . '</th>
<th>' . _('Price') . '</th>
<th>' . _('Suppliers UOM') . '</th>
<th>' . _('Conversion Factor') . '</th>
<th>' . _('Suppliers Description') . '</th>
<th>' . _('Lead Time') . '</th>
<th>' . _('Preferred') . '</th>
<th>' . _('Effective From') . '</th>
<th>' . _('Suppliers Item Code') . '</th>
<th>' . _('Min Order Qty') . '</th>
<th>', _('Save'), '</th>
</tr>';// RChacon: Sortable by StockID, Description, Suppliers_Description, Suppliers_Description ?
if(isset($_POST['Select'])) {
$StockSQL = "SELECT description, units FROM stockmaster WHERE stockid='" . $_POST['Select'] . "'";
$StockResult = DB_query($StockSQL);
$StockRow = DB_fetch_array($StockResult);
// RChacon: if exist, retrieve data, not a blank line?
echo '<tr bgcolor="#847F7F">
<td><input type="hidden" value="' . $_POST['Select'] . '" name="StockID0" />' . $_POST['Select'] . '</td>
<td>' . $StockRow['description'] . '</td>
<td><input type="text" class="number" size="11" value="0.0000" name="Price0" /></td>
<td><select name="SuppUOM0">';
while($UOMRow=DB_fetch_array($UOMResult)) {
if($UOMRow['unitname']==$StRowoc['units']) {
echo '<option selected="selected" value="'.$UOMRow['unitname'].'">' . $UOMRow['unitname'] . '</option>';
} else {
echo '<option value="'.$UOMRow['unitname'].'">' . $UOMRow['unitname'] . '</option>';
}
}
DB_data_seek($UOMResult, 0);
echo '</select></td>
<td><input class="number" name="ConversionFactor0" size="11" type="text" value="1" /></td>
<td><input maxlength="50" name="SupplierDescription0" size="30" type="text" value="" /></td>
<td><input class="number" name="LeadTime0" size="11" type="text" value="1" /></td>
<td><input name="Preferred0" type="checkbox" /></td>
<td><input class="date" name="EffectiveFrom0" size="11" type="text" value="', date( $_SESSION['DefaultDateFormat']), '" /></td>
<td><input maxlength="50" name="SupplierPartNo0" size="20" type="text" value="" /></td>
<td><input class="number" name="MinOrderQty0" size="11" type="text" value="1" /></td>
<td><button name="Insert" type="submit" style="width:100%;text-align:left"><img alt="" src="' . $RootPath . '/css/' . $Theme . '/images/tick.svg" width="15" /></button></td>
</tr>';
}
$RowCounter = 1;
while($MyRow = DB_fetch_array($result)) {
echo '<tr>
<td class="text"><input name="StockID'. $RowCounter. '" type="hidden" value="' . $MyRow['stockid'] . '" />' . $MyRow['stockid'] . '</td>
<td class="text">' . $MyRow['description'], '</td>
<td><input class="number" size="11" type="text" value="', locale_number_format($MyRow['price'], 4), // Show price in locale user format. RChacon: Decimals from parameters ?
'" name="Price'.$RowCounter.'" /></td>
<td><select name="SuppUOM'.$RowCounter.'">';
DB_data_seek($UOMResult, 0);
while($UOMRow=DB_fetch_array($UOMResult)) {
if($UOMRow['unitname']==$MyRow['suppliersuom']) {
echo '<option selected="selected" value="'.$UOMRow['unitname'].'">' . $UOMRow['unitname'] . '</option>';
} else {
echo '<option value="'.$UOMRow['unitname'].'">' . $UOMRow['unitname'] . '</option>';
}
}
echo '</select></td>
<td><input class="number" name="ConversionFactor'. $RowCounter. '" size="11" type="text" value="' . $MyRow['conversionfactor'] . '" /></td>
<td><input maxlength="50" name="SupplierDescription'. $RowCounter. '" size="30" type="text" value="' . $MyRow['supplierdescription'] . '" /></td>
<td><input class="number" name="LeadTime'. $RowCounter. '" size="11" type="text" value="' . $MyRow['leadtime'] . '" /></td>';
if($MyRow['preferred'] == 1) {
echo '<td><input checked="checked" name="Preferred'. $RowCounter. '" type="checkbox" /></td>';
} else {
echo '<td><input name="Preferred'. $RowCounter. '" type="checkbox" /></td>';
}
echo '<td><input class="date" size="11" name="EffectiveFrom'. $RowCounter. '" type="text" value="' . ConvertSQLDate($MyRow['effectivefrom']) . '" /></td>
<td><input maxlength="50" name="SupplierPartNo'. $RowCounter. '" size="20" type="text" value="' . $MyRow['suppliers_partno'] . '" /></td>
<td><input class="number" name="MinOrderQty'. $RowCounter. '" size="11" type="text" value="' . $MyRow['minorderqty'] . '" /></td>
<td><button type="submit" style="width:100%;text-align:left" name="Update'.$RowCounter.'"><img alt="" src="' . $RootPath . '/css/' . $Theme . '/images/tick.svg" width="15" /></button></td>
</tr>';
$RowCounter++;
}
echo '</table>';
echo '</form>';
include('includes/footer.php');
exit;
}
?>