-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddRemoveContact.cfm
418 lines (414 loc) · 9.28 KB
/
addRemoveContact.cfm
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
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
<cfinclude template="authenticateExe.cfm">
<!--- page called/loaded without "Submit" variable --->
<cfif not isDefined("FORM.Submit")>
<!--- load add-remove switch template --->
<cfif isDefined("FORM.addRem")>
<cfscript>
if ( not isDefined( "FORM.ActID" ) and not isDefined( "FORM.SessID" ) and
not isDefined( "FORM.MatID" ) and not isDefined( "FORM.LibID" ) )
{
up2snuff = 0;
em = "Invalid or missing parameters";
}
else
{
up2snuff = 1;
if (isDefined("FORM.ActID"))
{
ActID = FORM.ActID;
}
else
{
ActID = 0;
}
if (isDefined("FORM.SessID"))
{
SessID = FORM.SessID;
}
else
{
SessID = 0;
}
if (isDefined("FORM.MatID"))
{
MatID = FORM.MatID;
}
else
{
MatID = 0;
}
if (isDefined("FORM.LibID"))
{
LibID = FORM.LibID;
}
else
{
LibID = 0;
}
}
</cfscript>
<cfinclude template="formContactAddRemSwitch.cfm">
<!--- process add-remove switch template based on form submit --->
<cfelseif isDefined("FORM.Add")>
<cfscript>
if ( not isDefined( "FORM.ActID" ) and not isDefined( "FORM.SessID" ) and
not isDefined( "FORM.MatID" ) and not isDefined( "FORM.LibID" ) )
{
up2snuff = 0;
em = "Invalid or missing parameters";
}
else
{
if ( FORM.Add neq "0" )
{
Add = "1";
}
else
{
Add = "0";
}
up2snuff = 1;
}
</cfscript>
<!--- bad add-remove switch input --->
<cfif not up2snuff>
<cfinclude template="incBegin.cfm">
<cfinclude template="incError.cfm">
<cfelse>
<cfscript>
if (isDefined("FORM.ActID"))
{
ActID = FORM.ActID;
}
else
{
ActID = 0;
}
if (isDefined("FORM.SessID"))
{
SessID = FORM.SessID;
}
else
{
SessID = 0;
}
if (isDefined("FORM.MatID"))
{
MatID = FORM.MatID;
}
else
{
MatID = 0;
}
if (isDefined("FORM.LibID"))
{
LibID = FORM.LibID;
}
else
{
LibID = 0;
}
// initialize variables for uspGetContact stored procedure
LibID = LibID;
CntctID = 0;
StatID = 0;
DeptID = 0;
SessID = SessID;
ActID = ActID;
MatID = MatID;
UID = 0;
sDT = '';
eDT = '';
FiscalY = 0;
if (Add neq "0")
{
Set = "neg";
}
else
{
Set = "pos";
}
</cfscript>
<cfinclude template="uspGetContact.cfm">
<!--- bad results from uspGetContact --->
<cfif not up2snuff>
<cfinclude template="incBegin.cfm">
<cfinclude template="incError.cfm">
<cfelse>
<cfif Contact.RecordCount eq 0>
<cfinclude template="formContact.cfm">
<cfelse>
<cfinclude template="formContactList.cfm">
</cfif><!--- load single-or-multi contact template --->
</cfif><!--- good or bad from uspGetContact --->
</cfif><!--- good or bad add-remove switch input based on form submit --->
<!--- load add-remove switch template based on link click --->
<cfelseif isDefined("URL.Add")>
<cfscript>
if ( (isDefined("URL.LibID") and not isNumeric(URL.LibID)) or
(isDefined("URL.ActID") and not isNumeric(URL.ActID)) or
(isDefined("URL.SessID") and not isNumeric(URL.SessID)) or
(isDefined("URL.MatID") and not isNumeric(URL.MatID)) )
{
em = "Invalid or missing parameters";
}
else
{
up2snuff = 1;
Add = URL.Add;
if (isDefined("URL.ActID"))
{
ActID = URL.ActID;
}
else
{
ActID = 0;
}
if (isDefined("URL.SessID"))
{
SessID = URL.SessID;
}
else
{
SessID = 0;
}
if (isDefined("URL.MatID"))
{
MatID = URL.MatID;
}
else
{
MatID = 0;
}
if (isDefined("URL.LibID"))
{
LibID = URL.LibID;
}
else
{
LibID = 0;
}
}
</cfscript>
<!--- bad add-remove url input --->
<cfif not up2snuff>
<cfinclude template="incBegin.cfm">
<cfinclude template="incError.cfm">
<cfelse>
<cfscript>
// initialize variables for uspGetContact stored procedure
LibID = LibID;
CntctID = 0;
StatID = 0;
DeptID = 0;
SessID = SessID;
ActID = ActID;
MatID = MatID;
UID = 0;
sDT = '';
eDT = '';
FiscalY = 0;
if (Add neq "0")
{
Set = "neg";
}
else
{
Set = "pos";
}
</cfscript>
<cfinclude template="uspGetContact.cfm">
<!--- bad results from uspGetContact --->
<cfif not up2snuff>
<cfinclude template="incBegin.cfm">
<cfinclude template="incError.cfm">
<cfelse>
<cfinclude template="formContactList.cfm">
</cfif><!--- good or bad from uspGetContact --->
</cfif><!--- good or bad add-remove switch input based on link click --->
</cfif><!--- add-remove based on link click --->
<cfelseif isDefined("FORM.Submit")>
<cfscript>
if ( not isDefined("FORM.ActID") and
not isDefined("FORM.SessID") and
not isDefined("FORM.MatID") and
not isDefined("FORM.LibID") )
{
up2snuff = 0;
missingRequired = 0;
em = "Invalid or missing parameters";
}
else
{
if ( FORM.Submit eq "Add Selected" )
{
Add = 1;
}
else if ( FORM.Submit eq "Remove Selected" )
{
Add = 0;
}
else
{
Add = -1;
}
if (isDefined("FORM.SessID"))
{
SessID = FORM.SessID;
}
else
{
SessID = 0;
}
if (isDefined("FORM.ActID"))
{
ActID = FORM.ActID;
}
else
{
ActID = 0;
}
if (isDefined("FORM.MatID"))
{
MatID = FORM.MatID;
}
else
{
MatID = 0;
}
if (isDefined("FORM.LibID"))
{
LibID = FORM.LibID;
}
else
{
LibID = 0;
}
}
if ( ( Add neq -1 ) and ( not isDefined("FORM.CntctID") ) )
{
up2snuff = 0;
missingRequired = 1;
if (Add eq "1")
{
em = "You must select a contact to add.";
}
else if (Add eq "0")
{
em = "You must select a contact to remove.";
}
else
{
em = "Invalid or missing parameters";
}
}
else
{
up2snuff = 1;
missingRequired = 0;
}
</cfscript>
<!--- bad form input --->
<cfif not up2snuff and not missingRequired>
<cfinclude template="incBegin.cfm">
<cfinclude template="incError.cfm">
<cfelse>
<cfscript>
up2snuff = 1;
// initialize variables for uspGetContact stored procedure
LibID = LibID;
CntctID = 0;
StatID = 0;
DeptID = 0;
SessID = SessID;
ActID = ActID;
MatID = MatID;
UID = 0;
sDT = '';
eDT = '';
FiscalY = 0;
if (Add neq "0")
{
Set = "neg";
}
else
{
Set = "pos";
}
</cfscript>
<cfinclude template="uspGetContact.cfm">
<!--- bad return from uspGetContact --->
<cfif not up2snuff>
<cfinclude template="incBegin.cfm">
<cfinclude template="incError.cfm">
<cfelse>
<!--- missing input values --->
<cfif missingRequired>
<cfinclude template="formContactList.cfm">
<cfelse>
<!--- add/remove contact or other action --->
<cfif Add neq "-1">
<!--- adding contact --->
<cfif Add eq "1">
<cfinclude template="uspAddContact.cfm">
<cfelseif Add eq "0">
<cfinclude template="uspRemoveContact.cfm">
</cfif><!--- add-remove contact --->
<!--- bad results from add-remove contact --->
<cfif not up2snuff>
<cfinclude template="formContactList.cfm">
<cfelse>
<!--- determine redirect URL --->
<!---cfif ActID neq 0>
<cflocation url="activity.cfm?ActID=#ActID#" addtoken="no"--->
<cfif SessID neq 0>
<cflocation url="session.cfm?SessID=#SessID#&ActID=#ActID#" addtoken="no">
<cfelseif MatID neq 0>
<cflocation url="material.cfm?MatID=#MatID#" addtoken="no">
<cfelse>
<cfif IsDefined("cntctList")>
<cflocation url="contacts.cfm?LibID=#SESSION.LibID#&cntctList=#cntctList#" addtoken="no">
<cfelse>
<cflocation url="contacts.cfm?LibID=#SESSION.LibID#" addtoken="no">
</cfif>
</cfif><!--- redirect URL --->
</cfif><!--- add-remove results --->
<cfelse>
<!--- redirect to add new --->
<cfif FORM.Submit eq "Add a New Contact">
<cfset NextPage="addNewContact.cfm">
<!---cfif ActID neq 0>
<cfset NextPageVName="ActID">
<cfset NextPageVValue="#ActID#"--->
<cfif SessID neq 0>
<cfset NextPageVName="SessID">
<cfset NextPageVValue="#SessID#&ActID=#ActID#">
<cfelseif MatID neq 0>
<cfset NextPageVName="MatID">
<cfset NextPageVValue="#MatID#">
<cfelseif LibID neq 0>
<cfset NextPageVName="LibID">
<cfset NextPageVValue="#LibID#">
</cfif>
<cflocation url="#NextPage#?#NextPageVName#=#NextPageVValue#" addtoken="no">
<cfelse>
<!---cfif ActID neq 0>
<cflocation url="activity.cfm?ActID=#ActID#" addtoken="no"--->
<cfif SessID neq 0>
<cflocation url="session.cfm?SessID=#SessID#&ActID=#ActID#" addtoken="no">
<cfelseif MatID neq 0>
<cflocation url="material.cfm?MatID=#MatID#" addtoken="no">
<cfelseif LibID neq 0>
<cflocation url="contacts.cfm?LibID=#LibID#" addtoken="no">
</cfif>
</cfif><!--- non-add/remove action --->
</cfif><!--- add/remove or other --->
</cfif> <!--- good or bad input --->
</cfif><!--- good or bad from uspGetContact --->
</cfif><!--- good or bad input --->
<!--- unknown input --->
<cfelse>
<cfinclude template="incBegin.cfm">
<cfinclude template="incError.cfm">
</cfif>
<cfinclude template="incEnd.cfm">