AddWfItem.php 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. <?php
  2. define('EmpireCMSAdmin','1');
  3. require("../../class/connect.php");
  4. require("../../class/db_sql.php");
  5. require("../../class/functions.php");
  6. $link=db_connect();
  7. $empire=new mysqlquery();
  8. $editor=1;
  9. //验证用户
  10. $lur=is_login();
  11. $logininid=$lur['userid'];
  12. $loginin=$lur['username'];
  13. $loginrnd=$lur['rnd'];
  14. $loginlevel=$lur['groupid'];
  15. $loginadminstyleid=$lur['adminstyleid'];
  16. //ehash
  17. $ecms_hashur=hReturnEcmsHashStrAll();
  18. //验证权限
  19. CheckLevel($logininid,$loginin,$classid,"workflow");
  20. $wfid=(int)$_GET['wfid'];
  21. if(!$wfid)
  22. {
  23. printerror('ErrorUrl','');
  24. }
  25. $wfr=$empire->fetch1("select wfid,wfname from {$dbtbpre}enewsworkflow where wfid='$wfid'");
  26. if(!$wfr['wfid'])
  27. {
  28. printerror('ErrorUrl','');
  29. }
  30. $enews=ehtmlspecialchars($_GET['enews']);
  31. $postword='增加节点';
  32. $url="<a href=ListWf.php".$ecms_hashur['whehref'].">管理工作流</a> &gt; ".$wfr[wfname]." &gt; <a href='ListWfItem.php?wfid=$wfid".$ecms_hashur['ehref']."'>管理节点</a> &gt; 增加节点";
  33. //复制
  34. if($enews=="AddWorkflowItem"&&$_GET['docopy'])
  35. {
  36. $tid=(int)$_GET['tid'];
  37. $r=$empire->fetch1("select * from {$dbtbpre}enewsworkflowitem where tid='$tid'");
  38. $url="<a href=ListWf.php".$ecms_hashur['whehref'].">管理工作流</a> &gt; ".$wfr[wfname]." &gt; <a href='ListWfItem.php?wfid=$wfid".$ecms_hashur['ehref']."'>管理节点</a> &gt; 复制节点:<b>".$r[tname]."</b>";
  39. $username=substr($r[username],1,-1);
  40. }
  41. //修改
  42. if($enews=="EditWorkflowItem")
  43. {
  44. $postword='修改节点';
  45. $tid=(int)$_GET['tid'];
  46. $r=$empire->fetch1("select * from {$dbtbpre}enewsworkflowitem where tid='$tid'");
  47. $url="<a href=ListWf.php".$ecms_hashur['whehref'].">管理工作流</a> &gt; ".$wfr[wfname]." &gt; <a href='ListWfItem.php?wfid=$wfid".$ecms_hashur['ehref']."'>管理节点</a> &gt; 修改节点:<b>".$r[tname]."</b>";
  48. $username=substr($r[username],1,-1);
  49. }
  50. //用户组
  51. $group='';
  52. $groupsql=$empire->query("select groupid,groupname from {$dbtbpre}enewsgroup order by groupid");
  53. while($groupr=$empire->fetch($groupsql))
  54. {
  55. $select='';
  56. if(strstr($r[groupid],','.$groupr[groupid].','))
  57. {
  58. $select=' selected';
  59. }
  60. $group.="<option value='".$groupr[groupid]."'".$select.">".$groupr[groupname]."</option>";
  61. }
  62. //部门
  63. $userclass='';
  64. $ucsql=$empire->query("select classid,classname from {$dbtbpre}enewsuserclass order by classid");
  65. while($ucr=$empire->fetch($ucsql))
  66. {
  67. $select='';
  68. if(strstr($r[userclass],','.$ucr[classid].','))
  69. {
  70. $select=' selected';
  71. }
  72. $userclass.="<option value='".$ucr[classid]."'".$select.">".$ucr[classname]."</option>";
  73. }
  74. //原节点
  75. $items='';
  76. $maxtno=0;
  77. $ytsql=$empire->query("select tid,tname,tno from {$dbtbpre}enewsworkflowitem where wfid='$wfid'");
  78. while($ytr=$empire->fetch($ytsql))
  79. {
  80. if($ytr[tno]>$maxtno)
  81. {
  82. $maxtno=$ytr[tno];
  83. }
  84. $select='';
  85. if($ytr[tid]==$r[tbdo])
  86. {
  87. $select=' selected';
  88. }
  89. $items.="<option value='".$ytr[tid]."'".$select.">".$ytr[tname]."(".$ytr[tno].")</option>";
  90. }
  91. if($enews=="AddWorkflowItem")
  92. {
  93. $r[tno]=$maxtno+1;
  94. }
  95. db_close();
  96. $empire=null;
  97. ?>
  98. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  99. <html>
  100. <head>
  101. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  102. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  103. <title>工作流</title>
  104. <script>
  105. function selectalls(doselect,formvar)
  106. {
  107. var bool=doselect==1?true:false;
  108. var selectform=document.getElementById(formvar);
  109. for(var i=0;i<selectform.length;i++)
  110. {
  111. selectform.all[i].selected=bool;
  112. }
  113. }
  114. </script>
  115. </head>
  116. <body>
  117. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  118. <tr>
  119. <td>位置:<?=$url?></td>
  120. </tr>
  121. </table>
  122. <form name="form1" method="post" action="ListWfItem.php">
  123. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  124. <?=$ecms_hashur['form']?>
  125. <tr class="header">
  126. <td height="25" colspan="2">
  127. <?=$postword?>
  128. <input name="enews" type="hidden" id="enews" value="<?=$enews?>"> <input name="tid" type="hidden" id="tid" value="<?=$tid?>">
  129. <input name="wfid" type="hidden" id="wfid" value="<?=$wfid?>"> </td>
  130. </tr>
  131. <tr>
  132. <td width="18%" height="25" bgcolor="#FFFFFF">节点编号</td>
  133. <td width="82%" height="25" bgcolor="#FFFFFF"> <input name="tno" type="text" id="tno" value="<?=$r[tno]?>" size="42">
  134. <select name="changetno" id="changetno" onchange="document.form1.tno.value=this.options[this.selectedIndex].value">
  135. <option>选择</option>
  136. <option value="1">起始编号(1)</option>
  137. <option value="100">结束编号(100)</option>
  138. </select> </td>
  139. </tr>
  140. <tr>
  141. <td height="25" bgcolor="#FFFFFF">节点名称</td>
  142. <td height="25" bgcolor="#FFFFFF"> <input name="tname" type="text" id="tname" value="<?=$r[tname]?>" size="42"></td>
  143. </tr>
  144. <tr>
  145. <td height="25" bgcolor="#FFFFFF">状态说明</td>
  146. <td height="25" bgcolor="#FFFFFF"><input name="tstatus" type="text" id="tstatus" value="<?=$r[tstatus]?>" size="42"></td>
  147. </tr>
  148. <tr>
  149. <td height="25" bgcolor="#FFFFFF">节点描述</td>
  150. <td height="25" bgcolor="#FFFFFF"> <textarea name="ttext" cols="60" rows="5" id="varname3"><?=ehtmlspecialchars($r[ttext])?></textarea></td>
  151. </tr>
  152. <tr>
  153. <td height="25" colspan="2">接收对象</td>
  154. </tr>
  155. <tr>
  156. <td height="25" bgcolor="#FFFFFF">用户</td>
  157. <td height="25" bgcolor="#FFFFFF"> <input name="username" type="text" id="username" value="<?=$username?>" size="42">
  158. <font color="#666666">
  159. <input type="button" name="Submit3" value="选择" onclick="window.open('../ChangeUser.php?field=username&form=form1<?=$ecms_hashur['ehref']?>','','width=300,height=520,scrollbars=yes');">
  160. (多个用户用“,”逗号隔开)</font></td>
  161. </tr>
  162. <tr>
  163. <td height="25" bgcolor="#FFFFFF">用户组</td>
  164. <td height="25" bgcolor="#FFFFFF"> <select name="groupid[]" size="5" multiple id="groupidselect" style="width:180">
  165. <?=$group?>
  166. </select>
  167. [<a href="#empirecms" onclick="selectalls(0,'groupidselect')">全部取消</a>]</td>
  168. </tr>
  169. <tr>
  170. <td height="25" bgcolor="#FFFFFF">部门</td>
  171. <td height="25" bgcolor="#FFFFFF"> <select name="userclass[]" size="5" multiple id="userclassselect" style="width:180">
  172. <?=$userclass?>
  173. </select>
  174. [<a href="#empirecms" onclick="selectalls(0,'userclassselect')">全部取消</a>]</td>
  175. </tr>
  176. <tr>
  177. <td height="25" bgcolor="#FFFFFF">流转方式</td>
  178. <td height="25" bgcolor="#FFFFFF"><input type="radio" name="lztype" value="0"<?=$r[lztype]==0?' checked':''?>>
  179. 普通流转
  180. <input type="radio" name="lztype" value="1"<?=$r[lztype]==1?' checked':''?>>
  181. 会签</td>
  182. </tr>
  183. <tr>
  184. <td height="25" bgcolor="#FFFFFF">返工时打回</td>
  185. <td height="25" bgcolor="#FFFFFF"><select name="tbdo" id="tbdo">
  186. <option value="0"<?=$r[tbdo]==0?' selected':''?>>打回作者</option>
  187. <?=$items?>
  188. </select></td>
  189. </tr>
  190. <tr>
  191. <td height="25" bgcolor="#FFFFFF">否决时操作</td>
  192. <td height="25" bgcolor="#FFFFFF"><select name="tddo" id="tddo">
  193. <option value="0"<?=$r[tddo]==0?' selected':''?>>不操作</option>
  194. <option value="1"<?=$r[tddo]==1?' selected':''?>>删除信息</option>
  195. </select></td>
  196. </tr>
  197. <tr>
  198. <td height="25" bgcolor="#FFFFFF">&nbsp;</td>
  199. <td height="25" bgcolor="#FFFFFF"> <input type="submit" name="Submit" value="提交">
  200. <input type="reset" name="Submit2" value="重置"></td>
  201. </tr>
  202. </table>
  203. </form>
  204. </body>
  205. </html>