process.html 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514
  1. <div class="editNode">
  2. <div title="基本" class="MWFTab">
  3. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  4. <tr>
  5. <td class="editTableTitle">标识:</td>
  6. <td class="editTableValue">text{$.id}</td>
  7. </tr>
  8. <tr>
  9. <td class="editTableTitle">创建人:</td>
  10. <td class="editTableValue">text{$.creatorPerson}</td>
  11. </tr>
  12. <tr>
  13. <td class="editTableTitle">创建时间:</td>
  14. <td class="editTableValue">text{$.createTime}</td>
  15. </tr>
  16. <tr>
  17. <td class="editTableTitle">更新人:</td>
  18. <td class="editTableValue">text{$.lastUpdatePerson}</td>
  19. </tr>
  20. <tr>
  21. <td class="editTableTitle">更新时间:</td>
  22. <td class="editTableValue">text{$.lastUpdateTime}</td>
  23. </tr>
  24. <tr>
  25. <td class="editTableTitle">应用:</td>
  26. <td class="editTableValue">text{$.applicationName}</td>
  27. </tr>
  28. <tr>
  29. <td class="editTableTitle">名称:</td>
  30. <td class="editTableValue"><input type="text" name="name" value="text{$.name}" class="editTableInput"/></td>
  31. </tr>
  32. <tr>
  33. <td class="editTableTitle">别名:</td>
  34. <td class="editTableValue"><input type="text" name="alias" value="text{$.alias}" class="editTableInput"/></td>
  35. </tr>
  36. <tr>
  37. <td class="editTableTitle">描述:</td>
  38. <td class="editTableValue"><textarea name="description" class="editTableTextarea">text{$.description}</textarea></td>
  39. </tr>
  40. <tr>
  41. <td class="editTableTitle">版本:</td>
  42. <td class="editTableValue">text{$.editionName}</td>
  43. </tr>
  44. <tr>
  45. <td class="editTableTitle">版本描述:</td>
  46. <td class="editTableValue"><textarea name="editionDes" class="editTableTextarea">text{$.editionDes}</textarea></td>
  47. </tr>
  48. <tr>
  49. <td class="editTableTitle">图标:</td>
  50. <td class="editTableValue"><div class="MWFIcon" name="icon"></div></td>
  51. </tr>
  52. <tr>
  53. <td class="editTableTitle">使用路由名称作为缺省意见:</td>
  54. <td class="editTableValue">
  55. <input class="editTableRadio" name="routeNameAsOpinion" text{($.routeNameAsOpinion===true)?'checked':''} type="radio" value="true"/>是
  56. <input class="editTableRadio" name="routeNameAsOpinion" text{($.routeNameAsOpinion!==true)?'checked':''} type="radio" value="false"/>否
  57. <br/>(选择“否”:处理意见没填写则意见为空)
  58. </td>
  59. </tr>
  60. </table>
  61. <div style="height: 22px; line-height: 22px; background-color: #f1f1f1; text-align: center; font-weight: bold; border-top: 1px solid #cccccc">启 动</div>
  62. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  63. <tr>
  64. <td class="editTableTitle">启动模式:</td>
  65. <td class="editTableValue">
  66. <input class="editTableRadio" name="defaultStartMode" onclick="if (this.checked){ $('text{$.id}checkDraftArea').setStyle('display', 'block');}" text{($.defaultStartMode!=='draft')?'checked':''} type="radio" value="instance"/>实例模式
  67. <span style="color: #999999; font-size: 12px"> (新建流程时直接创建流程实例,给拟稿人生成待办)</span>
  68. <br/><input class="editTableRadio" name="defaultStartMode" onclick="if (this.checked){ $('text{$.id}checkDraftArea').setStyle('display', 'none');}" text{($.defaultStartMode==='draft')?'checked':''} type="radio" value="draft"/>草稿模式
  69. <span style="color: #999999; font-size: 12px"> (新建流程时不创建流程实例,不生成待办,产生一个草稿文档,直到流转时才创建流程实例)</span>
  70. </td>
  71. </tr>
  72. </table>
  73. <div id="text{$.id}checkDraftArea" style="display: text{($.defaultStartMode=='draft')?'none':'block'};">
  74. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  75. <tr>
  76. <td class="editTableTitle">新建检查:</td>
  77. <td class="editTableValue">
  78. <input class="editTableRadio" name="checkDraft" text{($.checkDraft===true)?'checked':''} type="radio" value="true"/>是
  79. <input class="editTableRadio" name="checkDraft" text{($.checkDraft!==true)?'checked':''} type="radio" value="false"/>否
  80. <br/>(选择“是”:未保存过的流程实例不会保留)
  81. </td>
  82. </tr>
  83. </table>
  84. </div>
  85. <div style="height: 22px; line-height: 22px; background-color: #f1f1f1; text-align: center; font-weight: bold; border-top: 1px solid #cccccc">权 限</div>
  86. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable" id="processEditStarter">
  87. <tr>
  88. <td class="editTableTitle">启动人:</td>
  89. <td class="editTableValue">
  90. <div class="MWFPersonIdentity" name="startableIdentityList"></div>
  91. </td>
  92. </tr>
  93. <tr>
  94. <td class="editTableTitle">启动组织:</td>
  95. <td class="editTableValue">
  96. <div class="MWFPersonUnit" name="startableUnitList"></div>
  97. </td>
  98. </tr>
  99. <!--<tr>-->
  100. <!--<td class="editTableTitle">启动部门:</td>-->
  101. <!--<td class="editTableValue">-->
  102. <!--<div class="MWFPersonDepartment" name="startableDepartmentList"></div>-->
  103. <!--</td>-->
  104. <!--</tr>-->
  105. <!--<tr>-->
  106. <!--<td class="editTableTitle">启动公司:</td>-->
  107. <!--<td class="editTableValue">-->
  108. <!--<div class="MWFPersonCompany" name="startableCompanyList"></div>-->
  109. <!--</td>-->
  110. <!--</tr>-->
  111. </table>
  112. <hr />
  113. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  114. <tr>
  115. <td class="editTableTitle">管理者:</td>
  116. <td class="editTableValue">
  117. <div class="MWFPersonPerson" name="controllerList"></div>
  118. </td>
  119. </tr>
  120. <!--<tr>-->
  121. <!--<td class="editTableTitle">管理部门:</td>-->
  122. <!--<td class="editTableValue">-->
  123. <!--<div class="MWFPersonDepartment" name="manageDepartmentList"></div>-->
  124. <!--</td>-->
  125. <!--</tr>-->
  126. <!--<tr>-->
  127. <!--<td class="editTableTitle">管理者脚本:</td>-->
  128. <!--<td class="editTableValue">-->
  129. <!--&lt;!&ndash; <textarea type="text" jsondata="reviewerScriptIdList" value="text{$.reviewerScriptIdList}" class="editTableInput"></textarea> &ndash;&gt;-->
  130. <!--<div class="MWFScript" name="manageScriptList"></div>-->
  131. <!--</td>-->
  132. <!--</tr>-->
  133. </table>
  134. <hr />
  135. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  136. <tr>
  137. <td class="editTableTitle">阅读者:</td>
  138. <td class="editTableValue">
  139. <div class="MWFPersonIdentity" name="reviewIdentityList"></div>
  140. </td>
  141. </tr>
  142. <!--<tr>-->
  143. <!--<td class="editTableTitle">阅读部门:</td>-->
  144. <!--<td class="editTableValue">-->
  145. <!--<div class="MWFPersonDepartment" name="reviewDepartmentList"></div>-->
  146. <!--</td>-->
  147. <!--</tr>-->
  148. <!--<tr>-->
  149. <!--<td class="editTableTitle">阅读人脚本:</td>-->
  150. <!--<td class="editTableValue">-->
  151. <!--&lt;!&ndash; <textarea type="text" jsondata="reviewerScriptIdList" value="text{$.reviewerScriptIdList}" class="editTableInput"></textarea> &ndash;&gt;-->
  152. <!--<div class="MWFScript" name="reviewScriptList"></div>-->
  153. <!--</td>-->
  154. <!--</tr>-->
  155. </table>
  156. </div>
  157. <div title="编号" class="MWFTab">
  158. <div class="MWFSerial" name="serialTexture"></div>
  159. <div style="border-top: 1px solid #CCC">
  160. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  161. <tr>
  162. <td class="editTableTitle">编号活动:</td>
  163. <td class="editTableValue">
  164. <div class="MWFSericalActivitySelect" name="serialActivity"></div></td>
  165. </tr>
  166. <tr>
  167. <td class="editTableTitle">触发条件:</td>
  168. <td class="editTableValue">
  169. <input class="editTableRadio" name="serialPhase" text{($.serialPhase!="inquire")?'checked':''} type="radio" value="arrive"/>到达
  170. <input class="editTableRadio" name="serialPhase" text{($.serialPhase=="inquire")?'checked':''} type="radio" value="inquire"/>提交
  171. </td>
  172. </tr>
  173. </table>
  174. </div>
  175. </div>
  176. <div title="时效" class="MWFTab">
  177. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  178. <tr>
  179. <td class="editTableTitle">流程超时:</td>
  180. <td class="editTableValue">
  181. <input class="editTableRadio" onclick="if (this.checked){ $('text{$.id}expireTypeAppointEditArea').setStyle('display', 'none'); $('text{$.id}expireTypeScriptEditArea').setStyle('display', 'none');}" name="expireType" text{($.expireType!='appoint' && $.expireType!='script')?'checked':''} type="radio" value="never"/>不超时
  182. <input class="editTableRadio" onclick="if (this.checked){ $('text{$.id}expireTypeAppointEditArea').setStyle('display', 'block'); $('text{$.id}expireTypeScriptEditArea').setStyle('display', 'none');}" name="expireType" text{($.expireType=='appoint')?'checked':''} type="radio" value="appoint"/>指定时长
  183. <input class="editTableRadio" onclick="if (this.checked){ $('text{$.id}expireTypeAppointEditArea').setStyle('display', 'none'); $('text{$.id}expireTypeScriptEditArea').setStyle('display', 'block');}" name="expireType" text{($.expireType=='script')?'checked':''} type="radio" value="script"/>通过脚本设定
  184. </td>
  185. </tr>
  186. </table>
  187. <div id="text{$.id}expireTypeAppointEditArea" style="display: text{($.expireType=='appoint')?'block':'none'}; margin-top: 5px;">
  188. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  189. <tr>
  190. <td class="editTableTitle">超时时长:</td>
  191. <td class="editTableValue">
  192. <input type="text" name="expireDay" value="text{ $.expireDay === 0 ? 0 : ($.expireDay || 7) }" style="width: 80px; border: 1px solid #cccccc"/> 天 <br/>
  193. <input type="text" name="expireHour" value="text{($.expireHour) ? $.expireHour : 0}" style="width: 80px; border: 1px solid #cccccc"/> 小时
  194. </td>
  195. </tr>
  196. <tr>
  197. <td class="editTableTitle"></td>
  198. <td class="editTableValue">
  199. <input class="editTableRadio" name="expireWorkTime" text{!($.expireWorkTime===false)?'checked':''} type="radio" value="true"/>仅计算工作时间
  200. <input class="editTableRadio" name="expireWorkTime" text{($.expireWorkTime===false)?'checked':''} type="radio" value="false"/>包含非指定时长
  201. </td>
  202. </tr>
  203. </table>
  204. </div>
  205. <div id="text{$.id}expireTypeScriptEditArea" style="display: text{($.expireType=='script')?'block':'none'}; margin-top: 5px;">
  206. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  207. <tr>
  208. <td class="editTableTitle">脚本:</td>
  209. <td class="editTableValue">
  210. <div class="MWFScript" name="expireScript"></div>
  211. </td>
  212. </tr>
  213. </table>
  214. <div class="MWFScriptText" name="expireScriptText"></div><hr />
  215. <div style="margin: 5px;">脚本返回JSON数据: <br>
  216. {<br>
  217. <span>&nbsp;&nbsp;&nbsp;&nbsp;</span>hour: 3 <span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>//几小时后超时<br>
  218. <span>&nbsp;&nbsp;&nbsp;&nbsp;</span>workHour: 5 <span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>//几个工作小时后超时<br>
  219. <span>&nbsp;&nbsp;&nbsp;&nbsp;</span>date: '2016-08-01' <span>&nbsp;&nbsp;</span>//到达指定时间后超时<br>
  220. }<br>
  221. 三个值任选其一</div>
  222. </div>
  223. </div>
  224. <div title="映射" class="MWFTab">
  225. <div class="MWFProjection" name="projection">
  226. <div style="margin: 0px; height: 20px; padding: 5px; background-color: #F6F6F6; line-height: 20px; text-align: center">映射业务数据</div>
  227. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  228. <tr>
  229. <td class="editTableTitle">数据名称:</td>
  230. <td class="editTableValue"><input type="text" value="" class="editTableInput"/></td>
  231. </tr>
  232. <tr>
  233. <td class="editTableTitle">数据路径:</td>
  234. <td class="editTableValue"><input type="text" value="" class="editTableInput"/></td>
  235. </tr>
  236. <tr>
  237. <td class="editTableTitle">数据类型:</td>
  238. <td class="editTableValue"><select>
  239. <option value='string'>string</option>
  240. <option value='long'>long</option>
  241. <option value='double'>double</option>
  242. <option value='boolean'>boolean</option>
  243. <option value='date'>date</option>
  244. <option value='time'>time</option>
  245. <option value='datetime'>datetime</option>
  246. </select></td>
  247. </tr>
  248. </table>
  249. <div></div>
  250. <div></div>
  251. </div>
  252. <hr/>
  253. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  254. <tr>
  255. <td class="editTableValue">
  256. <b>每次流转刷新映射数据:</b>
  257. <input class="editTableRadio" name="projectionFully" text{($.projectionFully!==false)?'checked':''} type="radio" value="true"/>是
  258. <input class="editTableRadio" name="projectionFully" text{($.projectionFully===false)?'checked':''} type="radio" value="false"/>否
  259. </td>
  260. </tr>
  261. </table>
  262. </div>
  263. <div title="事件" class="MWFTab">
  264. <div onclick="var node = this.getNext(); if (node.getStyle('display')=='none'){node.setStyle('display', 'block');}else{node.setStyle('display', 'none');}" style="cursor: pointer; line-height: 28px; height: 30px; font-weight: bold; background-color: #EEEEEE;">
  265. <div style="height: 30px; width: 30px; float: left; background: url(../x_component_process_ProcessDesigner/$Process/event.png) no-repeat center center;"></div>
  266. <div style="margin-left: 20px; padding: 0px 5px;">流程启动前</div>
  267. </div>
  268. <div style="display: none; overflow:hidden; border-left: 10px solid #EEEEEE; border-bottom: 10px solid #EEEEEE;">
  269. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  270. <tr>
  271. <td class="editTableTitle">流程启动前:</td>
  272. <td class="editTableValue">
  273. <div class="MWFScript" name="beforeBeginScript"></div>
  274. </td>
  275. </tr>
  276. </table>
  277. <div class="MWFScriptText" name="beforeBeginScriptText"></div><hr />
  278. </div>
  279. <div style="line-height: 20px; height: 46px; border-bottom: 1px solid #CCCCCC; border-top: 1px solid #CCCCCC; background-color:#f6f6f6;">
  280. <div style="height: 46px; width: 30px; float: left; background: url(../x_component_process_ProcessDesigner/$Process/down.png) no-repeat center center;"></div>
  281. <div style="margin-left: 20px; padding: 3px 10px; text-align: center; color: #666666;">启动流程生成work实例</div>
  282. </div>
  283. <div onclick="var node = this.getNext(); if (node.getStyle('display')=='none'){node.setStyle('display', 'block');}else{node.setStyle('display', 'none');}" style="cursor: pointer; line-height: 28px; height: 30px; font-weight: bold; background-color: #EEEEEE;">
  284. <div style="height: 30px; width: 30px; float: left; background: url(../x_component_process_ProcessDesigner/$Process/event.png) no-repeat center center;"></div>
  285. <div style="margin-left: 20px; padding: 0px 5px;">流程启动后</div>
  286. </div>
  287. <div style="display: none; overflow:hidden; border-left: 10px solid #EEEEEE; border-bottom: 10px solid #EEEEEE;">
  288. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  289. <tr>
  290. <td class="editTableTitle">流程启动后:</td>
  291. <td class="editTableValue">
  292. <div class="MWFScript" name="afterBeginScript"></div>
  293. </td>
  294. </tr>
  295. </table>
  296. <div class="MWFScriptText" name="afterBeginScriptText"></div><hr />
  297. </div>
  298. <div style="line-height: 20px; height: 26px; border-bottom: 1px solid #CCCCCC; border-top: 1px solid #CCCCCC">
  299. <div style="height: 26px; background: url(../x_component_process_ProcessDesigner/$Process/down16.png) no-repeat center center;"></div>
  300. </div>
  301. <div onclick="var node = this.getNext(); if (node.getStyle('display')=='none'){node.setStyle('display', 'block');}else{node.setStyle('display', 'none');}" style="cursor: pointer; line-height: 28px; height: 30px; font-weight: bold; background-color: #EEEEEE;">
  302. <div style="height: 30px; width: 30px; float: left; background: url(../x_component_process_ProcessDesigner/$Process/event.png) no-repeat center center;"></div>
  303. <div style="margin-left: 20px; padding: 0px 5px;">活动到达前</div>
  304. </div>
  305. <div style="display: none; overflow:hidden; border-left: 10px solid #EEEEEE; border-bottom: 10px solid #EEEEEE;">
  306. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  307. <tr>
  308. <td class="editTableTitle">活动到达前:</td>
  309. <td class="editTableValue">
  310. <div class="MWFScript" name="beforeArriveScript"></div>
  311. </td>
  312. </tr>
  313. </table>
  314. <div class="MWFScriptText" name="beforeArriveScriptText"></div><hr />
  315. </div>
  316. <div style="line-height: 20px; height: 46px; border-bottom: 1px solid #CCCCCC; border-top: 1px solid #CCCCCC; background-color:#f6f6f6;">
  317. <div style="height: 46px; width: 30px; float: left; background: url(../x_component_process_ProcessDesigner/$Process/down.png) no-repeat center center;"></div>
  318. <div style="margin-left: 20px; padding: 3px 10px; text-align: center; color: #666666;">执行Arrive操作<br/>活动属性设置</div>
  319. </div>
  320. <div onclick="var node = this.getNext(); if (node.getStyle('display')=='none'){node.setStyle('display', 'block');}else{node.setStyle('display', 'none');}" style="cursor: pointer; line-height: 28px; height: 30px; font-weight: bold; background-color: #EEEEEE;">
  321. <div style="height: 30px; width: 30px; float: left; background: url(../x_component_process_ProcessDesigner/$Process/event.png) no-repeat center center;"></div>
  322. <div style="margin-left: 20px; padding: 0px 5px;">活动到达后</div>
  323. </div>
  324. <div style="display: none; overflow:hidden; border-left: 10px solid #EEEEEE; border-bottom: 10px solid #EEEEEE;">
  325. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  326. <tr>
  327. <td class="editTableTitle">活动到达后:</td>
  328. <td class="editTableValue">
  329. <div class="MWFScript" name="afterArriveScript"></div>
  330. </td>
  331. </tr>
  332. </table>
  333. <div class="MWFScriptText" name="afterArriveScriptText"></div><hr />
  334. </div>
  335. <div style="line-height: 20px; height: 26px; border-bottom: 1px solid #CCCCCC; border-top: 1px solid #CCCCCC">
  336. <div style="height: 26px; background: url(../x_component_process_ProcessDesigner/$Process/down16.png) no-repeat center center;"></div>
  337. </div>
  338. <div onclick="var node = this.getNext(); if (node.getStyle('display')=='none'){node.setStyle('display', 'block');}else{node.setStyle('display', 'none');}" style="cursor: pointer; line-height: 28px; height: 30px; font-weight: bold; background-color: #EEEEEE;">
  339. <div style="height: 30px; width: 30px; float: left; background: url(../x_component_process_ProcessDesigner/$Process/event.png) no-repeat center center;"></div>
  340. <div style="margin-left: 20px; padding: 0px 5px;">活动执行前</div>
  341. </div>
  342. <div style="display: none; overflow:hidden; border-left: 10px solid #EEEEEE; border-bottom: 10px solid #EEEEEE;">
  343. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  344. <tr>
  345. <td class="editTableTitle">活动执行前:</td>
  346. <td class="editTableValue">
  347. <div class="MWFScript" name="beforeExecuteScript"></div>
  348. </td>
  349. </tr>
  350. </table>
  351. <div class="MWFScriptText" name="beforeExecuteScriptText"></div><hr />
  352. </div>
  353. <div style="line-height: 20px; height: 46px; border-bottom: 1px solid #CCCCCC; border-top: 1px solid #CCCCCC; background-color:#f6f6f6;">
  354. <div style="height: 46px; width: 30px; float: left; background: url(../x_component_process_ProcessDesigner/$Process/down.png) no-repeat center center;"></div>
  355. <div style="margin-left: 20px; padding: 3px 10px; text-align: center; color: #666666;">执行Execute操作<br/>执行自动活动任务</div>
  356. </div>
  357. <div onclick="var node = this.getNext(); if (node.getStyle('display')=='none'){node.setStyle('display', 'block');}else{node.setStyle('display', 'none');}" style="cursor: pointer; line-height: 28px; height: 30px; font-weight: bold; background-color: #EEEEEE;">
  358. <div style="height: 30px; width: 30px; float: left; background: url(../x_component_process_ProcessDesigner/$Process/event.png) no-repeat center center;"></div>
  359. <div style="margin-left: 20px; padding: 0px 5px;">活动执行后</div>
  360. </div>
  361. <div style="display: none; overflow:hidden; border-left: 10px solid #EEEEEE; border-bottom: 10px solid #EEEEEE;">
  362. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  363. <tr>
  364. <td class="editTableTitle">活动执行后:</td>
  365. <td class="editTableValue">
  366. <div class="MWFScript" name="afterExecuteScript"></div>
  367. </td>
  368. </tr>
  369. </table>
  370. <div class="MWFScriptText" name="afterExecuteScriptText"></div><hr />
  371. </div>
  372. <div style="line-height: 20px; height: 26px; border-bottom: 1px solid #CCCCCC; border-top: 1px solid #CCCCCC">
  373. <div style="height: 26px; background: url(../x_component_process_ProcessDesigner/$Process/down16.png) no-repeat center center;"></div>
  374. </div>
  375. <div onclick="var node = this.getNext(); if (node.getStyle('display')=='none'){node.setStyle('display', 'block');}else{node.setStyle('display', 'none');}" style="cursor: pointer; line-height: 28px; height: 30px; font-weight: bold; background-color: #EEEEEE;">
  376. <div style="height: 30px; width: 30px; float: left; background: url(../x_component_process_ProcessDesigner/$Process/event.png) no-repeat center center;"></div>
  377. <div style="margin-left: 20px; padding: 0px 5px;">路由查询前</div>
  378. </div>
  379. <div style="display: none; overflow:hidden; border-left: 10px solid #EEEEEE; border-bottom: 10px solid #EEEEEE;">
  380. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  381. <tr>
  382. <td class="editTableTitle">路由查询前:</td>
  383. <td class="editTableValue">
  384. <div class="MWFScript" name="beforeInquireScript"></div>
  385. </td>
  386. </tr>
  387. </table>
  388. <div class="MWFScriptText" name="beforeInquireScriptText"></div><hr />
  389. </div>
  390. <div style="line-height: 20px; height: 46px; border-bottom: 1px solid #CCCCCC; border-top: 1px solid #CCCCCC; background-color:#f6f6f6;">
  391. <div style="height: 46px; width: 30px; float: left; background: url(../x_component_process_ProcessDesigner/$Process/down.png) no-repeat center center;"></div>
  392. <div style="margin-left: 20px; padding: 3px 10px; text-align: center; color: #666666;">执行Inquire操作<br/>查询到达下一个活动的路由</div>
  393. </div>
  394. <div onclick="var node = this.getNext(); if (node.getStyle('display')=='none'){node.setStyle('display', 'block');}else{node.setStyle('display', 'none');}" style="cursor: pointer; line-height: 28px; height: 30px; font-weight: bold; background-color: #EEEEEE;">
  395. <div style="height: 30px; width: 30px; float: left; background: url(../x_component_process_ProcessDesigner/$Process/event.png) no-repeat center center;"></div>
  396. <div style="margin-left: 20px; padding: 0px 5px;">路由查询后</div>
  397. </div>
  398. <div style="display: none; overflow:hidden; border-left: 10px solid #EEEEEE; border-bottom: 10px solid #EEEEEE;">
  399. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  400. <tr>
  401. <td class="editTableTitle">路由查询后:</td>
  402. <td class="editTableValue">
  403. <div class="MWFScript" name="afterInquireScript"></div>
  404. </td>
  405. </tr>
  406. </table>
  407. <div class="MWFScriptText" name="afterInquireScriptText"></div><hr />
  408. </div>
  409. <div style="line-height: 20px; height: 26px; border-bottom: 1px solid #CCCCCC; border-top: 1px solid #CCCCCC">
  410. <div style="height: 26px; background: url(../x_component_process_ProcessDesigner/$Process/down16.png) no-repeat center center;"></div>
  411. </div>
  412. <div onclick="var node = this.getNext(); if (node.getStyle('display')=='none'){node.setStyle('display', 'block');}else{node.setStyle('display', 'none');}" style="cursor: pointer; line-height: 28px; height: 30px; font-weight: bold; background-color: #EEEEEE;">
  413. <div style="height: 30px; width: 30px; float: left; background: url(../x_component_process_ProcessDesigner/$Process/event.png) no-repeat center center;"></div>
  414. <div style="margin-left: 20px; padding: 0px 5px;">流程结束前</div>
  415. </div>
  416. <div style="display: none; overflow:hidden; border-left: 10px solid #EEEEEE; border-bottom: 10px solid #EEEEEE;">
  417. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  418. <tr>
  419. <td class="editTableTitle">流程结束前:</td>
  420. <td class="editTableValue">
  421. <div class="MWFScript" name="beforeEndScript"></div>
  422. </td>
  423. </tr>
  424. </table>
  425. <div class="MWFScriptText" name="beforeEndScriptText"></div><hr />
  426. </div>
  427. <div style="line-height: 20px; height: 46px; border-bottom: 1px solid #CCCCCC; border-top: 1px solid #CCCCCC; background-color:#f6f6f6;">
  428. <div style="height: 46px; width: 30px; float: left; background: url(../x_component_process_ProcessDesigner/$Process/down.png) no-repeat center center;"></div>
  429. <div style="margin-left: 20px; padding: 3px 10px; text-align: center; color: #666666;">结束流程<br/>生成workCompleted</div>
  430. </div>
  431. <div onclick="var node = this.getNext(); if (node.getStyle('display')=='none'){node.setStyle('display', 'block');}else{node.setStyle('display', 'none');}" style="cursor: pointer; line-height: 28px; height: 30px; font-weight: bold; background-color: #EEEEEE;">
  432. <div style="height: 30px; width: 30px; float: left; background: url(../x_component_process_ProcessDesigner/$Process/event.png) no-repeat center center;"></div>
  433. <div style="margin-left: 20px; padding: 0px 5px;">流程结束后</div>
  434. </div>
  435. <div style="display: none; overflow:hidden; border-left: 10px solid #EEEEEE; border-bottom: 10px solid #EEEEEE;">
  436. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  437. <tr>
  438. <td class="editTableTitle">流程结束后:</td>
  439. <td class="editTableValue">
  440. <div class="MWFScript" name="afterEndScript"></div>
  441. </td>
  442. </tr>
  443. </table>
  444. <div class="MWFScriptText" name="afterEndScriptText"></div><hr />
  445. </div>
  446. <!-- <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">-->
  447. <!-- <tr>-->
  448. <!-- <td class="editTableTitle">流程启动前:</td>-->
  449. <!-- <td class="editTableValue">-->
  450. <!-- <div class="MWFScript" name="beforeBeginScript"></div>-->
  451. <!-- </td>-->
  452. <!-- </tr>-->
  453. <!-- </table>-->
  454. <!-- <div class="MWFScriptText" name="beforeBeginScriptText"></div><hr />-->
  455. <!-- <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">-->
  456. <!-- <tr>-->
  457. <!-- <td class="editTableTitle">流程启动后:</td>-->
  458. <!-- <td class="editTableValue">-->
  459. <!-- <div class="MWFScript" name="afterBeginScript"></div>-->
  460. <!-- </td>-->
  461. <!-- </tr>-->
  462. <!-- </table>-->
  463. <!-- <div class="MWFScriptText" name="afterBeginScriptText"></div><hr />-->
  464. <!-- <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">-->
  465. <!-- <tr>-->
  466. <!-- <td class="editTableTitle">流程结束前:</td>-->
  467. <!-- <td class="editTableValue">-->
  468. <!-- <div class="MWFScript" name="beforeEndScript"></div>-->
  469. <!-- </td>-->
  470. <!-- </tr>-->
  471. <!-- </table>-->
  472. <!-- <div class="MWFScriptText" name="beforeEndScriptText"></div><hr />-->
  473. <!-- <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">-->
  474. <!-- <tr>-->
  475. <!-- <td class="editTableTitle">流程结束后:</td>-->
  476. <!-- <td class="editTableValue">-->
  477. <!-- <div class="MWFScript" name="afterEndScript"></div>-->
  478. <!-- </td>-->
  479. <!-- </tr>-->
  480. <!-- </table>-->
  481. <!-- <div class="MWFScriptText" name="afterEndScriptText"></div><hr />-->
  482. </div>
  483. </div>