forked from webERP-team/webERP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AddCustomerContacts.php
300 lines (274 loc) · 9.58 KB
/
AddCustomerContacts.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
<?php
/* Adds customer contacts */
include('includes/session.php');
$Title = _('Customer Contacts');
$ViewTopic = 'AccountsReceivable';
$BookMark = 'AddCustomerContacts';
include('includes/header.php');
include('includes/SQL_CommonFunctions.inc');
if (isset($_GET['Id'])){
$Id = (int)$_GET['Id'];
} else if (isset($_POST['Id'])){
$Id = (int)$_POST['Id'];
}
if (isset($_POST['DebtorNo'])){
$DebtorNo = $_POST['DebtorNo'];
} elseif (isset($_GET['DebtorNo'])){
$DebtorNo = $_GET['DebtorNo'];
}
echo '<a class="noprint" href="' . $RootPath . '/Customers.php?DebtorNo=' . $DebtorNo . '">' . _('Back to Customers') . '</a><br />';
$SQLname="SELECT name FROM debtorsmaster WHERE debtorno='" . $DebtorNo . "'";
$Result = DB_query($SQLname);
$row = DB_fetch_array($Result);
if (!isset($_GET['Id'])) {
echo '<p class="page_title_text"><img src="'.$RootPath.'/css/'.$Theme.'/images/maintenance.png" title="' . _('Search') . '" alt="" />' . ' ' . _('Contacts for Customer') . ': <b>' . htmlspecialchars($row['name'], ENT_QUOTES, 'UTF-8') . '</b></p><br />';
} else {
echo '<p class="page_title_text"><img src="'.$RootPath.'/css/'.$Theme.'/images/maintenance.png" title="' . _('Search') . '" alt="" />' . ' ' . _('Edit contact for'). ': <b>' . htmlspecialchars($row['name'], ENT_QUOTES, 'UTF-8') . '</b></p><br />';
}
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
if (isset($_POST['Con_ID']) AND !is_long((integer)$_POST['Con_ID'])) {
$InputError = 1;
prnMsg( _('The Contact ID must be an integer.'), 'error');
} elseif (mb_strlen($_POST['ContactName']) >40) {
$InputError = 1;
prnMsg( _('The contact name must be forty characters or less long'), 'error');
} elseif( trim($_POST['ContactName']) == '' ) {
$InputError = 1;
prnMsg( _('The contact name may not be empty'), 'error');
} elseif (!IsEmailAddress($_POST['ContactEmail']) AND mb_strlen($_POST['ContactEmail'])>0){
$InputError = 1;
prnMsg( _('The contact email address is not a valid email address'), 'error');
}
if (isset($Id) AND ($Id AND $InputError !=1)) {
$sql = "UPDATE custcontacts SET contactname='" . $_POST['ContactName'] . "',
role='" . $_POST['ContactRole'] . "',
phoneno='" . $_POST['ContactPhone'] . "',
notes='" . $_POST['ContactNotes'] . "',
email='" . $_POST['ContactEmail'] . "',
statement='" . $_POST['StatementAddress'] . "'
WHERE debtorno ='".$DebtorNo."'
AND contid='".$Id."'";
$msg = _('Customer Contacts') . ' ' . $DebtorNo . ' ' . _('has been updated');
} elseif ($InputError !=1) {
$sql = "INSERT INTO custcontacts (debtorno,
contactname,
role,
phoneno,
notes,
email,
statement)
VALUES ('" . $DebtorNo. "',
'" . $_POST['ContactName'] . "',
'" . $_POST['ContactRole'] . "',
'" . $_POST['ContactPhone'] . "',
'" . $_POST['ContactNotes'] . "',
'" . $_POST['ContactEmail'] . "',
'" . $_POST['StatementAddress'] . "')";
$msg = _('The contact record has been added');
}
if ($InputError !=1) {
$result = DB_query($sql);
//echo '<br />' . $sql;
echo '<br />';
prnMsg($msg, 'success');
echo '<br />';
unset($Id);
unset($_POST['ContactName']);
unset($_POST['ContactRole']);
unset($_POST['ContactPhone']);
unset($_POST['ContactNotes']);
unset($_POST['ContactEmail']);
unset($_POST['Con_ID']);
}
} elseif (isset($_GET['delete']) AND $_GET['delete']) {
//the link to delete a selected record was clicked instead of the submit button
// PREVENT DELETES IF DEPENDENT RECORDS IN 'SalesOrders'
$sql="DELETE FROM custcontacts
WHERE contid='" . $Id . "'
AND debtorno='" . $DebtorNo . "'";
$result = DB_query($sql);
echo '<br />';
prnMsg( _('The contact record has been deleted'), 'success');
unset($Id);
unset($_GET['delete']);
}
if (!isset($Id)) {
$sql = "SELECT contid,
debtorno,
contactname,
role,
phoneno,
statement,
notes,
email
FROM custcontacts
WHERE debtorno='".$DebtorNo."'
ORDER BY contid";
$result = DB_query($sql);
//echo '<br />' . $sql;
echo '<table class="selection">';
echo '<tr>
<th class="text">', _('Name'), '</th>
<th class="text">', _('Role'), '</th>
<th class="text">', _('Phone No'), '</th>
<th class="text">', _('Email'), '</th>
<th class="text">', _('Statement'), '</th>
<th class="text">', _('Notes'), '</th>
<th class="noprint" colspan="2"> </th>
</tr>';
while ($myrow = DB_fetch_array($result)) {
printf('<tr class="striped_row">
<td class="text">%s</td>
<td class="text">%s</td>
<td class="text">%s</td>
<td class="text"><a href="mailto:%s">%s</a></td>
<td class="text">%s</td>
<td class="text">%s</td>
<td class="noprint"><a href="%sId=%s&DebtorNo=%s">' . _('Edit') . '</a></td>
<td class="noprint"><a href="%sId=%s&DebtorNo=%s&delete=1" onclick="return confirm(\'' . _('Are you sure you wish to delete this contact?') . '\');">' . _('Delete'). '</a></td>
</tr>',
$myrow['contactname'],
$myrow['role'],
$myrow['phoneno'],
$myrow['email'],
$myrow['email'],
($myrow['statement']==0) ? _('No') : _('Yes'),
$myrow['notes'],
htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '?',
$myrow['contid'],
$myrow['debtorno'],
htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '?',
$myrow['contid'],
$myrow['debtorno']);
}
//END WHILE LIST LOOP
echo '</table><br />';
}
if (isset($Id)) {
echo '<div class="centre"><a href="' . htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '?DebtorNo='.$DebtorNo .'">' . _('Review all contacts for this Customer') . '</a></div>';
}
if (!isset($_GET['delete'])) {
echo '<form method="post" action="' . htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '?DebtorNo='.$DebtorNo.'">',
'<div>',
'<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />';
if (isset($Id)) {// Edit Customer Contact Details.
$sql = "SELECT contid,
debtorno,
contactname,
role,
phoneno,
notes,
email
FROM custcontacts
WHERE contid='".$Id."'
AND debtorno='".$DebtorNo."'";
$result = DB_query($sql);
$myrow = DB_fetch_array($result);
$_POST['Con_ID'] = $myrow['contid'];
$_POST['ContactName'] = $myrow['contactname'];
$_POST['ContactRole'] = $myrow['role'];
$_POST['ContactPhone'] = $myrow['phoneno'];
$_POST['ContactEmail'] = $myrow['email'];
$_POST['ContactNotes'] = $myrow['notes'];
$_POST['DebtorNo'] = $myrow['debtorno'];
echo '<input type="hidden" name="Id" value="'. $Id .'" />',
'<input type="hidden" name="Con_ID" value="' . $_POST['Con_ID'] . '" />',
'<input type="hidden" name="DebtorNo" value="' . $_POST['DebtorNo'] . '" />',
'<br />
<table class="selection">
<thead>
<tr>
<th colspan="2">', _('Edit Customer Contact Details'), '</th>
</tr>
</thead>
<tbody>
<tr>
<td>', _('Contact Code'), ':</td>
<td>', $_POST['Con_ID'], '</td>
</tr>';
} else {// New Customer Contact Details.
echo '<table class="noprint selection">
<thead>
<tr>
<th colspan="2">', _('New Customer Contact Details'), '</th>
</tr>
</thead>
<tbody>';
}
// Contact name:
echo '<tr>
<td>', _('Contact Name'), ':</td>
<td><input maxlength="40" name="ContactName" required="required" size="35" type="text" ';
if( isset($_POST['ContactName']) ) {
echo 'autofocus="autofocus" value="', $_POST['ContactName'], '" ';
}
echo '/></td>
</tr>';
// Role:
echo '<tr>
<td>', _('Role'), ':</td>
<td><input maxlength="40" name="ContactRole" size="35" type="text" ';
if( isset($_POST['ContactRole']) ) {
echo 'value="', $_POST['ContactRole'], '" ';
}
echo '/></td>
</tr>';
// Phone:
echo '<tr>
<td>', _('Phone'), ':</td>
<td><input maxlength="40" name="ContactPhone" size="35" type="tel" ';
if( isset($_POST['ContactPhone']) ) {
echo 'value="', $_POST['ContactPhone'], '" ';
}
echo '/></td>
</tr>';
// Email:
echo '<tr>
<td>', _('Email'), ':</td>
<td><input maxlength="55" name="ContactEmail" size="55" type="email" ';
if( isset($_POST['ContactEmail']) ) {
echo 'value="', $_POST['ContactEmail'], '" ';
}
echo '/></td>
</tr>';
echo '<tr>
<td>', _('Send Statement'), ':</td>
<td><select name="StatementAddress" title="' , _('This flag identifies the contact as one who should receive an email cusstomer statement') , '" >';
if( !isset($_POST['StatementAddress']) ) {
echo '<option selected="selected" value="0">', _('No') , '</option>
<option value="1">', _('Yes') , '</option>';
} else {
if ($_POST['StatementAddress']==0) {
echo '<option selected="selected" value="0">', _('No') , '</option>
<option value="1">', _('Yes') , '</option>';
} else {
echo '<option value="0">', _('No') , '</option>
<option selected="selected" value="1">', _('Yes') , '</option>';
}
}
echo '</select></td>
</tr>';
// Notes:
echo '<tr>
<td>', _('Notes'), '</td>
<td><textarea cols="40" name="ContactNotes" rows="3">',
( isset($_POST['ContactNotes']) ? $_POST['ContactNotes'] : '' ),
'</textarea></td>
</tr>',
'<tr>
<td class="centre" colspan="2">
<input name="submit" type="submit" value="', _('Enter Information'), '" />
</td>
</tr>
<tbody>
</table>
</div>
</form>';
} //end if record deleted no point displaying form to add record
include('includes/footer.php');
?>