-
Notifications
You must be signed in to change notification settings - Fork 123
/
Copy pathAddCustomerTypeNotes.php
228 lines (198 loc) · 7.21 KB
/
AddCustomerTypeNotes.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
<?php
include('includes/session.php');
$Title = _('Customer Type (Group) Notes');
$ViewTopic = 'AccountsReceivable';
$BookMark = 'CustomerTypeNotes';
include('includes/header.php');
include('includes/SQL_CommonFunctions.inc');
if (isset($_POST['NoteDate'])) {$_POST['NoteDate'] = ConvertSQLDate($_POST['NoteDate']);}
if (isset($_GET['Id'])){
$Id = (int)$_GET['Id'];
} else if (isset($_POST['Id'])){
$Id = (int)$_POST['Id'];
}
if (isset($_POST['DebtorType'])){
$DebtorType = $_POST['DebtorType'];
} elseif (isset($_GET['DebtorType'])){
$DebtorType = $_GET['DebtorType'];
}
echo '<a href="' . $RootPath . '/SelectCustomer.php?DebtorType='.$DebtorType.'">' . _('Back to Select Customer') . '</a><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 (!is_long((integer)$_POST['Priority'])) {
$InputError = 1;
prnMsg( _('The Contact priority must be an integer.'), 'error');
} elseif (mb_strlen($_POST['Note']) >200) {
$InputError = 1;
prnMsg( _('The contacts notes must be two hundred characters or less long'), 'error');
} elseif( trim($_POST['Note']) == '' ) {
$InputError = 1;
prnMsg( _('The contacts notes may not be empty'), 'error');
}
if (isset($Id) and $InputError !=1) {
$SQL = "UPDATE debtortypenotes SET note='" . $_POST['Note'] . "',
date='" . FormatDateForSQL($_POST['NoteDate']) . "',
href='" . $_POST['Href'] . "',
priority='" . $_POST['Priority'] . "'
WHERE typeid ='".$DebtorType."'
AND noteid='".$Id."'";
$Msg = _('Customer Group Notes') . ' ' . $DebtorType . ' ' . _('has been updated');
} elseif ($InputError !=1) {
$SQL = "INSERT INTO debtortypenotes (typeid,
href,
note,
date,
priority)
VALUES ('" . $DebtorType. "',
'" . $_POST['Href'] . "',
'" . $_POST['Note'] . "',
'" . FormatDateForSQL($_POST['NoteDate']) . "',
'" . $_POST['Priority'] . "')";
$Msg = _('The contact group notes record has been added');
}
if ($InputError !=1) {
$Result = DB_query($SQL);
echo '<br />';
prnMsg($Msg, 'success');
unset($Id);
unset($_POST['Note']);
unset($_POST['NoteID']);
}
} elseif (isset($_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 debtortypenotes
WHERE noteid='".$Id."'
AND typeid='".$DebtorType."'";
$Result = DB_query($SQL);
echo '<br />';
prnMsg( _('The contact group note record has been deleted'), 'success');
unset($Id);
unset($_GET['delete']);
}
if (!isset($Id)) {
$SQLname="SELECT typename from debtortype where typeid='".$DebtorType."'";
$Result = DB_query($SQLname);
$MyRow = DB_fetch_array($Result);
echo '<p class="page_title_text"><img src="'.$RootPath.'/css/'.$Theme.'/images/customer.png" title="' . _('Search') . '" alt="" />' . _('Notes for Customer Type').': <b>' .$MyRow['typename'] . '</b></p>
<br />';
$SQL = "SELECT noteid,
typeid,
href,
note,
date,
priority
FROM debtortypenotes
WHERE typeid='".$DebtorType."'
ORDER BY date DESC";
$Result = DB_query($SQL);
//echo '<br />' . $SQL;
echo '<table class="selection">';
echo '<tr>
<th>' . _('Date') . '</th>
<th>' . _('Note') . '</th>
<th>' . _('href') . '</th>
<th>' . _('Priority') . '</th>
</tr>';
while ($MyRow = DB_fetch_array($Result)) {
printf('<tr class="striped_row">
<td>%s</td>
<td>%s</td>
<td>%s</td>
<td>%s</td>
<td><a href="%sId=%s&DebtorType=%s">' . _('Edit') . '</a></td>
<td><a href="%sId=%s&DebtorType=%s&delete=1">' . _('Delete') . '</a></td>
</tr>',
ConvertSQLDate($MyRow['date']),
$MyRow['note'],
$MyRow['href'],
$MyRow['priority'],
htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '?',
$MyRow['noteid'],
$MyRow['typeid'],
htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '?',
$MyRow['noteid'],
$MyRow['typeid']);
}
//END WHILE LIST LOOP
echo '</table>';
}
if (isset($Id)) {
echo '<div class="centre">
<a href="' . htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '?DebtorType=' . $DebtorType . '">' . _('Review all notes for this Customer Type') . '</a>
</div>';
}
if (!isset($_GET['delete'])) {
echo '<form method="post" action="' . htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '?DebtorType='.$DebtorType.'">';
echo '<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />';
if (isset($Id)) {
//editing an existing
$SQL = "SELECT noteid,
typeid,
href,
note,
date,
priority
FROM debtortypenotes
WHERE noteid=".$Id."
AND typeid='".$DebtorType."'";
$Result = DB_query($SQL);
//echo '<br />' . $SQL;
$MyRow = DB_fetch_array($Result);
$_POST['NoteID'] = $MyRow['noteid'];
$_POST['Note'] = $MyRow['note'];
$_POST['Href'] = $MyRow['href'];
$_POST['NoteDate'] = ConvertSQLDate($MyRow['date']);
$_POST['Priority'] = $MyRow['priority'];
$_POST['typeid'] = $MyRow['typeid'];
echo '<input type="hidden" name="Id" value="'. $Id .'" />';
echo '<input type="hidden" name="Con_ID" value="' . $_POST['NoteID'] . '" />';
echo '<input type="hidden" name="DebtorType" value="' . $_POST['typeid'] . '" />';
echo '<fieldset>
<legend>', _('Amend Customer Type Note'), '</legend>
<field>
<label for="NoteID">' . _('Note ID').':</label>
<fieldtext>' . $_POST['NoteID'] . '</fieldtext>
</field>';
} else {
echo '<fieldset>
<legend>', _('Create New Customer Type Note'), '</legend>';
$_POST['NoteID'] = '';
$_POST['Note'] = '';
$_POST['Href'] = '';
$_POST['NoteDate'] = Date($_SESSION['DefaultDateFormat']);
$_POST['Priority'] = '1';
$_POST['typeid'] = '';
}
echo '<field>
<label for="Note">' . _('Contact Group Note').':</label>
<textarea name="Note" autofocus="autofocus" required="required" rows="3" cols="32">' . $_POST['Note'] . '</textarea>
<fieldhelp>', _('Write the customer type note here'), '</fieldhelp>
</field>
<field>
<label for="Href">' . _('Web site').':</label>
<input type="url" name="Href" value="'. $_POST['Href'].'" size="35" maxlength="100" />
<fieldhelp>', _('Any website associated with this note'), '</fieldhelp>
</field>
<field>
<label for="NoteDate">' . _('Date').':</label>
<input required="required" name="NoteDate" type="date" value="'. FormatDateForSQL($_POST['NoteDate']). '" size="11" maxlength="10" />
<fieldhelp>', _('The date of this note'), '</fieldhelp>
</field>
<field>
<label for="Priority">' . _('Priority').':</label>
<input type="text" class="number" name="Priority" value="'. $_POST['Priority'] .'" size="1" maxlength="3" />
<fieldhelp>', _('The priority level for this note, between 1 and 9'), '</fieldhelp>
</field>
</fieldset>
<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');
?>