forked from webERP-team/webERP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Factors.php
341 lines (299 loc) · 11.1 KB
/
Factors.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
<?php
include('includes/session.php');
$Title = _('Factor Company Maintenance');
include('includes/header.php');
if (isset($_GET['FactorID'])){
$FactorID = mb_strtoupper($_GET['FactorID']);
$_POST['Amend']=True;
} elseif (isset($_POST['FactorID'])){
$FactorID = mb_strtoupper($_POST['FactorID']);
} else {
unset($FactorID);
}
if (isset($_POST['Create'])) {
$FactorID = 0;
$_POST['New'] = 'Yes';
}
echo '<div class="centre"><p class="page_title_text"><img src="'.$RootPath.'/css/'.$Theme.'/images/supplier.png" title="'
. _('Factor Companies') . '" alt="" />' . ' ' .$Title . '</p></div>';
/* This section has been reached because the user has pressed either the insert/update buttons on the
form hopefully with input in the correct fields, which we check for firsrt. */
//initialise no input errors assumed initially before we test
$InputError = 0;
if (isset($_POST['Submit']) OR isset($_POST['Update'])) {
if (mb_strlen($_POST['FactorName']) > 40 OR mb_strlen($_POST['FactorName']) == 0 OR $_POST['FactorName'] == '') {
$InputError = 1;
prnMsg(_('The factoring company name must be entered and be forty characters or less long'),'error');
}
if (mb_strlen($_POST['Email'])>0 AND !IsEmailAddress($_POST['Email'])){
prnMsg(_('The email address entered does not appear to be a valid email address format'),'error');
$InputError = 1;
}
// But if errors were found in the input
if ($InputError>0) {
prnMsg(_('Validation failed no insert or update took place'),'warn');
include('includes/footer.php');
exit;
}
/* If no input errors have been recieved */
if ($InputError == 0 AND isset($_POST['Submit'])){
//And if its not a new part then update existing one
$sql = "INSERT INTO factorcompanies (id,
coyname,
address1,
address2,
address3,
address4,
address5,
address6,
contact,
telephone,
fax,
email)
VALUES (null,
'" . $_POST['FactorName'] . "',
'" . $_POST['Address1'] . "',
'" . $_POST['Address2'] . "',
'" . $_POST['Address3'] . "',
'" . $_POST['Address4'] . "',
'" . $_POST['Address5'] . "',
'" . $_POST['Address6'] . "',
'" . $_POST['ContactName'] . "',
'" . $_POST['Telephone'] . "',
'" . $_POST['Fax'] . "',
'" . $_POST['Email'] . "')";
$ErrMsg = _('The factoring company') . ' ' . $_POST['FactorName'] . ' ' . _('could not be added because');
$DbgMsg = _('The SQL that was used to insert the factor but failed was');
$result = DB_query($sql, $ErrMsg, $DbgMsg);
prnMsg(_('A new factoring company for') . ' ' . $_POST['FactorName'] . ' ' . _('has been added to the database'),'success');
}elseif ($InputError == 0 and isset($_POST['Update'])) {
$sql = "UPDATE factorcompanies SET coyname='" . $_POST['FactorName'] . "',
address1='" . $_POST['Address1'] . "',
address2='" . $_POST['Address2'] . "',
address3='" . $_POST['Address3'] . "',
address4='" . $_POST['Address4'] . "',
address5='" . $_POST['Address5'] . "',
address6='" . $_POST['Address6'] . "',
contact='" . $_POST['ContactName'] . "',
telephone='" . $_POST['Telephone'] . "',
fax='" . $_POST['Fax'] . "',
email='" . $_POST['Email'] . "'
WHERE id = '" .$FactorID."'";
$ErrMsg = _('The factoring company could not be updated because');
$DbgMsg = _('The SQL that was used to update the factor but failed was');
$result = DB_query($sql, $ErrMsg, $DbgMsg);
prnMsg(_('The factoring company record for') . ' ' . $_POST['FactorName'] . ' ' . _('has been updated'),'success');
//If it is a new part then insert it
}
unset ($FactorID);
unset($_POST['FactorName']);
unset($_POST['Address1']);
unset($_POST['Address2']);
unset($_POST['Address3']);
unset($_POST['Address4']);
unset($_POST['Address5']);
unset($_POST['Address6']);
unset($_POST['ContactName']);
unset($_POST['Telephone']);
unset($_POST['Fax']);
unset($_POST['Email']);
}
if (isset($_POST['Delete'])) {
$CancelDelete = 0;
// PREVENT DELETES IF DEPENDENT RECORDS IN 'SuppTrans' , PurchOrders, SupplierContacts
$sql= "SELECT COUNT(*) FROM suppliers WHERE factorcompanyid='".$FactorID."'";
$result = DB_query($sql);
$myrow = DB_fetch_row($result);
if ($myrow[0] > 0) {
$CancelDelete = 1;
prnMsg(_('Cannot delete this factor because there are suppliers using them'),'warn');
echo '<br />' . _('There are') . ' ' . $myrow[0] . ' ' . _('suppliers using this factor company');
}
if ($CancelDelete == 0) {
$sql="DELETE FROM factorcompanies WHERE id='".$FactorID."'";
$result = DB_query($sql);
prnMsg(_('Factoring company record record for') . ' ' . $_POST['FactorName'] . ' ' . _('has been deleted'),'success');
echo '<br />';
unset($_SESSION['FactorID']);
} //end if Delete factor
unset($FactorID);
}
/* So the page hasn't called itself with the input/update/delete/buttons */
if (isset($FactorID) and isset($_POST['Amend'])) {
$sql = "SELECT id,
coyname,
address1,
address2,
address3,
address4,
address5,
address6,
contact,
telephone,
fax,
email
FROM factorcompanies
WHERE id = '".$FactorID."'";
$result = DB_query($sql);
$myrow = DB_fetch_array($result);
$_POST['FactorName'] = $myrow['coyname'];
$_POST['Address1'] = $myrow['address1'];
$_POST['Address2'] = $myrow['address2'];
$_POST['Address3'] = $myrow['address3'];
$_POST['Address4'] = $myrow['address4'];
$_POST['Address5'] = $myrow['address5'];
$_POST['Address6'] = $myrow['address6'];
$_POST['ContactName'] = $myrow['contact'];
$_POST['Telephone'] = $myrow['telephone'];
$_POST['Fax'] = $myrow['fax'];
$_POST['Email'] = $myrow['email'];
} else {
$_POST['FactorName'] = '';
$_POST['Address1'] = '';
$_POST['Address2'] = '';
$_POST['Address3'] = '';
$_POST['Address4'] = '';
$_POST['Address5'] = '';
$_POST['Address6'] = '';
$_POST['ContactName'] = '';
$_POST['Telephone'] = '';
$_POST['Fax'] = '';
$_POST['Email'] = '';
}
if (isset($_POST['Amend']) or isset($_POST['Create'])) {
// its a new factor being added
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="FactorID" value="' . $FactorID .'" />
<input type="hidden" name="New" value="Yes" />
<table class="selection">
<tr>
<td>' . _('Factor company Name') . ':</td>
<td><input tabindex="1" type="text" name="FactorName" required="required" size="42" maxlength="40" value="' . $_POST['FactorName'] . '" /></td>
</tr>
<tr>
<td>' . _('Address Line 1') . ':</td>
<td><input tabindex="2" type="text" name="Address1" size="42" maxlength="40" value="' . $_POST['Address1'] .'" /></td>
</tr>
<tr><td>' . _('Address Line 2') . ':</td>
<td><input tabindex="3" type="text" name="Address2" size="42" maxlength="40" value="' . $_POST['Address2'] .'" /></td>
</tr>
<tr>
<td>' . _('Address Line 3') . ':</td>
<td><input tabindex="4" type="text" name="Address3" size="42" maxlength="40" value="' .$_POST['Address3'] .'" /></td>
</tr>
<tr>
<td>' . _('Address Line 4') . ':</td>
<td><input tabindex="5" type="text" name="Address4" size="42" maxlength="40" value="' . $_POST['Address4'].'" /></td>
</tr>
<tr>
<td>' . _('Address Line 5') . ':</td>
<td><input tabindex="6" type="text" name="Address5" size="42" maxlength="40" value="' . $_POST['Address5'] .'" /></td>
</tr>
<tr>
<td>' . _('Address Line 6') . ':</td>
<td><input tabindex="7" type="text" name="Address6" size="42" maxlength="40" value="' .$_POST['Address6'] . '" /></td>
</tr>
<tr>
<td>' . _('Contact Name') . ':</td>
<td><input tabindex="8" type="text" name="ContactName" required="required" size="20" maxlength="25" value="' . $_POST['ContactName'] .'" /></td>
</tr>
<tr>
<td>' . _('Telephone') . ':</td>
<td><input tabindex="9" type="tel" name="Telephone" pattern="[0-9+()\ ]*" size="20" maxlength="25" value="' .$_POST['Telephone'].'" /></td>
</tr>
<tr>
<td>' . _('Fax') . ':</td>
<td><input tabindex="10" type="tel" name="Fax" pattern="[0-9+()\ ]*" size="20" maxlength="25" value="' . $_POST['Fax'] .'" /></td>
</tr>
<tr>
<td>' . _('Email') . ':</td>
<td><input tabindex="11" type="email" name="Email" size="55" maxlength="55" value="' . $_POST['Email'] . '" /></td>
</tr>
</table>';
}
if (isset($_POST['Create'])) {
echo '<br />
<div class="centre">
<input tabindex="12" type="submit" name="Submit" value="' . _('Insert New Factor') . '" />
</div>
</div>
</form>';
} else if (isset($_POST['Amend'])) {
echo '<br />
<div class="centre">
<input tabindex="13" type="submit" name="Update" value="' . _('Update Factor') . '" />
<br />
<br />';
prnMsg ( _('There is no second warning if you hit the delete button below') . '. ' . _('However checks will be made to ensure there are no suppliers are using this factor before the deletion is processed'), 'warn');
echo '<br />
<input tabindex="14" type="submit" name="Delete" value="' . _('Delete Factor') . '" onclick="return confirm(\'' . _('Are you sure you wish to delete this factoring company?') . '\');" />
</div>
</div>
</form>';
}
/* If it didn't come with a $FactorID it must be a completely fresh start, so choose a new $factorID or give the
option to create a new one*/
if (empty($FactorID) AND !isset($_POST['Create']) AND !isset($_POST['Amend'])) {
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="New" value="No" />';
echo '<table class="selection">
<tr>
<th>' . _('ID') . '</th>
<th>' . _('Company Name') . '</th>
<th>' . _('Address 1') . '</th>
<th>' . _('Address 2') . '</th>
<th>' . _('Address 3') . '</th>
<th>' . _('Address 4') . '</th>
<th>' . _('Address 5') . '</th>
<th>' . _('Address 6') . '</th>
<th>' . _('Contact') . '</th>
<th>' . _('Telephone') . '</th>
<th>' . _('Fax Number') . '</th>
<th>' . _('Email') . '</th>
</tr>';
$sql = "SELECT id,
coyname,
address1,
address2,
address3,
address4,
address5,
address6,
contact,
telephone,
fax,
email
FROM factorcompanies";
$result=DB_query($sql);
while ($myrow = DB_fetch_array($result)) {
echo '<tr class="striped_row">
<td>' . $myrow['id'] . '</td>
<td>' . $myrow['coyname'] . '</td>
<td>' . $myrow['address1'] . '</td>
<td>' . $myrow['address2'] . '</td>
<td>' . $myrow['address3'] . '</td>
<td>' . $myrow['address4'] . '</td>
<td>' . $myrow['address5'] . '</td>
<td>' . $myrow['address6'] . '</td>
<td>' . $myrow['contact'] . '</td>
<td>' . $myrow['telephone'] . '</td>
<td>' . $myrow['fax'] . '</td>
<td>' . $myrow['email'] . '</td>
<td><a href="'.$RootPath . '/Factors.php?FactorID='.$myrow['id'].'">' . _('Edit') . '</a></td>
</tr>';
} //end while loop
echo '</table>
<br />
<div class="centre">
<br />
<input tabindex="3" type="submit" name="Create" value="' . _('Create New Factor') . '" />
</div>
</div>
</form>';
}
include('includes/footer.php');
?>