Add.jsp
34.1 KB
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
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
<%@ page language="java" contentType="text/html; charset=UTF-8" %>
<%@ include file="/page/maint/common/initNoCache.jsp" %>
<%@ page import="weaver.general.*"%>
<jsp:useBean id="RequestComInfo" class="weaver.workflow.request.RequestComInfo" scope="page" />
<jsp:useBean id="DocComInfo" class="weaver.docs.docs.DocComInfo" scope="page" />
<jsp:useBean id="CustomerInfoComInfo" class="weaver.crm.Maint.CustomerInfoComInfo" scope="page" />
<jsp:useBean id="cmutil" class="weaver.workrelate.util.CommonTransUtil" scope="page"/>
<%@ include file="/workrelate/task/util/CommInfo.jsp"%>
<%
String taskId = Util.null2String(request.getParameter("taskId"));
boolean canedit = true;
String name = "";
String level = "";
String remark = Util.convertDbInput(request.getParameter("remark"));
String risk = Util.convertDbInput(request.getParameter("risk"));
String difficulty = Util.convertDbInput(request.getParameter("difficulty"));
String assist = Util.convertDbInput(request.getParameter("assist"));
String tag = Util.toScreen(request.getParameter("tag"),user.getLanguage());
String principalid = Util.null2String(request.getParameter("principalid"));
if(principalid.equals("")) principalid = user.getUID()+"";
String begindate = Util.null2String(request.getParameter("begindate"));
String enddate = Util.null2String(request.getParameter("enddate"));
String taskids = Util.null2String(request.getParameter("taskids"));
String goalids = Util.null2String(request.getParameter("goalids"));
String docids = Util.null2String(request.getParameter("docids"));
String wfids = Util.null2String(request.getParameter("requestids"));
String meetingids = Util.null2String(request.getParameter("meetingids"));
String crmids = Util.null2String(request.getParameter("crmids"));
String projectids = Util.null2String(request.getParameter("projectids"));
String fileids = Util.null2String(request.getParameter("fileids"));
String parentid = Util.null2String(request.getParameter("parentid"));
String parentname = Util.null2String(request.getParameter("pName"));;
String tododate = Util.null2String(request.getParameter("tododate"));
String todo = "4";
String eid = Util.null2String(request.getParameter("eid"));
boolean showgoal = weaver.workrelate.util.TransUtil.isgoal();
if(!wfids.equals("")){
name = RequestComInfo.getRequestname(wfids);
if(!wfids.startsWith(",")) wfids = "," + wfids;
if(!wfids.endsWith(",")) wfids += ",";
}else if(!docids.equals("")){
name = DocComInfo.getDocname(docids);
if(!docids.startsWith(",")) docids = "," + docids;
if(!docids.endsWith(",")) docids += ",";
}else if(!crmids.equals("")){
name = CustomerInfoComInfo.getCustomerInfoname(crmids);
if(!crmids.startsWith(",")) crmids = "," + crmids;
if(!crmids.endsWith(",")) crmids += ",";
}
//zhw 2013-07-29 saveType:0原有的新增功能,1:从门户任务元素的创建,2:任务界面点击标题新建
int saveType = Util.getIntValue(request.getParameter("saveType"),0);
String sorttype = Util.fromScreen3(request.getParameter("sorttype"), user.getLanguage());
String datetype = Util.fromScreen3(request.getParameter("datetype"), user.getLanguage());
if(sorttype.equals("5")&&!datetype.equals("")){
todo = datetype;
}
String currentDate = TimeUtil.getCurrentDateString();
String yesterday = TimeUtil.dateAdd(currentDate,-1);
String tomorrow = TimeUtil.dateAdd(currentDate,1);
if(sorttype.equals("2")){
if(datetype.equals("1")){
enddate = yesterday;
}else if(datetype.equals("2")){
enddate = currentDate;
}else if(datetype.equals("3")){
enddate = tomorrow;
}else if(datetype.equals("4")){
enddate = TimeUtil.dateAdd(tomorrow,1);
}else if(datetype.equals("5")){
enddate = "";
}
}
if(sorttype.equals("3")){
level = datetype;
}
if(level.equals("5")) level="0";
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title><%=SystemEnv.getHtmlLabelName(15266,user.getLanguage()) %></title>
<link rel="stylesheet" href="/workrelate/css/ui/jquery.ui.all.css" />
<link rel="stylesheet" href="../css/main.css" />
<script language="javascript" src="/workrelate/js/jquery-1.8.3.min.js"></script>
<script language="javascript" src="../js/jquery.fuzzyquery.min.js"></script>
<script type="text/javascript" src="/wui/common/jquery/plugin/jquery.overlabel_wev8.js"></script>
<script src="/workrelate/js/jquery.ui.core.js"></script>
<script src="/workrelate/js/jquery.ui.widget.js"></script>
<script src="/workrelate/js/jquery.ui.datepicker.js"></script>
<script src="/workrelate/js/jquery.textarea.autoheight.js"></script>
<script src="/workrelate/js/util.js"></script>
<script language="javascript" src="/js/init_wev8.js"></script>
<link rel="stylesheet" href="/workrelate/css/perfect-scrollbar.css" rel="stylesheet" />
<script language="javascript" src="/workrelate/js/jquery.mousewheel.js"></script>
<script language="javascript" src="/workrelate/js/perfect-scrollbar.js"></script>
<style type="text/css">
#main{width: 100%;height: 100%;position: absolute;top: 0px;left: 0px;right: 0px;bottom: 0px;}
.addtitle{width:auto;line-height:40px;float: left;
margin-left: 10px;font-weight: bold;font-size: 14px;
}
.btn_operate_add{margin-top:10px;margin-right: 5px;width:90px;
text-align: center;line-height: 18px;cursor: pointer;float: left;
color:#808080;margin-left: 3px;margin-bottom: 0px;
border: 1px #D2D2D2 solid;}
.btn_hover_add{
background:#eee;
}
<%if(saveType==10){ %>
.addtitle{
color:#fff;
}
.btn_operate_add{
color:#fff;border:1px solid #fff;
}
.btn_hover_add{
background:#2d71bd;
}
<%}%>
.operatepanel{width: auto;height: 40px;float: right;margin-right: 5px;}
*{font-family: '微软雅黑'}
.input_def{overflow: hidden;resize:none;word-break:break-all;}
.input_def{word-wrap:break-word;word-break:break-all;width: 90%;height:23px;line-height: 23px;border: 1px #fff solid;padding-left: 0px;border-radius: 0px;-moz-border-radius: 0px;-webkit-border-radius: 0px;}
.input_over{border:0px;border-bottom: 1px #F0F0F0 solid;background: none;}
.input_focus{border:0px;border-bottom: 1px #1A8CFF solid;background: none;box-shadow:0px 0px 0px #1A8CFF;-moz-box-shadow:0px 0px 0px #1A8CFF;-webkit-box-shadow:0px 0px 0px #1A8CFF;}
.content_def{width: 90%;min-height:0px;height:24px;line-height: 24px;resize:none;overflow: hidden;word-break:break-all;background: none;
border:0px;border-bottom: 1px #fff solid;padding: 0px;padding-left: 0px;border-radius: 0px;-moz-border-radius: 0px;-webkit-border-radius: 0px;text-align: left;}
.content_def p{padding: 0px;margin: 0px;}
.content_over{border:0px;border-bottom: 1px #fff solid;background: none;}
.content_focus{border:0px;border-bottom: 1px #1A8CFF solid;background: none;box-shadow:0px 0px 0px #1A8CFF;-moz-box-shadow:0px 0px 0px #1A8CFF;-webkit-box-shadow:0px 0px 0px #1A8CFF;}
.btn_cancel{
width: 16px;
height: 16px;
margin-top:12px;
margin-bottom: 0px;
margin-left:10px;
float: right;
position: relative;
cursor: pointer;
background-image: url("../images/16_close.png");
}
</style>
<!--[if IE]>
<style type="text/css">
.input_def{line-height: 180% !important;}
</style>
<![endif]-->
<%@ include file="/secondwev/common/head.jsp" %>
</head>
<body>
<form id="form1" name="form1" action="Operation.jsp" method="post">
<input type="hidden" id="operation" name="operation" value="add"/>
<input type="hidden" id="sorttype" name="sorttype" value="5"/>
<input type="hidden" id="relateadd" name="relateadd" value="1"/>
<input type="hidden" id="datetype" name="datetype" value=""/>
<input type="hidden" id="saveType" name="saveType" value="0"/>
<input type="hidden" id="lev" name="lev" value="<%=level %>"/>
<input type="hidden" id="eid" name="eid" value="<%=eid %>"/>
<div id="main">
<div id="rightinfo" style="width: 100%;height: 100%;position: relative;">
<div style="width: 100%;height: 40px;position: relative;overflow:hidden;
<%if(saveType==1){ %>background:#fcfcfc !important;<%}else{ %>background:#fcfcfc !important;<%} %>
">
<%if(saveType!=1){ %>
<div class="addtitle">
<%=SystemEnv.getHtmlLabelName(15266,user.getLanguage()) %>
</div>
<%} %>
<div id="operatepanel" class="operatepanel">
<%if(saveType==0){%>
<div class="btn_operate_add" onclick="doSubmit(0)"><%=SystemEnv.getHtmlLabelName(86,user.getLanguage()) %></div>
<%}else if(saveType==1){ %>
<div class="btn_operate_add" onclick="doSubmit(1)"><%=SystemEnv.getHtmlLabelName(86,user.getLanguage()) %></div>
<div class="btn_operate_add" onclick="doSubmit(2)"><%=SystemEnv.getHtmlLabelName(32720,user.getLanguage()) %></div>
<div class="btn_operate_add" onclick="doSubmit(3)"<%if(user.getLanguage()==8){%>style="width:160px;"<%} %>><%=SystemEnv.getHtmlLabelName(382585,user.getLanguage()) %></div>
<%}else if(saveType==2){ %>
<div class="btn_operate_add" onclick="doSubmit(4)"><%=SystemEnv.getHtmlLabelName(86,user.getLanguage()) %></div>
<div class="btn_operate_add" onclick="doSubmit(5)"><%=SystemEnv.getHtmlLabelName(32720,user.getLanguage()) %></div>
<%}%>
<%if(saveType==1){ %>
<!-- <div class="btn_cancel" onclick="doCancel()" title="点击关闭"></div> -->
<%} %>
</div>
</div>
<div id="maininfo" style="width:100%;height: auto;border-top:1px #E8E8E8 solid;position: relative;overflow: hidden;" class="scroll1" align="center">
<div id="dtitle0" class="dtitle" title="<%=SystemEnv.getHtmlLabelName(382533,user.getLanguage()) %>"><div class="dtxt"><%=SystemEnv.getHtmlLabelName(1361,user.getLanguage()) %></div></div>
<div style="min-height:230px">
<table class="datatable contenttable" cellpadding="0" cellspacing="0" border="0" align="center">
<colgroup><col width="20%" /><col width="80%" /></colgroup>
<tbody>
<tr>
<td class="title"><%=SystemEnv.getHtmlLabelName(195,user.getLanguage()) %></td>
<td class="data">
<input type="text" class="input_def" id="taskName" name="taskName" style="font-weight: bold;font-size: 16px;" value="<%=name %>"/>
</td>
</tr>
<tr>
<td class="title"><%=SystemEnv.getHtmlLabelName(382534,user.getLanguage()) %></td>
<td id="todo_td" class="data" style="padding-top: 2px;padding-left: 5px;">
<a id="todo1" class="slink <%if("1".equals(todo)){%>sdlink<%}%>" href="javascript:setTodo(1)"><%=SystemEnv.getHtmlLabelName(15537,user.getLanguage()) %></a>
<a id="todo2" class="slink <%if("2".equals(todo)){%>sdlink<%}%>" href="javascript:setTodo(2)"><%=SystemEnv.getHtmlLabelName(22488,user.getLanguage()) %></a>
<a id="todo3" class="slink <%if("3".equals(todo)){%>sdlink<%}%>" href="javascript:setTodo(3)"><%=SystemEnv.getHtmlLabelName(382509,user.getLanguage()) %></a>
<a id="todo4" class="slink <%if("4".equals(todo)){%>sdlink<%}%>" href="javascript:setTodo(4)"><%=SystemEnv.getHtmlLabelName(382499,user.getLanguage()) %></a>
<a id="todo5" class="slink <%if("5".equals(todo)){%>sdlink<%}%>" href="javascript:setTodo(5)"><%=SystemEnv.getHtmlLabelName(382498,user.getLanguage()) %></a>
<input type="hidden" id="todo" name="todo" value="<%=todo %>"/>
</td>
</tr>
<tr>
<td class="title"><%=SystemEnv.getHtmlLabelName(23785,user.getLanguage()) %></td>
<td class="data">
<input type="hidden" id="parentid_val" name="parentid" value="<%=parentid %>"/>
<input id="parentid" class="add_input" _init="1" _searchwidth="150" _searchtype="ptask"/>
<div class="btn_add"></div>
</td>
</tr>
<tr>
<td class="title"><%=SystemEnv.getHtmlLabelName(433,user.getLanguage()) %></td>
<td class="data">
<textarea class="content_def" id="remark" name="remark" style=""><%=remark %></textarea>
</td>
</tr>
<tr>
<td class="title"><%=SystemEnv.getHtmlLabelName(84043,user.getLanguage()) %></td>
<td class="data">
<input type="hidden" id="principalid_val" name="principalid" value="<%=principalid %>"/>
<div class="txtlink showcon txtlink<%=principalid %>" onmouseover="showdel(this)" onmouseout="hidedel(this)">
<%if(!principalid.equals("0") && !principalid.equals("")){ %>
<div style="float: left;"><%=cmutil.getHrm(principalid) %></div>
<%} %>
</div>
<input id="principalid" class="add_input" _init="1" _searchwidth="80" _searchtype="hrm"/>
<div class="btn_add"></div>
<div class="btn_browser browser_hrm" onClick="onShowHrm('principalid')"></div>
</td>
</tr>
<tr>
<td class="title"><%=SystemEnv.getHtmlLabelName(382557,user.getLanguage()) %></td>
<td class="data">
<input id="partnerid" class="add_input" _init="1" _searchwidth="80" _searchtype="hrm"/>
<div class="btn_add"></div>
<div class="btn_browser browser_hrm" onclick="onShowHrms('partnerid')"></div>
<input type="hidden" id="partnerid_val" name="partnerid" value=","/>
</td>
</tr>
<tr>
<td class="title"><%=SystemEnv.getHtmlLabelName(741,user.getLanguage()) %></td>
<td class="data">
<input type="text" class="input_def" style="width: 100px;" id="enddate" name="enddate" value="<%=enddate %>" size="30" readonly="readonly"/>
</td>
</tr>
</tbody>
</table>
</div>
<div <%if(saveType==1) {%>style="display:none;"<%} %>>
<div id="dtitle1" class="dtitle" title="<%=SystemEnv.getHtmlLabelName(382533,user.getLanguage()) %>"><div class="dtxt"><%=SystemEnv.getHtmlLabelName(22078,user.getLanguage()) %></div></div>
<div style="min-height:230px;">
<table id="relateTable" class="datatable contenttable" cellpadding="0" cellspacing="0" border="0" align="center">
<colgroup><col width="20%"/><col width="80%"/></colgroup>
<tbody>
<tr>
<td class="title"><%=SystemEnv.getHtmlLabelName(33414,user.getLanguage()) %></td>
<td class="data">
<input id="taskids" class="add_input" _init="1" _searchwidth="160" _searchtype="task"/>
<div class="btn_add"></div>
<input type="hidden" id="taskids_val" name="taskids" value=","/>
</td>
</tr>
<%if(showgoal){ %>
<tr>
<td class="title"><%=SystemEnv.getHtmlLabelName(382586,user.getLanguage()) %></td>
<td class="data">
<input id="goalids" class="add_input" _init="1" _searchwidth="160" _searchtype="goal"/>
<div class="btn_add"></div>
<input type="hidden" id="goalids_val" name="goalids" value=","/>
</td>
</tr>
<%} %>
<tr>
<td class="title"><%=SystemEnv.getHtmlLabelName(857,user.getLanguage()) %></td>
<td class="data">
<%
List docidList = Util.TokenizerString(docids,",");
if(docids.equals("")) docids = ",";
for(int i=0;i<docidList.size();i++){
if(!"0".equals(docidList.get(i)) && !"".equals(docidList.get(i))){
%>
<div class="txtlink txtlink<%=docidList.get(i) %>" onmouseover="showdel(this)" onmouseout="hidedel(this)">
<div style="float: left;"><%=cmutil.getDocName((String)docidList.get(i)) %></div>
<%if(canedit){ %>
<div class="btn_del" onclick="delItem('docids','<%=docidList.get(i) %>')"></div>
<div class="btn_wh"></div>
<%} %>
</div>
<% }
}
%>
<input id="docids" class="add_input" _init="1" _searchwidth="160" _searchtype="doc"/>
<div class="btn_add"></div>
<div class="btn_browser browser_doc" onclick="onShowDoc('docids')"></div>
<input type="hidden" id="docids_val" name="docids" value="<%=docids %>"/>
</td>
</tr>
<tr>
<td class="title"><%=SystemEnv.getHtmlLabelName(1044,user.getLanguage()) %></td>
<td class="data">
<%
List wfidList = Util.TokenizerString(wfids,",");
if(wfids.equals("")) wfids = ",";
for(int i=0;i<wfidList.size();i++){
if(!"0".equals(wfidList.get(i)) && !"".equals(wfidList.get(i))){
%>
<div class="txtlink txtlink<%=wfidList.get(i) %>" onmouseover="showdel(this)" onmouseout="hidedel(this)">
<div style="float: left;"><%=cmutil.getRequestName((String)wfidList.get(i)) %></div>
<%if(canedit){ %>
<div class="btn_del" onclick="delItem('wfids','<%=wfidList.get(i) %>')"></div>
<div class="btn_wh"></div>
<%} %>
</div>
<% }
}
%>
<input id="wfids" class="add_input" _init="1" _searchwidth="160" _searchtype="wf"/>
<div class="btn_add"></div>
<div class="btn_browser browser_wf" onclick="onShowWF('wfids')"></div>
<input type="hidden" id="wfids_val" name="wfids" value="<%=wfids %>"/>
</td>
</tr>
<tr>
<td class="title"><%=SystemEnv.getHtmlLabelName(783,user.getLanguage()) %></td>
<td class="data">
<%
List crmidList = Util.TokenizerString(crmids,",");
if(crmids.equals("")) crmids = ",";
for(int i=0;i<crmidList.size();i++){
if(!"0".equals(crmidList.get(i)) && !"".equals(crmidList.get(i))){
%>
<div class="txtlink txtlink<%=crmidList.get(i) %>" onmouseover="showdel(this)" onmouseout="hidedel(this)">
<div style="float: left;"><%=cmutil.getCustomer((String)crmidList.get(i)) %></div>
<%if(canedit){ %>
<div class="btn_del" onclick="delItem('crmids','<%=crmidList.get(i) %>')"></div>
<div class="btn_wh"></div>
<%} %>
</div>
<% }
}
%>
<input id="crmids" class="add_input" _init="1" _searchwidth="160" _searchtype="crm"/>
<div class="btn_add"></div>
<div class="btn_browser browser_crm" onclick="onShowCRM('crmids')"></div>
<input type="hidden" id="crmids_val" name="crmids" value="<%=crmids %>"/>
</td>
</tr>
<tr>
<td class="title"><%=SystemEnv.getHtmlLabelName(782,user.getLanguage()) %></td>
<td class="data">
<%
List projectidList = Util.TokenizerString(projectids,",");
if(projectids.equals("")) projectids = ",";
for(int i=0;i<projectidList.size();i++){
if(!"0".equals(projectidList.get(i)) && !"".equals(projectidList.get(i))){
%>
<div class="txtlink txtlink<%=projectidList.get(i) %>" onmouseover="showdel(this)" onmouseout="hidedel(this)">
<div style="float: left;"><%=cmutil.getProject((String)projectidList.get(i)) %></div>
<%if(canedit){ %>
<div class="btn_del" onclick="delItem('projectids','<%=projectidList.get(i) %>')"></div>
<div class="btn_wh"></div>
<%} %>
</div>
<% }
}
%>
<input id="projectids" class="add_input" _init="1" _searchwidth="160" _searchtype="proj"/>
<div class="btn_add"></div>
<div class="btn_browser browser_proj" onclick="onShowProj('projectids')"></div>
<input type="hidden" id="projectids_val" name="projectids" value="<%=projectids %>"/>
</td>
</tr>
<tr>
<td class="title"><%=SystemEnv.getHtmlLabelName(22194,user.getLanguage()) %></td>
<td id="filetd" class="data">
<%if(canupload){ %>
<div id="uploadDiv" class="upload" mainId="<%=mainid %>" subId="<%=subid %>" secId="<%=docsecid %>" maxsize="<%=maxsize %>"></div>
<%}else{ %>
<font color="red"><%=SystemEnv.getHtmlLabelName(24429,user.getLanguage()) %></font>
<%} %>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<%if(saveType!=1) {%>
<div style="width: 100%;height:60px;"> </div>
<%} %>
</div>
<div id="dftitle" _index="" class="dtitle" onclick="showdtitle()" style="position: absolute;top: 41px;left: 0px;display: none;">
<div id="dfhead" class="dtxt"></div>
</div>
</div>
</div>
</form>
<script language="javascript">
var tempval = "";
var tempbdate = "<%=begindate%>";
var tempedate = "<%=enddate%>";
var uploader;
$(document).ready(function(){
$("#dtitle1").click(function(){
$("#relateTable").toggle();
});
if('<%=parentid%>'!=""){
var tempText = transName("parentid","<%=parentid%>","<%=parentname%>");
$("#parentid").before(tempText);
}
$("textarea").textareaAutoHeight({ minHeight:20 });
//var textarea= document.getElementById("taskName");
//$("#taskName").height(textarea.scrollHeight);
//日期控件绑定
$.datepicker.setDefaults( {
"dateFormat": "yy-mm-dd",
"dayNamesMin": ['<%=SystemEnv.getHtmlLabelName(385820,user.getLanguage()) %>','<%=SystemEnv.getHtmlLabelName(385821,user.getLanguage()) %>', '<%=SystemEnv.getHtmlLabelName(385822,user.getLanguage()) %>', '<%=SystemEnv.getHtmlLabelName(385823,user.getLanguage()) %>', '<%=SystemEnv.getHtmlLabelName(385824,user.getLanguage()) %>', '<%=SystemEnv.getHtmlLabelName(385825,user.getLanguage()) %>', '<%=SystemEnv.getHtmlLabelName(385826,user.getLanguage()) %>'],
"monthNamesShort": ['<%=SystemEnv.getHtmlLabelName(1492,user.getLanguage()) %>','<%=SystemEnv.getHtmlLabelName(1493,user.getLanguage()) %>','<%=SystemEnv.getHtmlLabelName(1494,user.getLanguage()) %>','<%=SystemEnv.getHtmlLabelName(1495,user.getLanguage()) %>','<%=SystemEnv.getHtmlLabelName(1496,user.getLanguage()) %>','<%=SystemEnv.getHtmlLabelName(1497,user.getLanguage()) %>','<%=SystemEnv.getHtmlLabelName(1498,user.getLanguage()) %>','<%=SystemEnv.getHtmlLabelName(1499,user.getLanguage()) %>','<%=SystemEnv.getHtmlLabelName(1800,user.getLanguage()) %>','<%=SystemEnv.getHtmlLabelName(1801,user.getLanguage()) %>','<%=SystemEnv.getHtmlLabelName(1802,user.getLanguage()) %>','<%=SystemEnv.getHtmlLabelName(1803,user.getLanguage()) %>'],
"changeMonth": true,
"changeYear": true} );
$( "#begindate" ).datepicker({
"onSelect":function(){
if($("#begindate").val()!="" && $("#enddate").val()!="" && !compdate($("#begindate").val(),$("#enddate").val())){
alert("<%=SystemEnv.getHtmlLabelName(16721,user.getLanguage()) %>");
$("#begindate").val(tempbdate);
return;
}else{
tempbdate = $("#begindate").val();
}
}
}).datepicker("setDate","<%=begindate%>");
$( "#enddate" ).datepicker().datepicker("setDate","<%=enddate%>");
//分类信息收缩展开动作绑定
/**
$("div.dtitle").bind("click",function(){
if($(this).attr("_click")!=0){
var table = $(this).next("table.contenttable");
table.toggle();
if(table.css("display")=="none"){
$(this).attr("title","点击展开");
}else{
$(this).attr("title","点击收缩");
}
}
});
*/
//表格行背景效果及操作按钮控制绑定
$("table.datatable").find("tr").bind("click mouseenter",function(){
$(".btn_add").hide();$(".btn_browser").hide();
$(this).addClass("tr_over");
$(this).find(".input_def").addClass("input_over");
$(this).find("div.content_def").addClass("content_over");
if($(this).find("input.add_input").css("display")=="none"){
$(this).find("div.btn_add").show();
$(this).find("div.btn_browser").show();
}
}).bind("mouseleave",function(){
$(this).removeClass("tr_over");
$(this).find(".input_def").removeClass("input_over");
$(this).find("div.content_def").removeClass("content_over");
if($(this).find("input.add_input").css("display")=="none"){
$(this).find("div.btn_add").hide();
$(this).find("div.btn_browser").hide();
}
});
//输入添加按钮事件绑定
$("div.btn_add").bind("click",function(){
$(this).hide();
$(this).nextAll("div.btn_browser").hide();
$(this).prevAll("div.showcon").hide();
$(this).prevAll("input.add_input").show().focus();
$(this).prevAll("div.btn_select").show()
});
//单行文本输入框事件绑定
$(".input_def").bind("mouseover",function(){
$(this).addClass("input_over");
}).bind("mouseout",function(){
$(this).removeClass("input_over");
}).bind("focus",function(){
$(this).addClass("input_focus");
tempval = $(this).val();
//document.onkeydown=keyListener2;
if($(this).attr("id")=="name"){
//document.onkeyup=keyListener4;
}
}).bind("blur",function(){
$(this).removeClass("input_focus");
//doUpdate(this,1);
//document.onkeydown=null;
//document.onkeyup=null;
});
$("#tag").bind("focus",function(){
foucsobj2 = this;
//document.onkeydown=keyListener2;
}).bind("blur",function(){
//document.onkeydown=null;
});
//多行文本输入框事件绑定
$(".content_def").bind("mouseover",function(){
$(this).addClass("content_over");
}).bind("mouseout",function(){
$(this).removeClass("content_over");
}).bind("focus",function(){
$(this).addClass("content_focus");
tempval = $(this).html();
}).bind("blur",function(){
$(this).removeClass("content_focus");
//doUpdate(this,2);
});
$("div.btn_operate_add").bind("mouseover",function(){
$(this).addClass("btn_hover_add");
}).bind("mouseout",function(){
$(this).removeClass("btn_hover_add");
});
//联想输入框事件绑定
$("input.add_input").bind("focus",function(){
if($(this).attr("_init")==1){
$(this).FuzzyQuery({
url:"/workrelate/task/data/GetData.jsp",
record_num:5,
filed_name:"name",
searchtype:$(this).attr("_searchtype"),
divwidth: $(this).attr("_searchwidth"),
updatename:$(this).attr("id"),
updatetype:"str",
currentid:"<%=taskId%>"
});
$(this).attr("_init",0);
}
}).bind("blur",function(e){
if($(this).attr("id")=="tag" && $(this).val()!=""){
var target=$.event.fix(e).target;
//alert($(target).attr("id"));
//selectUpdate("tag",$(this).val(),$(this).val(),"str");
}else{
$(this).val("");
}
$(this).hide();
$(this).nextAll("div.btn_add").show();
$(this).nextAll("div.btn_browser").show();
$(this).prevAll("div.showcon").show();
//document.onkeydown=null;
});
$("#maininfo").scroll(function(){
var tp = 0;
for(var i=1;i>-1;i--){//设置标题(相关信息等)始终显示在当前页面
if(tp>=0){
tp = $("#dtitle"+i).position().top;
if(tp<0){
$("#dfhead").html($("#dtitle"+i).children("div.dtxt").html());
$("#dftitle").attr("_index",i).show();
}
}
}
if(tp>=0) $("#dftitle").hide();
});
bindUploaderDiv($("#uploadDiv"),"relatedacc","");
$('#maininfo').perfectScrollbar({"wheelSpeed": 40,"suppressScrollX":true});
setHeight();
});
$(document).bind("click",function(e){
var target=$.event.fix(e).target;
if($(target).parents(".fuzzyquery_main_div").length==0 && $("#tag").val()!=""){
selectUpdate("tag",$("#tag").val(),$("#tag").val(),"str");
}
if($("#tag").val()!="") $("#tag").val("");
});
function setHeight(){
$("#maininfo").height($("#main").height()-40);
//$('#maininfo').perfectScrollbar("update");
}
$(window).resize(function(){
setHeight();
});
function doSubmit(type){
var name = $("#taskName").val();
if(name==""){
alert("<%=SystemEnv.getHtmlLabelName(504646,user.getLanguage()) %>");
$("#taskName").focus();
return;
}
showload();
$("#saveType").val(type);
submitform();
}
function submitform(){
var oUploader=window[jQuery("#uploadDiv").attr("oUploaderIndex")];
try{
if(oUploader.getStats().files_queued==0) //如果没有选择附件则直接提交
exeFeedback();
else
oUploader.startUpload();
}catch(e) {
exeFeedback();
}
}
function exeFeedback(){
jQuery("#datetype").val(jQuery("#todo").val());
jQuery("#form1").submit();
}
function showload(){
jQuery("#operatepanel").html("<img src='../images/loading2.gif' style='margin-top:10px;margin-right:10px;' align='absMiddle'/>");
}
function doCancel(){
if(<%=saveType==1%>){
parent.closeShadowBox();
}
}
function setTodo(value){
$("#todo_td").children(".slink").removeClass("sdlink");
$("#todo"+value).addClass("sdlink");
$("#todo").val(value);
}
function setLevel(value){
$("#level_td").children(".slink").removeClass("sdlink");
$("#level"+value).addClass("sdlink");
$("#lev").val(value);
}
document.onkeydown=keyListener;
function keyListener(e){
e = e ? e : event;
if(e.keyCode == 13){
var target=$.event.fix(e).target;
if($(target).attr("id")=="tag" && $(target).val()!=""){
selectUpdate("tag",$(target).val(),$(target).val(),"str");
$(target).blur();
}
}
}
//选择内容后执行更新
function selectUpdate(fieldname,id,name,type){
if(id==null || typeof(id)=="undefined") return;
var addtxt = "";
var addids = "";
var addvalue = "";
if(fieldname == "principalid"){
if(id==$("#"+fieldname+"_val").val()){
return;
}else{
$("#"+fieldname+"_val").val(id);
}
addtxt = transName(fieldname,id,name);
addids = id;
}else if(fieldname == "parentid"){
if(id==$("#"+fieldname+"_val").val()){
return;
}else{
$("#"+fieldname+"_val").val(id);
//$("#showsubtr").hide();
}
addtxt = transName(fieldname,id,name);
addids = id;
}else{
var ids = id.split(",");
var names = name.split(",");
var vals = $("#"+fieldname+"_val").val();
for(var i=0;i<ids.length;i++){
if(vals.indexOf(","+ids[i]+",")<0 && $.trim(ids[i])!=""){
addids += ids[i] + ",";
addvalue += ids[i] + ",";
addtxt += transName(fieldname,ids[i],names[i]);
}
}
$("#"+fieldname+"_val").val(vals+addids);
if(fieldname != "partnerid" && fieldname != "sharerid") addids = vals+addids;
}
if(fieldname == "principalid" || fieldname=="parentid") $("#"+fieldname).prev("div.txtlink").remove();
$("#"+fieldname).before(addtxt);
if(!startWith(fieldname,"_")){
if(fieldname != "partnerid" && fieldname != "sharerid" && fieldname != "principalid" && fieldname != "parentid" && addvalue=="") return;
//exeUpdate(fieldname,addids,type,"",addvalue);
}
}
function delItem(fieldname,fieldvalue){
$("#"+fieldname).prevAll("div.txtlink"+fieldvalue).remove();
if(fieldname=="docids"||fieldname=="wfids"||fieldname=="meetingids"||fieldname=="crmids"||fieldname=="projectids"||fieldname=="taskids"||fieldname=="goalids"||fieldname=="tag"||startWith(fieldname,"_")){
var vals = $("#"+fieldname+"_val").val();
var _index = vals.indexOf(","+fieldvalue+",")
if(_index>-1 && $.trim(fieldvalue)!=""){
vals = vals.substring(0,_index+1)+vals.substring(_index+(fieldvalue+"").length+2);
$("#"+fieldname+"_val").val(vals);
if(!startWith(fieldname,"_")){
//exeUpdate(fieldname,vals,'str',fieldvalue);
}
}
}else{
//exeUpdate(fieldname,fieldvalue,'del');
}
}
function transName(fieldname,id,name){
var delname = fieldname;
if(startWith(fieldname,"_")) fieldname = fieldname.substring(1);
var restr = "";
if(fieldname=="principalid" || fieldname=="parentid"){
restr += "<div class='txtlink showcon txtlink"+id+"' onmouseover='showdel(this)' onmouseout='hidedel(this)'>";
}else{
restr += "<div class='txtlink txtlink"+id+"' onmouseover='showdel(this)' onmouseout='hidedel(this)'>";
}
restr += "<div style='float: left;'>";
if(fieldname=="principalid" || fieldname=="partnerid" || fieldname=="sharerid"){
restr += "<a href='/hrm/resource/HrmResource.jsp?id="+id+"' target='_blank'>"+name+"</a>";
}else if(fieldname=="docids"){
restr += "<a href=javaScript:openFullWindowHaveBar('/docs/docs/DocDsp.jsp?id="+id+"') >"+name+"</a>";
}else if(fieldname=="wfids"){
restr += "<a href=javaScript:openFullWindowHaveBar('/workflow/request/ViewRequest.jsp?requestid="+id+"') >"+name+"</a>";
}else if(fieldname=="crmids"){
restr += "<a href=javaScript:openFullWindowHaveBar('/CRM/data/ViewCustomer.jsp?log=n&CustomerID="+id+"') >"+name+"</a>";
}else if(fieldname=="projectids"){
restr += "<a href=javaScript:openFullWindowHaveBar('/proj/process/ViewTask.jsp?taskrecordid="+id+"') >"+name+"</a>";
}else if(fieldname=="taskids" || fieldname=="parentid"){
restr += "<a href=javaScript:refreshDetail("+id+") >"+name+"</a>";
}else if(fieldname=="goalids"){
restr += "<a href=javaScript:showGoal("+id+") >"+name+"</a>";
}else if(fieldname=="tag"){
restr += name;
}
restr +="</div>";
if(fieldname!="principalid"){
restr +="<div class='btn_del' onclick=\"delItem('"+delname+"','"+id+"')\"></div>";
restr +="<div class='btn_wh'></div>";
}
restr +="</div>";
return restr;
}
function onShowHrm(fieldname) {
var datas = window.showModalDialog("/systeminfo/BrowserMain.jsp?url=/hrm/resource/ResourceBrowser.jsp");
if (datas) {
var fieldvalue = "";
if(datas.id=="") fieldvalue=0;
selectUpdate(fieldname,datas.id,datas.name,'add');
}
}
function onShowHrms(fieldname) {
var datas = window.showModalDialog("/systeminfo/BrowserMain.jsp?url=/hrm/resource/MutiResourceBrowser.jsp");
if (datas) {
var fieldvalue = "";
if(datas.id=="") fieldvalue=0;
selectUpdate(fieldname,datas.id,datas.name,'add');
}
}
function onShowDoc(fieldname) {
var datas = window.showModalDialog("/docs/DocBrowserMain.jsp?url=/docs/docs/MutiDocBrowser.jsp");
if (datas) {
var fieldvalue = "";
if(datas.id=="") fieldvalue=0;
selectUpdate(fieldname,datas.id,datas.name,'str');
}
}
function onShowWF(fieldname) {
var datas = window.showModalDialog("/systeminfo/BrowserMain.jsp?url=/workflow/request/MultiRequestBrowser.jsp");
if (datas) {
var fieldvalue = "";
if(datas.id=="") fieldvalue=0;
selectUpdate(fieldname,datas.id,datas.name,'str');
}
}
function onShowCRM(fieldname) {
var datas = window.showModalDialog("/systeminfo/BrowserMain.jsp?url=/CRM/data/MutiCustomerBrowser.jsp");
if (datas) {
var fieldvalue = "";
if(datas.id=="") fieldvalue=0;
selectUpdate(fieldname,datas.id,datas.name,'str');
}
}
function onShowProj(fieldname) {
var datas = window.showModalDialog("/systeminfo/BrowserMain.jsp?url=/proj/data/MultiTaskBrowser.jsp");
if (datas) {
var fieldvalue = "";
if(datas.id=="") fieldvalue=0;
selectUpdate(fieldname,datas.id,datas.name,'str');
}
}
//显示删除按钮
function showdel(obj){
$(obj).find("div.btn_del").show();
$(obj).find("div.btn_wh").hide();
}
//隐藏删除按钮
function hidedel(obj){
$(obj).find("div.btn_del").hide();
$(obj).find("div.btn_wh").show();
}
if(<%=saveType%>!=0)
$("#relateTable").hide();
</script>
<%@ include file="/workrelate/task/util/uploader.jsp" %>
</body>
</html>