-
Notifications
You must be signed in to change notification settings - Fork 0
/
addRemoveLibrarian.cfm
427 lines (420 loc) · 8.65 KB
/
addRemoveLibrarian.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
419
420
421
422
423
424
425
426
<cfinclude template="authenticateExe.cfm">
<cfif not isDefined("FORM.Submit")>
<cfif isDefined("FORM.addRem")>
<cfscript>
if (not isDefined("FORM.ActID") and
not isDefined("FORM.SessID") and
not isDefined("FORM.MatID"))
{
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.LibType" ) )
{
LibType = FORM.LibType;
}
else
{
LibType = 0;
}
}
</cfscript>
<cfinclude template="formLibrarianAddRemSwitch.cfm">
<cfelseif isDefined("FORM.Add")>
<cfscript>
if (not isDefined("FORM.ActID") and
not isDefined("FORM.SessID") and
not isDefined("FORM.MatID"))
{
up2snuff = 0;
em = "Invalid or missing parameters";
}
else
{
if (FORM.Add neq "0")
{
Add = "1";
}
else
{
Add = "0";
}
up2snuff = 1;
}
</cfscript>
<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.LibType" ) )
{
LibType = FORM.LibType;
}
else
{
LibType = 0;
}
// initialize variables for uspGetLibrarian stored procedure
LibID = 0;
UID = 0;
DeptID = 0;
CntctID = 0;
ActID = ActID;
SessID = SessID;
MatID = MatID;
if (Add neq "0")
{
Set = "neg";
}
else
{
Set = "pos";
}
if (LibType neq 0)
{
if (LibType eq "develop")
{
DevPres = 1;
}
else
{
DevPres = 2;
}
}
else
{
DevPres = 0;
}
</cfscript>
<cfinclude template="uspGetLibrarian.cfm">
<cfif not up2snuff>
<cfinclude template="incBegin.cfm">
<cfinclude template="incError.cfm">
<cfelse>
<cfinclude template="formLibrarianList.cfm">
</cfif>
</cfif>
<cfelseif isDefined("URL.Add")>
<cfscript>
if ((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;
}
//LibType = URL.LibType;
}
</cfscript>
<cfif not up2snuff>
<cfinclude template="incBegin.cfm">
<cfinclude template="incError.cfm">
<cfelse>
<cfscript>
// initialize variables for uspGetLibrarian stored procedure
LibID = 0;
UID = 0;
DeptID = 0;
CntctID = 0;
ActID = ActID;
SessID = SessID;
MatID = MatID;
if (Add neq "0")
{
Set = "neg";
}
else
{
Set = "pos";
}
DevPres = 0;
</cfscript>
<cfinclude template="uspGetLibrarian.cfm">
<cfif not up2snuff>
<cfinclude template="incBegin.cfm">
<cfinclude template="incError.cfm">
<cfelse>
<cfinclude template="formLibrarianList.cfm">
</cfif>
</cfif>
</cfif>
<cfelseif isDefined("FORM.Submit")>
<cfscript>
if (not isDefined("FORM.ActID") and
not isDefined("FORM.SessID") and
not isDefined("FORM.MatID"))
{
em = "Invalid or missing parameters";
up2snuff = 0;
missingRequired = 0;
}
else
{
up2snuff = 1;
missingRequired = 0;
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.LibType" ) )
{
LibType = FORM.LibType;
}
else
{
LibType = 0;
}
}
if ( ( Add neq -1 ) and ( not isDefined("FORM.LibID") ) )
{
up2snuff = 0;
missingRequired = 1;
if (Add eq "1")
{
em = "You must select a librarian to add.";
}
else if (Add eq "0")
{
em = "You must select a librarian to remove.";
}
else
{
em = "Invalid or missing parameters";
}
}
else
{
up2snuff = 1;
missingRequired = 0;
}
</cfscript>
<cfif not up2snuff and not missingRequired>
<cfinclude template="incBegin.cfm">
<cfinclude template="incError.cfm">
<cfelse>
<cfscript>
up2snuff = 1;
// initialize variables for uspGetLibrarian stored procedure
LibID = 0;
UID = 0;
DeptID = 0;
CntctID = 0;
ActID = ActID;
SessID = SessID;
MatID = MatID;
if (Add neq "0")
{
Set = "neg";
}
else
{
Set = "pos";
}
if (LibType neq 0)
{
if (LibType eq "develop")
{
DevPres = 1;
}
else
{
DevPres = 2;
}
}
else
{
DevPres = 0;
}
</cfscript>
<cfinclude template="uspGetLibrarian.cfm">
<cfif not up2snuff>
<cfinclude template="incBegin.cfm">
<cfinclude template="incError.cfm">
<cfelse>
<cfif missingRequired>
<cfinclude template="formLibrarianList.cfm">
<cfelse>
<!---cfscript>
LibID = FORM.LibID;
</cfscript--->
<cfif Add neq "-1">
<cfif Add eq "1">
<cfinclude template="uspAddLibrarian.cfm">
<cfelseif Add eq "0">
<cfinclude template="uspRemoveLibrarian.cfm">
</cfif>
<cfif not up2snuff>
<cfinclude template="formLibrarianList.cfm">
<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">
<cfelse>
<cflocation url="contacts.cfm?LibID=#SESSION.LibID#" addtoken="no">
</cfif>
</cfif>
<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>
</cfif>
</cfif>
</cfif>
<cfelse>
<cfinclude template="incBegin.cfm">
<cfinclude template="incError.cfm">
</cfif>
<cfinclude template="incEnd.cfm">
<!---
<cfinclude template="authenticateExe.cfm">
<cfif not isDefined("FORM.Submit")>
<cfelseif isDefined("FORM.Submit")>
<cfelse>
<cfinclude template="incBegin.cfm">
<cfinclude template="incError.cfm">
</cfif>
<cfinclude template="incEnd.cfm">
Set = Pos ==> list librarians linked to activity/material/session
Set = Neg ==> list librarians !linked to activity/material/session
for activity/material/session:
if only one developer/presenter then
list librarians other than user (formLibrarianList.cfm);
else
display add/remove switch (formLibrarianAddRemSwitch.cfm);
for add/remove switch:
if user selects add then:
list librarians other than user/co-libs (formLibrarianList.cfm);
if uers selects remove then:
list librarians for activity/material/session
for librarian list:
if adding, add selected librarian(s) to activity/material/session;
if removing, delete selected librarian(s) from activity/material/session;
if cancel, return to activity/material/session record;
reached from:
formLibrarianAddRemSwitch.cfm--form POST, submit buttons named Switch, values OK/Cancel
formLibrarianList.cfm--form POST, submit buttons named Submit, values Add Selected/Remove Selected/Cancel
incActivity.cfm--form POST, submit button named addRem [2+ developers already] or add [only one developer]
incMaterial.cfm--form POST, submit button named addRem [2+ developers already] or add [only one developer]
incSession.cfm--form POST, submit button named addRem [2+ developers already] or add [only one developer]
--->