forked from timschofield/webERP
-
Notifications
You must be signed in to change notification settings - Fork 89
/
CustItem.php
463 lines (415 loc) · 17.4 KB
/
CustItem.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
<?php
include ('includes/session.php');
$Title = _('Customer Item Data');
include ('includes/header.php');
if (isset($_GET['DebtorNo'])) {
$DebtorNo = trim(mb_strtoupper($_GET['DebtorNo']));
} elseif (isset($_POST['DebtorNo'])) {
$DebtorNo = trim(mb_strtoupper($_POST['DebtorNo']));
}
if (isset($_GET['StockID'])) {
$StockID = trim(mb_strtoupper($_GET['StockID']));
} elseif (isset($_POST['StockID'])) {
$StockID = trim(mb_strtoupper($_POST['StockID']));
}
if (isset($_GET['Edit'])) {
$Edit = true;
} elseif (isset($_POST['Edit'])) {
$Edit = true;
} else {
$Edit = false;
}
if (isset($_POST['StockUOM'])) {
$StockUOM=$_POST['StockUOM'];
}
$NoCustItemData=0;
echo '<a href="' . $RootPath . '/SelectProduct.php">' . _('Back to Items') . '</a><br />';
if (isset($_POST['cust_description'])) {
$_POST['cust_description'] = trim($_POST['cust_description']);
}
if (isset($_POST['cust_part'])) {
$_POST['cust_part'] = trim($_POST['cust_part']);
}
if ((isset($_POST['AddRecord']) OR isset($_POST['UpdateRecord'])) AND isset($DebtorNo)) { /*Validate Inputs */
$InputError = 0; /*Start assuming the best */
if ($StockID == '' OR !isset($StockID)) {
$InputError = 1;
prnMsg(_('There is no stock item set up enter the stock code or select a stock item using the search page'), 'error');
}
if (!is_numeric(filter_number_format($_POST['ConversionFactor']))) {
$InputError = 1;
unset($_POST['ConversionFactor']);
prnMsg(_('The conversion factor entered was not numeric') . ' (' . _('a number is expected') . '). ' . _('The conversion factor is the number which the price must be divided by to get the unit price in our unit of measure') . '. <br />' . _('E.g.') . ' ' . _('The customer sells an item by the tonne and we hold stock by the kg') . '. ' . _('The debtorsmaster.price must be divided by 1000 to get to our cost per kg') . '. ' . _('The conversion factor to enter is 1000') . '. <br /><br />' . _('No changes will be made to the database'), 'error');
}
if ($InputError == 0 AND isset($_POST['AddRecord'])) {
$sql = "INSERT INTO custitem (debtorno,
stockid,
customersuom,
conversionfactor,
cust_description,
cust_part)
VALUES ('" . $DebtorNo . "',
'" . $StockID . "',
'" . $_POST['customersUOM'] . "',
'" . filter_number_format($_POST['ConversionFactor']) . "',
'" . $_POST['cust_description'] . "',
'" . $_POST['cust_part'] . "')";
$ErrMsg = _('The customer Item details could not be added to the database because');
$DbgMsg = _('The SQL that failed was');
$AddResult = DB_query($sql, $ErrMsg, $DbgMsg);
prnMsg(_('This customer data has been added to the database'), 'success');
unset($debtorsmasterResult);
}
if ($InputError == 0 AND isset($_POST['UpdateRecord'])) {
$sql = "UPDATE custitem SET customersuom='" . $_POST['customersUOM'] . "',
conversionfactor='" . filter_number_format($_POST['ConversionFactor']) . "',
cust_description='" . $_POST['cust_description'] . "',
custitem.cust_part='" . $_POST['cust_part'] . "'
WHERE custitem.stockid='" . $StockID . "'
AND custitem.debtorno='" . $DebtorNo . "'";
$ErrMsg = _('The customer details could not be updated because');
$DbgMsg = _('The SQL that failed was');
$UpdResult = DB_query($sql, $ErrMsg, $DbgMsg);
prnMsg(_('customer data has been updated'), 'success');
unset($Edit);
unset($debtorsmasterResult);
unset($DebtorNo);
}
if ($InputError == 0 AND isset($_POST['AddRecord'])) {
/* insert took place and need to clear the form */
unset($DebtorNo);
unset($_POST['customersUOM']);
unset($_POST['ConversionFactor']);
unset($_POST['cust_description']);
unset($_POST['cust_part']);
}
}
if (isset($_GET['Delete'])) {
$sql = "DELETE FROM custitem
WHERE custitem.debtorno='" . $DebtorNo . "'
AND custitem.stockid='" . $StockID . "'";
$ErrMsg = _('The customer details could not be deleted because');
$DelResult = DB_query($sql, $ErrMsg);
prnMsg(_('This customer data record has been successfully deleted'), 'success');
unset($DebtorNo);
}
if ($Edit == false) {
$ItemResult = DB_query("SELECT description FROM stockmaster WHERE stockid='" . $StockID . "'");
$DescriptionRow = DB_fetch_array($ItemResult);
echo '<p class="page_title_text"><img src="' . $RootPath . '/css/' . $Theme . '/images/maintenance.png" title="' . _('Search') . '" alt="" />' . ' ' . $Title . ' ' . _('For Stock Code') . ' - ' . $StockID . ' - ' . $DescriptionRow['description'] . '</p><br />';
$sql = "SELECT custitem.debtorno,
debtorsmaster.name,
debtorsmaster.currcode,
custitem.customersUOM,
custitem.conversionfactor,
custitem.cust_description,
custitem.cust_part,
currencies.decimalplaces AS currdecimalplaces
FROM custitem INNER JOIN debtorsmaster
ON custitem.debtorno=debtorsmaster.DebtorNo
INNER JOIN currencies
ON debtorsmaster.currcode=currencies.currabrev
WHERE custitem.stockid = '" . $StockID . "'";
$ErrMsg = _('The customer details for the selected part could not be retrieved because');
$custitemResult = DB_query($sql, $ErrMsg);
if (DB_num_rows($custitemResult) == 0 and $StockID != '') {
prnMsg(_('There is no customer data set up for the part selected'), 'info');
$NoCustItemData=1;
} else if ($StockID != '') {
echo '<table cellpadding="2" class="selection">
<thead>
<tr>
<th class="ascending">' . _('Customer') . '</th>
<th>' . _('Customer Unit') . '</th>
<th>' . _('Conversion Factor') . '</th>
<th class="ascending">' . _('Customer Item') . '</th>
<th class="ascending">' . _('Customer Description') . '</th>
</tr>
</thead>
<tbody>';
while ($myrow = DB_fetch_array($custitemResult)) {
printf('<tr class="striped_row">
<td>%s</td>
<td>%s</td>
<td class="number">%s</td>
<td>%s</td>
<td>%s</td>
<td><a href="%s?StockID=%s&DebtorNo=%s&Edit=1">' . _('Edit') . '</a></td>
<td><a href="%s?StockID=%s&DebtorNo=%s&Delete=1" onclick=\'return confirm("' . _('Are you sure you wish to delete this customer data?') . '");\'>' . _('Delete') . '</a></td>
</tr>',
$myrow['name'],
$myrow['customersUOM'],
locale_number_format($myrow['conversionfactor'],'Variable'),
$myrow['cust_part'],
$myrow['cust_description'],
htmlspecialchars($_SERVER['PHP_SELF']),
$StockID,
$myrow['debtorno'],
htmlspecialchars($_SERVER['PHP_SELF']),
$StockID,
$myrow['debtorno']);
} //end of while loop
echo '</tbody>
</table><br/>';
} // end of there are rows to show
echo '<br/>';
} /* Only show the existing records if one is not being edited */
if (isset($DebtorNo) AND $DebtorNo != '' AND !isset($_POST['Searchcustomer'])) {
/*NOT EDITING AN EXISTING BUT customer selected OR ENTERED*/
$sql = "SELECT debtorsmaster.name,
debtorsmaster.currcode,
currencies.decimalplaces AS currdecimalplaces
FROM debtorsmaster
INNER JOIN currencies
ON debtorsmaster.currcode=currencies.currabrev
WHERE DebtorNo='".$DebtorNo."'";
$ErrMsg = _('The customer details for the selected customer 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);
$name = $myrow['name'];
$CurrCode = $myrow['currcode'];
$CurrDecimalPlaces = $myrow['currdecimalplaces'];
} else {
prnMsg(_('The customer code') . ' ' . $DebtorNo . ' ' . _('is not an existing customer in the database') . '. ' . _('You must enter an alternative customer code or select a customer using the search facility below'), 'error');
unset($DebtorNo);
}
} else {
if ($NoCustItemData==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['Searchcustomer'])) {
echo '<form action="' . htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '" method="post">
<table cellpadding="3" colspan="4" class="selection">
<tr>
<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />
<input type="hidden" name="StockID" value="' . $StockID . '" />
<td>' . _('Text in the customer') . ' <b>' . _('NAME') . '</b>:</td>
<td><input type="text" name="Keywords" size="20" maxlength="25" /></td>
<td><b>' . _('OR') . '</b></td>
<td>' . _('Text in customer') . ' <b>' . _('CODE') . '</b>:</td>
<td><input type="text" name="cust_no" data-type="no-illegal-chars" size="20" maxlength="50" /></td>
</tr>
</table>
<br />
<div class="centre">
<input type="submit" name="Searchcustomer" value="' . _('Find Customers Now') . '" />
</div>
</form>';
include ('includes/footer.php');
exit;
}
}
if ($Edit == true) {
$ItemResult = DB_query("SELECT description FROM stockmaster WHERE stockid='" . $StockID . "'");
$DescriptionRow = DB_fetch_array($ItemResult);
echo '<p class="page_title_text"><img src="' . $RootPath . '/css/' . $Theme . '/images/maintenance.png" title="' . _('Search') . '" alt="" />' . ' ' . $Title . ' ' . _('For Stock Code') . ' - ' . $StockID . ' - ' . $DescriptionRow['description'] . '</p><br />';
}
if (isset($_POST['Searchcustomer'])) {
if (isset($_POST['Keywords']) AND isset($_POST['cust_no'])) {
prnMsg( _('Customer Name keywords have been used in preference to the customer Code extract entered') . '.', 'info' );
echo '<br />';
}
if ($_POST['Keywords'] == '' AND $_POST['cust_no'] == '') {
$_POST['Keywords'] = ' ';
}
if (mb_strlen($_POST['Keywords']) > 0) {
//insert wildcard characters in spaces
$SearchString = '%' . str_replace(' ', '%', $_POST['Keywords']) . '%';
$SQL = "SELECT debtorsmaster.DebtorNo,
debtorsmaster.name,
debtorsmaster.currcode,
debtorsmaster.address1,
debtorsmaster.address2,
debtorsmaster.address3
FROM debtorsmaster
WHERE debtorsmaster.name " . LIKE . " '".$SearchString."'";
} elseif (mb_strlen($_POST['cust_no']) > 0) {
$SQL = "SELECT debtorsmaster.DebtorNo,
debtorsmaster.name,
debtorsmaster.currcode,
debtorsmaster.address1,
debtorsmaster.address2,
debtorsmaster.address3
FROM debtorsmaster
WHERE debtorsmaster.DebtorNo " . LIKE . " '%" . $_POST['cust_no'] . "%'";
} //one of keywords or cust_part was more than a zero length string
$ErrMsg = _('The cuswtomer matching the criteria entered could not be retrieved because');
$DbgMsg = _('The SQL to retrieve customer details that failed was');
$debtorsmasterResult = DB_query($SQL, $ErrMsg, $DbgMsg);
} //end of if search
if (isset($debtorsmasterResult) AND DB_num_rows($debtorsmasterResult) > 0) {
if (isset($StockID)) {
$result = DB_query("SELECT stockmaster.description,
stockmaster.units,
stockmaster.mbflag
FROM stockmaster
WHERE stockmaster.stockid='".$StockID."'");
$myrow = DB_fetch_row($result);
$StockUOM = $myrow[1];
if (DB_num_rows($result) <> 1) {
prnMsg(_('Stock Item') . ' - ' . $StockID . ' ' . _('is not defined in the database'), 'warn');
}
} else {
$StockID = '';
$StockUOM = 'each';
}
echo '<form action="' . htmlspecialchars($_SERVER['PHP_SELF']) . '" method="post">
<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />
<table cellpadding="2" colspan="7" class="selection">
<thead>
<tr>
<th class="ascending">' . _('Code') . '</th>
<th class="ascending">' . _('Customer Name') . '</th>
<th class="ascending">' . _('Currency') . '</th>
<th class="ascending">' . _('Address 1') . '</th>
<th class="ascending">' . _('Address 2') . '</th>
<th class="ascending">' . _('Address 3') . '</th>
</tr>
</thead>
<tbody>';
while ($myrow = DB_fetch_array($debtorsmasterResult)) {
printf('<tr class="striped_row">
<td><input type="submit" name="DebtorNo" value="%s" /></td>
<td>%s</td>
<td>%s</td>
<td>%s</td>
<td>%s</td>
<td>%s</td>
</tr>',
$myrow['DebtorNo'],
$myrow['name'],
$myrow['currcode'],
$myrow['address1'],
$myrow['address2'],
$myrow['address3']);
echo '<input type="hidden" name="StockID" value="' . $StockID . '" />';
echo '<input type="hidden" name="StockUOM" value="' . $StockUOM . '" />';
}
//end of while loop
echo '</tbody>
</table>
<br/>
</form>';
}
//end if results to show
/*Show the input form for new customer details */
if (!isset($debtorsmasterResult)) {
if ($Edit == true OR isset($_GET['Copy'])) {
$sql = "SELECT custitem.debtorno,
debtorsmaster.name,
debtorsmaster.currcode,
custitem.customersUOM,
custitem.cust_description,
custitem.conversionfactor,
custitem.cust_part,
stockmaster.units,
currencies.decimalplaces AS currdecimalplaces
FROM custitem INNER JOIN debtorsmaster
ON custitem.debtorno=debtorsmaster.DebtorNo
INNER JOIN stockmaster
ON custitem.stockid=stockmaster.stockid
INNER JOIN currencies
ON debtorsmaster.currcode = currencies.currabrev
WHERE custitem.debtorno='" . $DebtorNo . "'
AND custitem.stockid='" . $StockID . "'";
$ErrMsg = _('The customer purchasing details for the selected customer and item could not be retrieved because');
$EditResult = DB_query($sql, $ErrMsg);
$myrow = DB_fetch_array($EditResult);
$name = $myrow['name'];
$CurrCode = $myrow['currcode'];
$CurrDecimalPlaces = $myrow['currdecimalplaces'];
$_POST['customersUOM'] = $myrow['customersUOM'];
$_POST['cust_description'] = $myrow['cust_description'];
$_POST['ConversionFactor'] = locale_number_format($myrow['conversionfactor'],'Variable');
$_POST['cust_part'] = $myrow['cust_part'];
$StockUOM=$myrow['units'];
}
echo '<form action="' . htmlspecialchars($_SERVER['PHP_SELF']) . '" method="post">
<table class="selection">';
echo '<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />';
if (!isset($DebtorNo)) {
$DebtorNo = '';
}
if ($Edit == true) {
echo '<tr>
<td>' . _('Customer Name') . ':</td>
<td><input type="hidden" name="DebtorNo" value="' . $DebtorNo . '" />' . $DebtorNo . ' - ' . $name . '</td>
</tr>';
} else {
echo '<tr>
<td>' . _('Customer Name') . ':</td>
<input type="hidden" name="DebtorNo" maxlength="10" size="11" value="' . $DebtorNo . '" />';
if ($DebtorNo!='') {
echo '<td>' . $name;
}
if (!isset($name) OR $name = '') {
echo '(' . _('A search facility is available below if necessary') . ')';
} else {
echo '<td>' . $name;
}
echo '</td></tr>';
}
echo '<td><input type="hidden" name="StockID" maxlength="10" size="11" value="' . $StockID . '" />';
if (!isset($CurrCode)) {
$CurrCode = '';
}
if (!isset($_POST['customersUOM'])) {
$_POST['customersUOM'] = '';
}
if (!isset($_POST['cust_description'])) {
$_POST['cust_description'] = '';
}
if (!isset($_POST['cust_part'])) {
$_POST['cust_part'] = '';
}
echo '<tr>
<td>' . _('Currency') . ':</td>
<td><input type="hidden" name="CurrCode" . value="' . $CurrCode . '" />' . $CurrCode . '</td>
</tr>
<tr>
<td>' . _('Our Unit of Measure') . ':</td>';
if (isset($DebtorNo)) {
echo '<td>' . $StockUOM . '</td></tr>';
}
echo '<tr>
<td>' . _('Customer Unit of Measure') . ':</td>
<td><input type="text" name="customersUOM" size="20" maxlength="20" value ="' . $_POST['customersUOM'] . '"/></td>
</tr>';
if (!isset($_POST['ConversionFactor']) OR $_POST['ConversionFactor'] == '') {
$_POST['ConversionFactor'] = 1;
}
echo '<tr>
<td>' . _('Conversion Factor (to our UOM)') . ':</td>
<td><input type="text" class="number" name="ConversionFactor" maxlength="12" size="12" value="' . $_POST['ConversionFactor'] . '" /></td>
</tr>
<tr>
<td>' . _('Customer Stock Code') . ':</td>
<td><input type="text" name="cust_part" maxlength="20" size="20" value="' . $_POST['cust_part'] . '" /></td>
</tr>
<tr>
<td>' . _('Customer Stock Description') . ':</td>
<td><input type="text" name="cust_description" maxlength="30" size="30" value="' . $_POST['cust_description'] . '" /></td>
</tr>';
echo '</table>
<br />
<div class="centre">';
if ($Edit == true) {
echo '<input type="submit" name="UpdateRecord" value="' . _('Update') . '" />';
echo '<input type="hidden" name="Edit" value="1" />';
} else {
echo '<input type="submit" name="AddRecord" value="' . _('Add') . '" />';
}
echo '</div>
<div class="centre">';
if (isset($StockLocation) AND isset($StockID) AND mb_strlen($StockID) != 0) {
echo '<br /><a href="' . $RootPath . '/StockStatus.php?StockID=' . $StockID . '">' . _('Show Stock Status') . '</a>';
echo '<br /><a href="' . $RootPath . '/StockMovements.php?StockID=' . $StockID . '&StockLocation=' . $StockLocation . '">' . _('Show Stock Movements') . '</a>';
echo '<br /><a href="' . $RootPath . '/SelectSalesOrder.php?SelectedStockItem=' . $StockID . '&StockLocation=' . $StockLocation . '">' . _('Search Outstanding Sales Orders') . '</a>';
echo '<br /><a href="' . $RootPath . '/SelectCompletedOrder.php?SelectedStockItem=' . $StockID . '">' . _('Search Completed Sales Orders') . '</a>';
}
echo '</form></div>';
}
include ('includes/footer.php');
?>