ListWfItem.php 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270
  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. //返回用户组
  21. function ReturnWfGroup($groupid){
  22. $count=count($groupid);
  23. if($count==0)
  24. {
  25. return '';
  26. }
  27. $ids=',';
  28. for($i=0;$i<$count;$i++)
  29. {
  30. $ids.=$groupid[$i].',';
  31. }
  32. return $ids;
  33. }
  34. //增加节点
  35. function AddWorkflowItem($add,$userid,$username){
  36. global $empire,$dbtbpre;
  37. $wfid=(int)$add['wfid'];
  38. $tno=(int)$add['tno'];
  39. $lztype=(int)$add['lztype'];
  40. $tbdo=(int)$add['tbdo'];
  41. $tddo=(int)$add['tddo'];
  42. if(!$wfid||!$tno)
  43. {
  44. printerror('EmptyWorkflowItem','history.go(-1)');
  45. }
  46. //验证权限
  47. CheckLevel($userid,$username,$classid,"workflow");
  48. $num=$empire->gettotal("select count(*) as total from {$dbtbpre}enewsworkflowitem where wfid='$wfid' and tno='$tno' limit 1");
  49. if($num)
  50. {
  51. printerror('HaveWorkflowItem','history.go(-1)');
  52. }
  53. $groupid=ReturnWfGroup($add[groupid]);
  54. $userclass=ReturnWfGroup($add[userclass]);
  55. $username=','.$add[username].',';
  56. if($groupid==''&&$userclass==''&&$add[username]=='')
  57. {
  58. printerror('EmptyWorkflowItemUser','history.go(-1)');
  59. }
  60. $add['tname']=hRepPostStr($add['tname'],1);
  61. $add['ttext']=hRepPostStr($add['ttext'],1);
  62. $groupid=hRepPostStr($groupid,1);
  63. $userclass=hRepPostStr($userclass,1);
  64. $username=hRepPostStr($username,1);
  65. $add['tstatus']=hRepPostStr($add['tstatus'],1);
  66. $sql=$empire->query("insert into {$dbtbpre}enewsworkflowitem(wfid,tname,tno,ttext,groupid,userclass,username,lztype,tbdo,tddo,tstatus) values('$wfid','$add[tname]','$tno','$add[ttext]','$groupid','$userclass','$username','$lztype','$tbdo','$tddo','$add[tstatus]');");
  67. $tid=$empire->lastid();
  68. if($sql)
  69. {
  70. //操作日志
  71. insert_dolog("wfid=$wfid&tid=$tid<br>tname=".$add[tname]);
  72. printerror("AddWorkflowItemSuccess","AddWfItem.php?enews=AddWorkflowItem&wfid=$wfid".hReturnEcmsHashStrHref2(0));
  73. }
  74. else
  75. {printerror("DbError","history.go(-1)");}
  76. }
  77. //修改节点
  78. function EditWorkflowItem($add,$userid,$username){
  79. global $empire,$dbtbpre;
  80. $tid=(int)$add['tid'];
  81. $wfid=(int)$add['wfid'];
  82. $tno=(int)$add['tno'];
  83. $lztype=(int)$add['lztype'];
  84. $tbdo=(int)$add['tbdo'];
  85. $tddo=(int)$add['tddo'];
  86. if(!$tid||!$wfid||!$tno)
  87. {
  88. printerror('EmptyWorkflowItem','history.go(-1)');
  89. }
  90. //验证权限
  91. CheckLevel($userid,$username,$classid,"workflow");
  92. $num=$empire->gettotal("select count(*) as total from {$dbtbpre}enewsworkflowitem where wfid='$wfid' and tno='$tno' and tid<>$tid limit 1");
  93. if($num)
  94. {
  95. printerror('HaveWorkflowItem','history.go(-1)');
  96. }
  97. $groupid=ReturnWfGroup($add[groupid]);
  98. $userclass=ReturnWfGroup($add[userclass]);
  99. $username=','.$add[username].',';
  100. if($groupid==''&&$userclass==''&&$add[username]=='')
  101. {
  102. printerror('EmptyWorkflowItemUser','history.go(-1)');
  103. }
  104. $add['tname']=hRepPostStr($add['tname'],1);
  105. $add['ttext']=hRepPostStr($add['ttext'],1);
  106. $groupid=hRepPostStr($groupid,1);
  107. $userclass=hRepPostStr($userclass,1);
  108. $username=hRepPostStr($username,1);
  109. $add['tstatus']=hRepPostStr($add['tstatus'],1);
  110. $sql=$empire->query("update {$dbtbpre}enewsworkflowitem set tname='$add[tname]',tno='$tno',ttext='$add[ttext]',groupid='$groupid',userclass='$userclass',username='$username',lztype='$lztype',tbdo='$tbdo',tddo='$tddo',tstatus='$add[tstatus]' where tid='$tid'");
  111. if($sql)
  112. {
  113. //操作日志
  114. insert_dolog("wfid=$wfid&tid=$tid<br>tname=".$add[tname]);
  115. printerror("EditWorkflowItemSuccess","ListWfItem.php?wfid=$wfid".hReturnEcmsHashStrHref2(0));
  116. }
  117. else
  118. {printerror("DbError","history.go(-1)");}
  119. }
  120. //删除节点
  121. function DelWorkflowItem($add,$userid,$username){
  122. global $empire,$dbtbpre;
  123. $tid=(int)$add[tid];
  124. $wfid=(int)$add['wfid'];
  125. if(!$tid||!$wfid)
  126. {
  127. printerror("NotDelWorkflowItemid","history.go(-1)");
  128. }
  129. //验证权限
  130. CheckLevel($userid,$username,$classid,"workflow");
  131. $r=$empire->fetch1("select tname from {$dbtbpre}enewsworkflowitem where tid='$tid'");
  132. $sql=$empire->query("delete from {$dbtbpre}enewsworkflowitem where tid='$tid'");
  133. if($sql)
  134. {
  135. //操作日志
  136. insert_dolog("wfid=$wfid&tid=$tid<br>tname=".$r[tname]);
  137. printerror("DelWorkflowItemSuccess","ListWfItem.php?wfid=$wfid".hReturnEcmsHashStrHref2(0));
  138. }
  139. else
  140. {printerror("DbError","history.go(-1)");}
  141. }
  142. //修改节点编号
  143. function EditWorkflowItemTno($add,$userid,$username){
  144. global $empire,$dbtbpre;
  145. $wfid=(int)$add['wfid'];
  146. $tno=$add[tno];
  147. $tid=$add[tid];
  148. for($i=0;$i<count($tid);$i++)
  149. {
  150. $newtno=(int)$tno[$i];
  151. if(empty($newtno))
  152. {
  153. continue;
  154. }
  155. $newtid=(int)$tid[$i];
  156. $empire->query("update {$dbtbpre}enewsworkflowitem set tno='$newtno' where tid='$newtid'");
  157. }
  158. //操作日志
  159. insert_dolog("wfid=$wfid");
  160. printerror("EditWorkflowItemSuccess","ListWfItem.php?wfid=$wfid".hReturnEcmsHashStrHref2(0));
  161. }
  162. $enews=$_POST['enews'];
  163. if(empty($enews))
  164. {$enews=$_GET['enews'];}
  165. if($enews)
  166. {
  167. hCheckEcmsRHash();
  168. }
  169. if($enews=="AddWorkflowItem")//增加节点
  170. {
  171. AddWorkflowItem($_POST,$logininid,$loginin);
  172. }
  173. elseif($enews=="EditWorkflowItem")//修改节点
  174. {
  175. EditWorkflowItem($_POST,$logininid,$loginin);
  176. }
  177. elseif($enews=="DelWorkflowItem")//删除节点
  178. {
  179. DelWorkflowItem($_GET,$logininid,$loginin);
  180. }
  181. elseif($enews=="EditWorkflowItemTno")//修改节点编号
  182. {
  183. EditWorkflowItemTno($_POST,$logininid,$loginin);
  184. }
  185. $wfid=(int)$_GET['wfid'];
  186. if(!$wfid)
  187. {
  188. printerror('ErrorUrl','');
  189. }
  190. $wfr=$empire->fetch1("select wfid,wfname from {$dbtbpre}enewsworkflow where wfid='$wfid'");
  191. if(!$wfr['wfid'])
  192. {
  193. printerror('ErrorUrl','');
  194. }
  195. $query="select tid,tname,tno,lztype from {$dbtbpre}enewsworkflowitem where wfid='$wfid' order by tno,tid";
  196. $sql=$empire->query($query);
  197. $url="<a href=ListWf.php".$ecms_hashur['whehref'].">管理工作流</a> &gt; ".$wfr[wfname]." &gt; <a href='ListWfItem.php?wfid=$wfid".$ecms_hashur['ehref']."'>管理节点</a>";
  198. ?>
  199. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  200. <html>
  201. <head>
  202. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  203. <title>工作流</title>
  204. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  205. </head>
  206. <body>
  207. <table width="100%" border="0" cellspacing="1" cellpadding="3">
  208. <tr>
  209. <td width="50%">位置:
  210. <?=$url?>
  211. </td>
  212. <td><div align="right" class="emenubutton">
  213. <input type="button" name="Submit5" value="增加节点" onclick="self.location.href='AddWfItem.php?enews=AddWorkflowItem&wfid=<?=$wfid?><?=$ecms_hashur['ehref']?>';">
  214. </div></td>
  215. </tr>
  216. </table>
  217. <br>
  218. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  219. <form name="form1" method="post" action="ListWfItem.php">
  220. <?=$ecms_hashur['form']?>
  221. <tr class="header">
  222. <td width="10%"><div align="center">编号</div></td>
  223. <td width="44%" height="25"> <div align="center">节点名称</div></td>
  224. <td width="16%"><div align="center">流转方式</div></td>
  225. <td width="23%" height="25"><div align="center">操作</div></td>
  226. </tr>
  227. <?
  228. while($r=$empire->fetch($sql))
  229. {
  230. ?>
  231. <tr bgcolor="#FFFFFF" onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#C3EFFF'">
  232. <td><div align="center">
  233. <input name="tno[]" type="text" id="tno[]" value="<?=$r[tno]?>" size="5">
  234. <input type="hidden" name="tid[]" value="<?=$r[tid]?>">
  235. </div></td>
  236. <td height="25">
  237. <?=$r[tname]?>
  238. </td>
  239. <td><div align="center">
  240. <?=$r[lztype]==1?'会签':'普通流转'?>
  241. </div></td>
  242. <td height="25"><div align="center">[<a href="AddWfItem.php?enews=EditWorkflowItem&tid=<?=$r[tid]?>&wfid=<?=$wfid?><?=$ecms_hashur['ehref']?>">修改</a>]
  243. [<a href="AddWfItem.php?enews=AddWorkflowItem&tid=<?=$r[tid]?>&wfid=<?=$wfid?>&docopy=1<?=$ecms_hashur['ehref']?>">复制</a>]
  244. [<a href="ListWfItem.php?enews=DelWorkflowItem&tid=<?=$r[tid]?>&wfid=<?=$wfid?><?=$ecms_hashur['href']?>" onclick="return confirm('确认要删除?');">删除</a>]</div></td>
  245. </tr>
  246. <?
  247. }
  248. ?>
  249. <tr bgcolor="#FFFFFF">
  250. <td height="25" colspan="4"> <input type="submit" name="Submit" value="修改编号">
  251. <input name="enews" type="hidden" id="enews" value="EditWorkflowItemTno">
  252. <input name="wfid" type="hidden" id="wfid" value="<?=$wfid?>"> </td>
  253. </tr>
  254. </form>
  255. </table>
  256. </body>
  257. </html>
  258. <?
  259. db_close();
  260. $empire=null;
  261. ?>