forked from KwaMoja/KwaMoja
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathAreas.php
More file actions
244 lines (208 loc) · 9.16 KB
/
Areas.php
File metadata and controls
244 lines (208 loc) · 9.16 KB
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
<?php
include ('includes/session.php');
$Title = _('Sales Area Maintenance');
$ViewTopic = 'CreatingNewSystem';
$BookMark = 'Areas';
include ('includes/header.php');
echo '<p class="page_title_text">
<img src="', $RootPath, '/css/', $_SESSION['Theme'], '/images/maintenance.png" title="', _('Search'), '" alt="" />', ' ', $Title, '
</p>';
if (isset($_GET['SelectedArea'])) {
$SelectedArea = mb_strtoupper($_GET['SelectedArea']);
} elseif (isset($_POST['SelectedArea'])) {
$SelectedArea = mb_strtoupper($_POST['SelectedArea']);
}
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
$_POST['AreaCode'] = mb_strtoupper($_POST['AreaCode']);
$SQL = "SELECT areacode FROM areas WHERE areacode='" . $_POST['AreaCode'] . "'";
$Result = DB_query($SQL);
// mod to handle 3 char area codes
if (mb_strlen(stripslashes($_POST['AreaCode'])) > 3) {
$InputError = 1;
prnMsg(_('The area code must be three characters or less long'), 'error');
} elseif (DB_num_rows($Result) > 0 and !isset($SelectedArea)) {
$InputError = 1;
prnMsg(_('The area code entered already exists'), 'error');
} elseif (mb_strlen($_POST['AreaDescription']) > 25) {
$InputError = 1;
prnMsg(_('The area description must be twenty five characters or less long'), 'error');
} elseif (trim($_POST['AreaCode']) == '') {
$InputError = 1;
prnMsg(_('The area code may not be empty'), 'error');
} elseif (trim($_POST['AreaDescription']) == '') {
$InputError = 1;
prnMsg(_('The area description may not be empty'), 'error');
}
if (isset($SelectedArea) and $InputError != 1) {
/*SelectedArea could also exist if submit had not been clicked this code would not run in this case cos submit is false of course see the delete code below*/
$SQL = "UPDATE areas SET areadescription='" . $_POST['AreaDescription'] . "',
parentarea='" . $_POST['ParentArea'] . "'
WHERE areacode = '" . stripslashes($SelectedArea) . "'";
$Msg = _('Area code') . ' ' . stripslashes($SelectedArea) . ' ' . _('has been updated');
} elseif ($InputError != 1) {
/*Selectedarea is null cos no item selected on first time round so must be adding a record must be submitting new entries in the new area form */
$SQL = "INSERT INTO areas (areacode,
parentarea,
areadescription
) VALUES (
'" . $_POST['AreaCode'] . "',
'" . $_POST['ParentArea'] . "',
'" . $_POST['AreaDescription'] . "'
)";
$SelectedArea = $_POST['AreaCode'];
$Msg = _('New area code') . ' ' . stripslashes($_POST['AreaCode']) . ' ' . _('has been inserted');
} else {
$Msg = '';
}
//run the SQL from either of the above possibilites
if ($InputError != 1) {
$ErrMsg = _('The area could not be added or updated because');
$DbgMsg = _('The SQL that failed was');
$Result = DB_query($SQL, $ErrMsg, $DbgMsg);
unset($SelectedArea);
unset($_POST['AreaCode']);
unset($_POST['AreaDescription']);
prnMsg($Msg, 'success');
}
} elseif (isset($_GET['delete'])) {
//the link to delete a selected record was clicked instead of the submit button
$CancelDelete = 0;
// PREVENT DELETES IF DEPENDENT RECORDS IN 'DebtorsMaster'
$SQL = "SELECT COUNT(branchcode) AS branches FROM custbranch WHERE custbranch.area='$SelectedArea'";
$Result = DB_query($SQL);
$MyRow = DB_fetch_array($Result);
if ($MyRow['branches'] > 0) {
$CancelDelete = 1;
prnMsg(_('Cannot delete this area because customer branches have been created using this area'), 'warn');
echo '<br />' . _('There are') . ' ' . $MyRow['branches'] . ' ' . _('branches using this area code');
} else {
$SQL = "SELECT COUNT(area) AS records FROM salesanalysis WHERE salesanalysis.area ='$SelectedArea'";
$Result = DB_query($SQL);
$MyRow = DB_fetch_array($Result);
if ($MyRow['records'] > 0) {
$CancelDelete = 1;
prnMsg(_('Cannot delete this area because sales analysis records exist that use this area'), 'warn');
echo '<br />' . _('There are') . ' ' . $MyRow['records'] . ' ' . _('sales analysis records referring this area code');
}
}
if ($CancelDelete == 0) {
$SQL = "DELETE FROM areas WHERE areacode='" . $SelectedArea . "'";
$Result = DB_query($SQL);
prnMsg(_('Area Code') . ' ' . stripslashes($SelectedArea) . ' ' . _('has been deleted') . ' !', 'success');
} //end if Delete area
unset($SelectedArea);
unset($_GET['delete']);
}
if (!isset($SelectedArea)) {
$SQL = "SELECT areacode,
parentarea,
areadescription
FROM areas";
$Result = DB_query($SQL);
echo '<table>
<thead>
<tr>
<th class="SortedColumn">', _('Area Code'), '</th>
<th class="SortedColumn">', _('Parent Area'), '</th>
<th class="SortedColumn">', _('Area Name'), '</th>
<th colspan="3"></th>
</tr>
</thead>';
echo '<tbody>';
while ($MyRow = DB_fetch_array($Result)) {
$SQL = "SELECT areadescription FROM areas WHERE areacode='" . $MyRow['parentarea'] . "'";
$ParentResult = DB_query($SQL);
$ParentRow = DB_fetch_array($ParentResult);
echo '<tr class="striped_row">
<td>', $MyRow['areacode'], '</td>
<td>', $ParentRow['areadescription'], '</td>
<td>', $MyRow['areadescription'], '</td>
<td><a href="', htmlspecialchars(basename(__FILE__), ENT_QUOTES, 'UTF-8'), '?SelectedArea=', urlencode($MyRow['areacode']), '">', _('Edit'), '</a></td>
<td><a href="', htmlspecialchars(basename(__FILE__), ENT_QUOTES, 'UTF-8'), '?SelectedArea=', urlencode($MyRow['areacode']), '&delete=yes" onclick="return MakeConfirm(\'', _('Are you sure you wish to delete this area?'), '\', \'Confirm Delete\', this);">', _('Delete'), '</a></td>
<td><a href="SelectCustomer.php?Area=', urlencode($MyRow['areacode']), '">', _('View Customers from this Area'), '</a></td>
</tr>';
}
//END WHILE LIST LOOP
echo '</tbody>';
echo '</table>';
}
//end of ifs and buts!
if (isset($SelectedArea)) {
echo '<div class="centre">
<a href="', htmlspecialchars(basename(__FILE__), ENT_QUOTES, 'UTF-8'), '">', _('Review Areas Defined'), '</a>
</div>';
}
if (!isset($_GET['delete'])) {
echo '<form method="post" action="', htmlspecialchars(basename(__FILE__), ENT_QUOTES, 'UTF-8'), '">';
echo '<input type="hidden" name="FormID" value="', $_SESSION['FormID'], '" />';
if (isset($SelectedArea)) {
//editing an existing area
$SQL = "SELECT areacode,
parentarea,
areadescription
FROM areas
WHERE areacode='" . $SelectedArea . "'";
$Result = DB_query($SQL);
$MyRow = DB_fetch_array($Result);
$_POST['AreaCode'] = $MyRow['areacode'];
$_POST['AreaDescription'] = $MyRow['areadescription'];
echo '<input type="hidden" name="SelectedArea" value="', $SelectedArea, '" />';
echo '<input type="hidden" name="AreaCode" value="', $_POST['AreaCode'], '" />';
echo '<fieldset>
<legend>', _('Edit Area Details'), '</legend>
<field>
<label for="AreaCode">', _('Area Code'), ':</label>
<div class="fieldtext">', $_POST['AreaCode'], '</div>
</field>';
} else {
if (!isset($_POST['AreaCode'])) {
$_POST['AreaCode'] = '';
}
if (!isset($_POST['AreaDescription'])) {
$_POST['AreaDescription'] = '';
}
echo '<fieldset>
<legend>', _('New Area Details'), '</legend>
<field>
<label for="AreaCode">', _('Area Code'), ':</label>
<input type="text" name="AreaCode" value="', $_POST['AreaCode'], '" size="3" autofocus="autofocus" required="required" maxlength="3" />
<fieldhelp>', _('A three letter code the area will be known as.'), '</fieldhelp>
</field>';
}
echo '<field>
<label for=ParentArea">', _('Parent Area'), ':</label>
<select name="ParentArea" autofocus="autofocus">';
$SQL = "SELECT areacode, areadescription FROM areas ORDER BY areadescription";
$ErrMsg = _('An error occurred in retrieving the areas from the database');
$DbgMsg = _('The SQL that was used to retrieve the area information and that failed in the process was');
$ParentResult = DB_query($SQL, $ErrMsg, $DbgMsg);
echo '<option value=""></option>';
while ($ParentRow = DB_fetch_array($ParentResult)) {
if ($MyRow['parentarea'] == $ParentRow['areacode']) {
echo '<option selected="selected" value="', $ParentRow['areacode'], '">', $ParentRow['areadescription'], ' (', $ParentRow['areacode'], ')</option>';
} //$_POST['SectionInAccounts'] == $secrow['sectionid']
else {
echo '<option value="', $ParentRow['areacode'], '">', $ParentRow['areadescription'], ' (', $ParentRow['areacode'], ')</option>';
}
} //$secrow = DB_fetch_array($secresult)
echo '</select>
<fieldhelp>', _('The area that contains this area. Leave blank if this is a top level area'), '</fieldhelp>
</field>';
echo '<field>
<label for="AreaDescription">', _('Area Name'), ':</label>
<input type="text" name="AreaDescription" value="', $_POST['AreaDescription'], '" size="26" required="required" maxlength="25" />
<fieldhelp>', _('The name of the area being entered'), '</fieldhelp>
</field>';
echo '</fieldset>';
echo '<div class="centre">
<input type="submit" name="submit" value="', _('Enter Information'), '" />
</div>
</form>';
} //end if record deleted no point displaying form to add record
include ('includes/footer.php');
?>