-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDiscountCategories.php
executable file
·251 lines (207 loc) · 9.15 KB
/
DiscountCategories.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
<?php
/* $Id: DiscountCategories.php 4622 2011-07-03 04:33:19Z daintree $*/
include('includes/session.inc');
$title = _('Discount Categories Maintenance');
include('includes/header.inc');
echo '<p class="page_title_text"><img src="'.$rootpath.'/css/'.$theme.'/images/maintenance.png" title="' . _('Search') . '" alt="" />' . ' ' . $title.'</p><br />';
if (isset($_POST['stockID'])) {
$_POST['StockID']=$_POST['stockID'];
} elseif (isset($_GET['StockID'])) {
$_POST['StockID']=$_GET['StockID'];
$_POST['ChooseOption']=1;
$_POST['selectchoice']=1;
}
if (isset($_POST['submit'])) {
//initialise no input errors assumed initially before we test
$InputError = 0;
/* actions to take once the user has clicked the submit button
ie the page has called itself with some user input */
//first off validate inputs sensible
$result = DB_query("SELECT stockid
FROM stockmaster
WHERE mbflag <>'K'
AND mbflag<>'D'
AND stockid='" . mb_strtoupper($_POST['StockID']) . "'",$db);
if (DB_num_rows($result)==0){
$InputError = 1;
prnMsg(_('The stock item entered must be set up as either a manufactured or purchased or assembly item'),'warn');
}
if ($InputError !=1) {
$sql = "UPDATE stockmaster SET discountcategory='" . $_POST['DiscountCategory'] . "'
WHERE stockid='" . mb_strtoupper($_POST['StockID']) . "'";
$result = DB_query($sql,$db, _('The discount category') . ' ' . $_POST['DiscountCategory'] . ' ' . _('record for') . ' ' . mb_strtoupper($_POST['StockID']) . ' ' . _('could not be updated because'));
prnMsg(_('The stock master has been updated with this discount category'),'success');
unset($_POST['DiscountCategory']);
unset($_POST['StockID']);
}
} elseif (isset($_GET['Delete']) and $_GET['Delete']=='yes') {
/*the link to delete a selected record was clicked instead of the submit button */
$sql="UPDATE stockmaster SET discountcategory='' WHERE stockid='" . trim(mb_strtoupper($_GET['StockID'])) ."'";
$result = DB_query($sql,$db);
prnMsg( _('The stock master record has been updated to no discount category'),'success');
echo '<br />';
} elseif (isset($_POST['SubmitCategory'])) {
$sql="UPDATE stockmaster
SET discountcategory='".$_POST['DiscountCategory']."'
WHERE categoryid='".$_POST['stockcategory']."'";
$result=DB_query($sql, $db);
}
if (isset($_POST['selectchoice'])) {
echo '<form name="update" method="post" action="' . htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '">';
echo '<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />';
$sql = "SELECT DISTINCT discountcategory FROM stockmaster WHERE discountcategory <>''";
$result = DB_query($sql, $db);
if (DB_num_rows($result) > 0) {
echo '<table class="selection"><tr><td>'. _('Discount Category Code') .': </td>';
echo '<td><select name="DiscCat" onChange="ReloadForm(update.select)">';
while ($myrow = DB_fetch_array($result)){
if ($myrow['discountcategory']==$_POST['DiscCat']){
echo '<option selected value="' . $myrow['discountcategory'] . '">' . $myrow['discountcategory'] . '</option>';
} else {
echo '<option value="' . $myrow['discountcategory'] . '">' . $myrow['discountcategory'] . '</option>';
}
}
echo '</select></td>';
echo '<td><button type="submit" name="select">'._('Select').'</button></td>
</tr>
</table>
<br />';
}
echo '<form method="post" action="' . htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '">';
echo '<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />';
echo '<input type="hidden" name="ChooseOption" value="'.$_POST['ChooseOption'].'" />';
echo '<input type="hidden" name="selectchoice" value="'.$_POST['selectchoice'].'" />';
if (isset($_POST['ChooseOption']) and $_POST['ChooseOption']==1) {
echo '<table class="selection"><tr><td>'. _('Discount Category Code') .':</td><td>';
if (isset($_POST['DiscCat'])) {
echo '<input type="text" name="DiscountCategory" maxlength="2" size="2" value="' . $_POST['DiscCat'] .'" /></td>
<td>'._('OR') . '</td>
<td></td>
<td>'._('OR').'</td>
</tr>';
} else {
echo '<input type="text" name="DiscountCategory" maxlength="2" size="2" /></td>
<td>' ._('OR') . '</td>
<td></td>
<td>'._('OR') . '</td>
</tr>';
}
if (!isset($_POST['StockID'])) {
$_POST['StockID']='';
}
if (!isset($_POST['PartID'])) {
$_POST['PartID']='';
}
if (!isset($_POST['PartDesc'])) {
$_POST['PartDesc']='';
}
echo '<tr><td>'. _('Enter Stock Code') .':</td>
<td><input type="text" name="StockID" size="20" maxlength="20" value="' . $_POST['StockID'] . '" /></td>
<td>'._('Partial code') . ':</td>
<td><input type="text" name="PartID" size="10" maxlength="10" value="' . $_POST['PartID'] . '" /></td>
<td>' . _('Partial description') . ':</td>
<td><input type="text" name="PartDesc" size="10" value="' . $_POST['PartDesc'] .'" maxlength="10" /></td>
<td><button type="submit" name="search">' . _('Search') .'</button></td>
</tr>';
echo '</table>';
echo '<br /><div class="centre"><button type="submit" name="submit">'. _('Update Item') .'</button></div>';
if (isset($_POST['search'])) {
if ($_POST['PartID']!='' and $_POST['PartDesc']=='')
$sql="SELECT stockid, description FROM stockmaster
WHERE stockid " . LIKE . " '%".$_POST['PartID']."%'";
if ($_POST['PartID']=='' and $_POST['PartDesc']!='')
$sql="SELECT stockid, description FROM stockmaster
WHERE description " . LIKE . " '%".$_POST['PartDesc']."%'";
if ($_POST['PartID']!='' and $_POST['PartDesc']!='')
$sql="SELECT stockid, description FROM stockmaster
WHERE stockid " . LIKE . " '%".$_POST['PartID']."%'
AND description " . LIKE . " '%".$_POST['PartDesc']."%'";
$result=DB_query($sql,$db);
if (!isset($_POST['stockID'])) {
echo _('Select a part code').':<br />';
while ($myrow=DB_fetch_array($result)) {
echo '<button type="submit" name="stockID">'.$myrow['stockid'].'</button><br />';
}
}
}
} else {
echo '<table class=selection>
<tr>
<td>'._('Assign discount category').'</td>';
echo '<td><input type="text" name="DiscountCategory" maxlength="2" size="2" /></td>';
echo '<td>'._('to all items in stock category').'</td>';
$sql = "SELECT categoryid,
categorydescription
FROM stockcategory";
$result = DB_query($sql, $db);
echo '<td><select name="stockcategory">';
while ($myrow=DB_fetch_array($result)) {
echo '<option value="'.$myrow['categoryid'].'">'.$myrow['categorydescription'].'</option>';
}
echo '</select></td></tr></table>';
echo '<br /><div class="centre"><button type="submit" name="SubmitCategory">'. _('Update Items') .'</button></div>';
}
echo '</form>';
if (! isset($_POST['DiscCat'])){ /*set DiscCat to something to show results for first cat defined */
$sql = "SELECT DISTINCT discountcategory FROM stockmaster WHERE discountcategory <>''";
$result = DB_query($sql, $db);
if (DB_num_rows($result)>0){
DB_data_seek($result,0);
$myrow = DB_fetch_array($result);
$_POST['DiscCat'] = $myrow['discountcategory'];
} else {
$_POST['DiscCat']='0';
}
}
if ($_POST['DiscCat']!='0'){
$sql = "SELECT stockmaster.stockid,
stockmaster.description,
discountcategory
FROM stockmaster
WHERE discountcategory='" . $_POST['DiscCat'] . "'
ORDER BY stockmaster.stockid";
$result = DB_query($sql,$db);
echo '<br /><table class="selection">';
echo '<tr>
<th>'. _('Discount Category') .'</th>
<th>'. _('Item') .'</th></tr>';
$k=0; //row colour counter
while ($myrow = DB_fetch_array($result)) {
if ($k==1){
echo '<tr class="EvenTableRows">';
$k=0;
} else {
echo '<tr class="OddTableRows">';
$k=1;
}
$DeleteURL = htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '?Delete=yes&StockID=' . $myrow['stockid'] . '&DiscountCategory=' . $myrow['discountcategory'];
printf('<td>%s</td>
<td>%s - %s</td>
<td><a href="%s" onclick="return confirm(\'' . _('Are you sure you wish to delete this discount category?') . '\');">'. _('Delete') .'</td>
</tr>',
$myrow['discountcategory'],
$myrow['stockid'],
$myrow['description'],
$DeleteURL);
}
echo '</table>';
} else { /* $_POST['DiscCat'] ==0 */
echo '</div><br />';
prnMsg( _('There are currently no discount categories defined') . '. ' . _('Enter a two character abbreviation for the discount category and the stock code to which this category will apply to. Discount rules can then be applied to this discount category'),'info');
}
}
if (!isset($_POST['selectchoice'])) {
echo '<form method="post" name="choose" action="' . htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '">';
echo '<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />';
echo '<table class="selection">';
echo '<tr><td>'._('Update discount category for').'</td>';
echo '<td><select name="ChooseOption" onChange="ReloadForm(choose.selectchoice)">';
echo '<option value="1">'._('a single stock item').'</option>';
echo '<option value="2">'._('a complete stock category').'</option>';
echo '</select></td></tr>
</table>
<br />';
echo '<div class="centre"><button type="submit" name="selectchoice">'._('Select').'</button></div><br />';
}
include('includes/footer.inc');
?>