DoWfInfo.php 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. <?php
  2. define('EmpireCMSAdmin','1');
  3. require("../../class/connect.php");
  4. require("../../class/db_sql.php");
  5. require("../../class/functions.php");
  6. require("../../data/dbcache/class.php");
  7. $link=db_connect();
  8. $empire=new mysqlquery();
  9. $editor=1;
  10. //验证用户
  11. $lur=is_login();
  12. $logininid=$lur['userid'];
  13. $loginin=$lur['username'];
  14. $loginrnd=$lur['rnd'];
  15. $loginlevel=$lur['groupid'];
  16. $loginadminstyleid=$lur['adminstyleid'];
  17. //ehash
  18. $ecms_hashur=hReturnEcmsHashStrAll();
  19. $isclose=(int)$_GET['isclose'];
  20. if($isclose)
  21. {
  22. echo"<script>window.close();</script>";
  23. exit();
  24. }
  25. //审核
  26. $ecmscheck=(int)$_GET['ecmscheck'];
  27. $addecmscheck='';
  28. $indexchecked=1;
  29. if($ecmscheck)
  30. {
  31. $addecmscheck='&ecmscheck='.$ecmscheck;
  32. $indexchecked=0;
  33. }
  34. $id=(int)$_GET['id'];
  35. $classid=(int)$_GET['classid'];
  36. if(!$id||!$classid||!$class_r[$classid][tbname])
  37. {
  38. printerror('ErrorUrl','');
  39. }
  40. //索引表
  41. $index_r=$empire->fetch1("select checked from {$dbtbpre}ecms_".$class_r[$classid][tbname]."_index where id='$id' limit 1");
  42. //返回表
  43. $infotb=ReturnInfoMainTbname($class_r[$classid][tbname],$index_r['checked']);
  44. $nr=$empire->fetch1("select id,classid,userid,username,isqf,title from ".$infotb." where id='$id' limit 1");
  45. if(!$nr['id']||$classid!=$nr[classid]||!$nr[isqf])
  46. {
  47. printerror('ErrorUrl','');
  48. }
  49. $r=$empire->fetch1("select id,wfid,tid,groupid,userclass,username,checknum,tstatus,checktno from {$dbtbpre}enewswfinfo where id='$id' and classid='$classid' limit 1");
  50. if(!$r['id'])
  51. {
  52. printerror('ErrorUrl','');
  53. }
  54. //工作流
  55. if($r[tid])
  56. {
  57. $cwfitemr=$empire->fetch1("select wfid,groupid,userclass,username from {$dbtbpre}enewsworkflowitem where tid='$r[tid]'");
  58. if(strstr(','.$cwfitemr[groupid].',',','.$lur[groupid].',')||strstr(','.$cwfitemr[userclass].',',','.$lur[classid].',')||strstr(','.$cwfitemr[username].',',','.$lur[username].','))
  59. {
  60. }
  61. else
  62. {
  63. //printerror("NotDoCheckUserLevel","history.go(-1)");
  64. }
  65. }
  66. //工作流
  67. $wfr=$empire->fetch1("select wfname from {$dbtbpre}enewsworkflow where wfid='$r[wfid]'");
  68. //节点
  69. $endwfitem=0;
  70. $wfitems='';
  71. $wfitemsql=$empire->query("select tid,tname from {$dbtbpre}enewsworkflowitem where wfid='$r[wfid]' order by tno");
  72. while($wfitemr=$empire->fetch($wfitemsql))
  73. {
  74. if($r[checktno]=='100')
  75. {
  76. $endwfitem=1;
  77. }
  78. $wfitemsch='&nbsp;&nbsp;';
  79. $select='';
  80. if($wfitemr[tid]==$r[tid]&&$endwfitem==0)
  81. {
  82. $select=' selected';
  83. $wfitemsch='&gt;';
  84. }
  85. $wfitems.="<option value='".$wfitemr[tid]."'".$select.">".$wfitemsch.$wfitemr[tname]."</option>";
  86. }
  87. //记录
  88. $logsql=$empire->query("select tid,username,checktime,checktext,checknum,checktype from {$dbtbpre}enewswfinfolog where id='$id' and classid='$classid' order by logid desc");
  89. ?>
  90. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  91. <html>
  92. <head>
  93. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  94. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  95. <title>签发信息</title>
  96. </head>
  97. <body>
  98. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  99. <tr>
  100. <td width="41%">信息:<a href="ShowWfInfo.php?classid=<?=$classid?>&id=<?=$r[id]?><?=$addecmscheck?><?=$ecms_hashur['ehref']?>" target=_blank>
  101. <?=stripSlashes($nr[title])?>
  102. </a></td>
  103. <td width="59%"><div align="right">工作流:<?=$wfr[wfname]?>,进度:
  104. <select name="select">
  105. <?=$wfitems?>
  106. <?=$endwfitem==1?'<option value="0" selected>&gt;审核通过</option>':'<option value="0">&nbsp;&nbsp;审核通过</option>'?>
  107. </select>
  108. </div></td>
  109. </tr>
  110. </table>
  111. <form name="wfform" method="post" action="../ecmsinfo.php" onsubmit="return confirm('确认要提交?');">
  112. <table width="100%" border="0" cellspacing="1" cellpadding="3" class="tableborder">
  113. <?=$ecms_hashur['form']?>
  114. <tr class="header">
  115. <td colspan="2">签发</td>
  116. </tr>
  117. <tr bgcolor="#FFFFFF">
  118. <td width="20%">操作</td>
  119. <td width="80%">
  120. <input name="doing" type="radio" value="1" checked>
  121. 通过
  122. <input type="radio" name="doing" value="2">
  123. 返工
  124. <input type="radio" name="doing" value="3">
  125. 否决</td>
  126. </tr>
  127. <tr bgcolor="#FFFFFF">
  128. <td>评语</td>
  129. <td>
  130. <textarea name="checktext" cols="60" rows="8" id="textarea"></textarea></td>
  131. </tr>
  132. <tr bgcolor="#FFFFFF">
  133. <td>&nbsp;</td>
  134. <td>
  135. <input type="submit" name="Submit3" value="提交">
  136. <input name="enews" type="hidden" id="enews" value="DoWfInfo">
  137. <input name="classid" type="hidden" id="classid" value="<?=$classid?>">
  138. <input name="id" type="hidden" id="id" value="<?=$id?>">
  139. <input name="ecmscheck" type="hidden" id="ecmscheck" value="<?=$ecmscheck?>">
  140. </td>
  141. </tr>
  142. </table>
  143. </form>
  144. <table width="98%" border="0" cellspacing="1" cellpadding="3" class="tableborder">
  145. <tr class="header">
  146. <td colspan="5">操作记录</td>
  147. </tr>
  148. <tr>
  149. <td width="17%"><div align="center">节点</div></td>
  150. <td width="7%"><div align="center">操作</div></td>
  151. <td width="13%"><div align="center">签发者</div></td>
  152. <td width="18%"><div align="center">时间</div></td>
  153. <td width="45%"><div align="center">评语</div></td>
  154. </tr>
  155. <?php
  156. while($logr=$empire->fetch($logsql))
  157. {
  158. //节点
  159. $itemr=$empire->fetch1("select tname from {$dbtbpre}enewsworkflowitem where tid='$logr[tid]'");
  160. //操作
  161. $st='';
  162. if($logr['checktype']==1)
  163. {
  164. $st='通过';
  165. }
  166. elseif($logr['checktype']==2)
  167. {
  168. $st='返工';
  169. }
  170. elseif($logr['checktype']==3)
  171. {
  172. $st='否决';
  173. }
  174. elseif($logr['checktype']==0)
  175. {
  176. $st='送审';
  177. }
  178. ?>
  179. <tr bgcolor="#FFFFFF">
  180. <td>
  181. <div align="center"><?=$itemr[tname]?></div></td>
  182. <td>
  183. <div align="center"><b><?=$st?></b></div></td>
  184. <td>
  185. <div align="center"><?=$logr['username']?></div></td>
  186. <td>
  187. <div align="center"><?=date('Y-m-d H:i:s',$logr['checktime'])?></div></td>
  188. <td>
  189. <?=nl2br($logr['checktext'])?>
  190. </td>
  191. </tr>
  192. <?php
  193. }
  194. ?>
  195. </table>
  196. <br>
  197. </body>
  198. </html>
  199. <?
  200. db_close();
  201. $empire=null;
  202. ?>