-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathAddCustomerContacts.php
320 lines (286 loc) · 10.6 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
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
<?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'];
}
$Result = DB_query($SQLname);
$row = DB_fetch_array($Result);
if (!isset($_GET['Id'])) {
echo '<div class="block-header"><a href="" class="header-title-link"><h1>' . ' ' . _('Contacts for Customer') . ': <strong>' . $DebtorNo . '</strong></h1></a></div>';
} else {
echo '<div class="block-header"><a href="" class="header-title-link"><h1>' . ' ' . _('Edit contact for'). ': <strong>' . $DebtorNo . '</strong></h1></a></div>';
}
echo '<div class="row"><div class="col-xs-4"><a class="noprint btn btn-default" href="' . $RootPath . '/SelectCustomer.php?Select=' . $DebtorNo . '">' . _('Back To Customers') . '</a></div>';
if (isset($Id)) {
echo '<div class="col-xs-4"><a href="' . htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '?DebtorNo='.$DebtorNo .'" class="btn btn-info">' . _('Review all contacts for this Customer') . '</a></div>';
}
echo '</div><br />';
$SQLname="SELECT name FROM debtorsmaster WHERE debtorno='" . $DebtorNo . "'";
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;
echo prnMsg( _('The Contact ID must be an integer.'), 'error');
} elseif (mb_strlen($_POST['ContactName']) >40) {
$InputError = 1;
echo prnMsg( _('The contact name must be forty characters or less'), 'error');
} elseif( trim($_POST['ContactName']) == '' ) {
$InputError = 1;
echo prnMsg( _('The contact name can not be empty'), 'error');
} elseif (!IsEmailAddress($_POST['ContactEmail']) AND mb_strlen($_POST['ContactEmail'])>0){
$InputError = 1;
echo prnMsg( _('The contact email address is not valid'), '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 />';
echo 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 />';
echo 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 '
<div class="row gutter30">
<div class="col-xs-12">
<div class="table-responsive">
<table id="general-table" class="table table-bordered">';
echo '<tr>
<th class="text">', _('Name'), '</th>
<th class="text">', _('Role'), '</th>
<th class="text">', _('Phone'), '</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" class="btn btn-warning">' . _('Edit') . '</a></td>
<td class="noprint"><a href="%sId=%s&DebtorNo=%s&delete=1" class="btn btn-danger" 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></div></div></div>';
}
if (!isset($_GET['delete'])) {
echo '
<div class="row gutter30">
<div class="col-xs-12">
<div class="block">
';
echo '<form method="post" action="' . htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '?DebtorNo='.$DebtorNo.'">',
'<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'] . '" />',
'
<div class="block-title">
<h2>' . _('Edit Customer Contact Details').'</h2>
</div>
<div class="row"><h4>', _('Contact Code'), ': <span class="text-success">
<strong>' . $_POST['Con_ID']. '</strong>
</span></h4></div>
';
} else {// New Customer Contact Details.
echo ' <div class="block-title"> <h2>', _('New Customer Contact Details'), '</h2>
</div>
';
}
// Contact name:
echo '<div class="row">
<div class="col-xs-4">
<div class="form-group has-error">
<label class="col-md-8 control-label">', _('Contact Name'), '</label>
<input maxlength="40" name="ContactName" class="form-control" required="required" size="35" type="text" ';
if( isset($_POST['ContactName']) ) {
echo 'autofocus="autofocus" value="', $_POST['ContactName'], '" ';
}
echo '/></div>
</div>';
// Role:
echo '<div class="col-xs-4">
<div class="form-group">
<label class="col-md-8 control-label">', _('Role'), '</label>
<input maxlength="40" name="ContactRole" class="form-control" size="35" type="text" ';
if( isset($_POST['ContactRole']) ) {
echo 'value="', $_POST['ContactRole'], '" ';
}
echo '/></div>
</div>';
// Phone:
echo '<div class="col-xs-4">
<div class="form-group">
<label class="col-md-8 control-label">', _('Phone'), '</label>
<input maxlength="40" name="ContactPhone" class="form-control" size="35" type="tel" ';
if( isset($_POST['ContactPhone']) ) {
echo 'value="', $_POST['ContactPhone'], '" ';
}
echo '/></div>
</div></div>';
// Email:
echo ' <div class="row">
<div class="col-xs-4">
<div class="form-group">
<label class="col-md-8 control-label">', _('Email'), '</label>
<input maxlength="55" name="ContactEmail" class="form-control" size="55" type="email" ';
if( isset($_POST['ContactEmail']) ) {
echo 'value="', $_POST['ContactEmail'], '" ';
}
echo '/></div>
</div>';
echo '<div class="col-xs-4">
<div class="form-group">
<label class="col-md-8 control-label">', _('Send Statement'), '</label>
<select name="StatementAddress" class="form-control" 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></div>
</div>';
// Notes:
echo '<div class="col-xs-4">
<div class="form-group">
<label class="col-md-8 control-label">', _('Notes'), '</label>
<textarea cols="40" name="ContactNotes" class="form-control">',
( isset($_POST['ContactNotes']) ? $_POST['ContactNotes'] : '' ),
'</textarea></div>
</div></div>',
'<div class="row">
<div class="col-xs-4">
<div class="form-group">
<input name="submit" type="submit" class="btn btn-success" value="', _('Enter Information'), '" />
</div>
</div>
</div>
</form>
</div>
</div>
</div>
';
} //end if record deleted no point displaying form to add record
include('includes/footer.php');
?>