manual.html 49 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689
  1. <div>
  2. <div title="{{$.lp.base}}" class="MWFTab">
  3. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  4. <tr>
  5. <td class="editTableTitle">{{$.lp.id}}:</td>
  6. <td class="editTableValue">text{$.id}</td>
  7. </tr>
  8. <tr>
  9. <td class="editTableTitle">{{$.lp.createTime}}:</td>
  10. <td class="editTableValue">text{$.createTime}</td>
  11. </tr>
  12. <tr>
  13. <td class="editTableTitle">{{$.lp.name}}:</td>
  14. <td class="editTableValue"><input type="text" name="name" value="text{$.name}" class="editTableInput"/></td>
  15. </tr>
  16. <tr>
  17. <td class="editTableTitle">{{$.lp.alias}}:</td>
  18. <td class="editTableValue"><input type="text" name="alias" value="text{$.alias}" class="editTableInput"/></td>
  19. </tr>
  20. <tr>
  21. <td class="editTableTitle">{{$.lp.description}}:</td>
  22. <td class="editTableValue"><textarea name="description" class="editTableTextarea">text{$.description}</textarea></td>
  23. </tr>
  24. <tr>
  25. <td class="editTableTitle">{{$.lp.processType}}:</td>
  26. <td class="editTableValue">
  27. <input title="{{$.lp.oneProcess}}" class="editTableRadio" name="manualMode" text{($.manualMode=='single')?'checked':''} type="radio" value="single"/>{{$.lp.single}}
  28. <input title="{{$.lp.sameTime}}" class="editTableRadio" name="manualMode" text{($.manualMode=='parallel')?'checked':''} type="radio" value="parallel"/>{{$.lp.parallel}}
  29. <input title="{{$.lp.queueInfo}}" class="editTableRadio" name="manualMode" text{($.manualMode=='queue')?'checked':''} type="radio" value="queue"/>串行
  30. <input title="{{$.lp.grabInfo}}" class="editTableRadio" name="manualMode" text{($.manualMode=='grab')?'checked':''} type="radio" value="grab"/>{{$.lp.grab}}
  31. </td>
  32. </tr>
  33. <tr>
  34. <td class="editTableTitle">{{$.lp.form}}:</td>
  35. <td class="editTableValue">
  36. <div class="MWFFormSelect" name="form"></div></td>
  37. </tr>
  38. </table>
  39. <div data-o2-advanced="yes">
  40. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  41. <tr>
  42. <td class="editTableValue" colspan="2"><b>{{$.lp.readForUntreated}}: </b>
  43. <input class="editTableRadio" name="manualUncompletedTaskToRead" text{($.manualUncompletedTaskToRead)?'checked':''} type="radio" value="true"/>{{$.lp.yes}}
  44. <input class="editTableRadio" name="manualUncompletedTaskToRead" text{(!$.manualUncompletedTaskToRead)?'checked':''} type="radio" value="false"/>{{$.lp.no}}</td>
  45. </tr>
  46. <tr>
  47. <td class="editTableValue" colspan="2"><b>{{$.lp.mergeTask}}: </b>
  48. <input class="editTableRadio" name="manualMergeSameJobActivity" text{($.manualMergeSameJobActivity)?'checked':''} type="radio" value="true"/>{{$.lp.yes}}
  49. <input class="editTableRadio" name="manualMergeSameJobActivity" text{(!$.manualMergeSameJobActivity)?'checked':''} type="radio" value="false"/>{{$.lp.no}}
  50. <div style="color: #999999">{{$.lp.mergeTaskInfo}}</div>
  51. </td>
  52. </tr>
  53. <tr>
  54. <td class="editTableValue" colspan="2"><b>{{$.lp.mergeTaskProcess}}: </b>
  55. <input class="editTableRadio" name="processingTaskOnceUnderSamePerson" text{($.processingTaskOnceUnderSamePerson!==false)?'checked':''} type="radio" value="true"/>{{$.lp.yes}}
  56. <input class="editTableRadio" name="processingTaskOnceUnderSamePerson" text{($.processingTaskOnceUnderSamePerson===false)?'checked':''} type="radio" value="false"/>{{$.lp.no}}
  57. <div style="color: #999999">{{$.lp.mergeTaskProcessInfo}}</div>
  58. </td>
  59. </tr>
  60. <tr>
  61. <td class="editTableTitle">{{$.lp.activityGroup}}:</td>
  62. <td class="editTableValue"><input type="text" name="group" value="text{$.group}" class="editTableInput"/></td>
  63. </tr>
  64. <tr>
  65. <td class="editTableTitle">{{$.lp.opinionGroup}}:</td>
  66. <td class="editTableValue"><input type="text" name="opinionGroup" value="text{$.opinionGroup}" class="editTableInput"/></td>
  67. </tr>
  68. </table>
  69. <div class="MWFMaplist" name="customData" title="{{$.lp.customData}}"></div>
  70. </div>
  71. </div>
  72. <div title="{{$.lp.person}}" class="MWFTab">
  73. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  74. <tr>
  75. <td class="editTableHeadTitle" colspan="2">{{$.lp.taskPerson}}</td>
  76. </tr>
  77. <tr>
  78. <td class="editTableTitle">{{$.lp.identity}}:</td>
  79. <td class="editTableValue">
  80. <div class="MWFPersonIdentity" name="taskIdentityList"></div>
  81. </td>
  82. </tr>
  83. <tr>
  84. <td class="editTableTitle">{{$.lp.unit}}:</td>
  85. <td class="editTableValue">
  86. <div class="MWFPersonUnit" name="taskUnitList"></div>
  87. </td>
  88. </tr>
  89. <tr>
  90. <td class="editTableTitle">{{$.lp.group}}:</td>
  91. <td class="editTableValue">
  92. <div class="MWFPersonGroup" name="taskGroupList"></div>
  93. </td>
  94. </tr>
  95. <tr>
  96. <td class="editTableTitle">{{$.lp.duty}}:</td>
  97. <td class="editTableValue">
  98. <div class="MWFDutySelector" name="taskDuty"></div>
  99. </td>
  100. </tr>
  101. <tr>
  102. <td class="editTableTitle">{{$.lp.processData}}:</td>
  103. <td class="editTableValue">
  104. <div class="MWFFormFieldPerson" name="taskDataPathList"></div>
  105. </td>
  106. </tr>
  107. <tr>
  108. <td class="editTableTitle">{{$.lp.participant}}:</td>
  109. <td class="editTableValue">
  110. <label><input class="editTableRadio" name="taskParticipant.type" text{(!$.taskParticipant || !$.taskParticipant.type)?'checked':''} type="radio" value=""
  111. onclick="if (this.checked){ var nodes = this.getParent('td').getChildren('div'); nodes.setStyle('display', 'none'); }"/>{{$.lp.participant_none}}</label>
  112. <label><input class="editTableRadio" name="taskParticipant.type" text{($.taskParticipant && $.taskParticipant.type=='creator')?'checked':''} type="radio" value="creator"
  113. onclick="if (this.checked){ var nodes = this.getParent('td').getChildren('div'); nodes.setStyle('display', 'none'); nodes[0].setStyle('display', 'block'); }"/>{{$.lp.participant_creator}}</label>
  114. <label><input class="editTableRadio" name="taskParticipant.type" text{($.taskParticipant && $.taskParticipant.type=='maintenance')?'checked':''} type="radio" value="maintenance"
  115. onclick="if (this.checked){ var nodes = this.getParent('td').getChildren('div'); nodes.setStyle('display', 'none'); nodes[1].setStyle('display', 'block'); }"/>{{$.lp.participant_maintenance}}</label>
  116. <label><input class="editTableRadio" name="taskParticipant.type" text{($.taskParticipant && $.taskParticipant.type=='activity')?'checked':''} type="radio" value="activity"
  117. onclick="if (this.checked){ var nodes = this.getParent('td').getChildren('div'); nodes.setStyle('display', 'none'); nodes[2].setStyle('display', 'block'); }"/>{{$.lp.participant_activity}}</label>
  118. <div style="color: #999999; font-size: 12px; display: text{($.taskParticipant && $.taskParticipant.type=='creator')?'block':'none'}">{{$.lp.participant_creator_info}}</div>
  119. <div style="color: #999999; font-size: 12px; display: text{($.taskParticipant && $.taskParticipant.type=='maintenance')?'block':'none'}">{{$.lp.participant_maintenance_info}}</div>
  120. <div style="display: text{($.taskParticipant && $.taskParticipant.type=='activity')?'block':'none'}">
  121. <div style="color: #999999; font-size: 12px;">{{$.lp.participant_activity_info}}</div>
  122. <div class="MWFActivityParticipant"></div>
  123. </div>
  124. </td>
  125. </tr>
  126. <tr>
  127. <td class="editTableTitle">{{$.lp.script}}:</td>
  128. <td class="editTableValue">
  129. <div class="MWFScript" name="taskScript"></div>
  130. </td>
  131. </tr>
  132. </table>
  133. <div class="MWFScriptText" name="taskScriptText"></div>
  134. <hr />
  135. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  136. <tr>
  137. <td class="editTableHeadTitle" colspan="2">{{$.lp.reader}}</td>
  138. </tr>
  139. <tr>
  140. <td class="editTableTitle">{{$.lp.readerId}}:</td>
  141. <td class="editTableValue">
  142. <div class="MWFPersonIdentity" name="readIdentityList" type="identity"></div>
  143. </td>
  144. </tr>
  145. <tr>
  146. <td class="editTableTitle">{{$.lp.unit}}:</td>
  147. <td class="editTableValue">
  148. <div class="MWFPersonUnit" name="readUnitList"></div>
  149. </td>
  150. </tr>
  151. <tr>
  152. <td class="editTableTitle">{{$.lp.readGroup}}:</td>
  153. <td class="editTableValue">
  154. <div class="MWFPersonGroup" name="readGroupList"></div>
  155. </td>
  156. </tr>
  157. <tr>
  158. <td class="editTableTitle">{{$.lp.duty}}:</td>
  159. <td class="editTableValue">
  160. <div class="MWFDutySelector" name="readDuty"></div>
  161. </td>
  162. </tr>
  163. <tr>
  164. <td class="editTableTitle">{{$.lp.processData}}:</td>
  165. <td class="editTableValue">
  166. <div class="MWFFormFieldPerson" name="readDataPathList"></div>
  167. </td>
  168. </tr>
  169. <tr>
  170. <td class="editTableTitle">{{$.lp.script}}:</td>
  171. <td class="editTableValue">
  172. <div class="MWFScript" name="readScript"></div>
  173. </td>
  174. </tr>
  175. </table>
  176. <div class="MWFScriptText" name="readScriptText"></div>
  177. <hr />
  178. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  179. <tr>
  180. <td class="editTableHeadTitle" colspan="2">{{$.lp.reviewer}}</td>
  181. </tr>
  182. <tr>
  183. <td class="editTableTitle">{{$.lp.reviewerId}}:</td>
  184. <td class="editTableValue">
  185. <div class="MWFPersonIdentity" name="reviewIdentityList" type="identity"></div>
  186. </td>
  187. </tr>
  188. <tr>
  189. <td class="editTableTitle">{{$.lp.unit}}:</td>
  190. <td class="editTableValue">
  191. <div class="MWFPersonUnit" name="reviewUnitList"></div>
  192. </td>
  193. </tr>
  194. <tr>
  195. <td class="editTableTitle">{{$.lp.reviewGroup}}:</td>
  196. <td class="editTableValue">
  197. <div class="MWFPersonGroup" name="reviewGroupList"></div>
  198. </td>
  199. </tr>
  200. <tr>
  201. <td class="editTableTitle">{{$.lp.duty}}:</td>
  202. <td class="editTableValue">
  203. <div class="MWFDutySelector" name="reviewDuty"></div>
  204. </td>
  205. </tr>
  206. <tr>
  207. <td class="editTableTitle">{{$.lp.processData}}:</td>
  208. <td class="editTableValue">
  209. <div class="MWFFormFieldPerson" name="reviewDataPathList"></div>
  210. </td>
  211. </tr>
  212. <tr>
  213. <td class="editTableTitle">{{$.lp.script}}:</td>
  214. <td class="editTableValue">
  215. <div class="MWFScript" name="reviewScript"></div>
  216. </td>
  217. </tr>
  218. </table>
  219. <div class="MWFScriptText" name="reviewScriptText"></div>
  220. </div>
  221. <div title="{{$.lp.aging}}" class="MWFTab" data-o2-advanced="yes">
  222. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  223. <tr>
  224. <td class="editTableTitle">{{$.lp.processTimeLimit}}:</td>
  225. <td class="editTableValue">
  226. <input class="editTableRadio" onclick="if (this.checked){ $('text{$.id}taskExpireTypeAppointEditArea').setStyle('display', 'none'); $('text{$.id}taskExpireTypeScriptEditArea').setStyle('display', 'none');}" name="taskExpireType" text{($.taskExpireType!='appoint' && $.taskExpireType!='script')?'checked':''} type="radio" value="never"/>{{$.lp.noLimit}}
  227. <input class="editTableRadio" onclick="if (this.checked){ $('text{$.id}taskExpireTypeAppointEditArea').setStyle('display', 'block'); $('text{$.id}taskExpireTypeScriptEditArea').setStyle('display', 'none');}" name="taskExpireType" text{($.taskExpireType=='appoint')?'checked':''} type="radio" value="appoint"/>{{$.lp.specifyDuration}}
  228. <input class="editTableRadio" onclick="if (this.checked){ $('text{$.id}taskExpireTypeAppointEditArea').setStyle('display', 'none'); $('text{$.id}taskExpireTypeScriptEditArea').setStyle('display', 'block');}" name="taskExpireType" text{($.taskExpireType=='script')?'checked':''} type="radio" value="script"/>{{$.lp.byScript}}
  229. </td>
  230. </tr>
  231. </table>
  232. <div id="text{$.id}taskExpireTypeAppointEditArea" style="display: text{($.taskExpireType=='appoint')?'block':'none'}; margin-top: 5px;">
  233. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  234. <tr>
  235. <td class="editTableTitle">{{$.lp.timeLimit}}:</td>
  236. <td class="editTableValue">
  237. <input type="text" name="taskExpireDay" value="text{$.taskExpireDay}" style="width: 80px; border: 1px solid #cccccc"/> {{$.lp.days}} <br/>
  238. <input type="text" name="taskExpireHour" value="text{($.taskExpireHour) ? $.taskExpireHour : 0}" style="width: 80px; border: 1px solid #cccccc"/> {{$.lp.hours}}
  239. </td>
  240. </tr>
  241. <tr>
  242. <td class="editTableTitle"></td>
  243. <td class="editTableValue">
  244. <input class="editTableRadio" name="taskExpireWorkTime" text{!($.taskExpireWorkTime===false)?'checked':''} type="radio" value="true"/>{{$.lp.workTimeOnly}}
  245. <input class="editTableRadio" name="taskExpireWorkTime" text{($.taskExpireWorkTime===false)?'checked':''} type="radio" value="false"/>{{$.lp.includeNoworkTime}}
  246. </td>
  247. </tr>
  248. </table>
  249. </div>
  250. <div id="text{$.id}taskExpireTypeScriptEditArea" style="display: text{($.taskExpireType=='script')?'block':'none'}; margin-top: 5px;">
  251. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  252. <tr>
  253. <td class="editTableTitle">{{$.lp.script}}:</td>
  254. <td class="editTableValue">
  255. <div class="MWFScript" name="taskExpireScript"></div>
  256. </td>
  257. </tr>
  258. </table>
  259. <div class="MWFScriptText" name="taskExpireScriptText"></div><hr />
  260. <div style="padding: 5px">
  261. <div style="margin: 5px;">{{$.lp.returnJson}}: <br>
  262. return {hour: 3} <span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>//{{$.lp.hourTimeout}}}<br>
  263. return {workHour: 5} <span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>//{{$.lp.hourWorkTimeout}}}<br>
  264. return {date: '2016-08-01 08:11:02'} <span>&nbsp;&nbsp;</span>//{{$.lp.specifyTimeout}}}<br>
  265. {{$.lp.oneOfThree}}</div>
  266. <div><a href="../api/server.module_expire.html#server.module_expire" target="_blank">{{$.lp.apiDoc}}</a></div>
  267. </div>
  268. <!-- <div style="margin: 5px;">{{$.lp.specifyTimeoutTime}}: <br>this.expire.setDate([Date or String] date)</div>-->
  269. <!-- <div style="margin: 5px;">{{$.lp.setTimeoutAfterHours}}: <br>this.expire.setHour([Int] hour)</div>-->
  270. <!-- <div style="margin: 5px;">{{$.lp.setTimeoutAfterWorkHours}}:<br>this.expire.setWorkHour([Int] hour)</div>-->
  271. </div>
  272. </div>
  273. <div title="{{$.lp.activityPower}}" class="MWFTab">
  274. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  275. <!--<tr>
  276. <td class="editTableValue" colspan="2"><b>允许填写意见:</b><input class="editTableRadio" name="allowOpinion" text{($.allowOpinion)?'checked':''} type="radio" value="true"/>是
  277. <input class="editTableRadio" name="allowOpinion" text{($.allowOpinion)?'checked':''} type="radio" value="false"/>否</td>
  278. </tr>-->
  279. <tr>
  280. <td class="editTableValue" colspan="2"><b>{{$.lp.allowDelete}}:</b><input class="editTableRadio" name="allowDeleteWork" text{($.allowDeleteWork)?'checked':''} type="radio" value="true"/>{{$.lp.yes}}
  281. <input class="editTableRadio" name="allowDeleteWork" text{(!$.allowDeleteWork)?'checked':''} type="radio" value="false"/>{{$.lp.no}}</td>
  282. </tr>
  283. <tr>
  284. <td class="editTableValue" colspan="2"><b>{{$.lp.allowTerminate}}:</b><input class="editTableRadio" name="allowTerminate" text{($.allowTerminate)?'checked':''} type="radio" value="true"/>{{$.lp.yes}}
  285. <input class="editTableRadio" name="allowTerminate" text{(!$.allowTerminate)?'checked':''} type="radio" value="false"/>{{$.lp.no}}</td>
  286. </tr>
  287. <!--<tr>-->
  288. <!--<td class="editTableValue" colspan="2"><b>允许添加附件:</b><input class="editTableRadio" name="canAddAttachment" text{($.canAddAttachment)?'checked':''} type="radio" value="true"/>是-->
  289. <!--<input class="editTableRadio" name="canAddAttachment" text{(!$.canAddAttachment)?'checked':''} type="radio" value="false"/>否</td>-->
  290. <!--</tr>-->
  291. <!--<tr>-->
  292. <!--<td class="editTableValue" colspan="2"><b>允许删除附件:</b><input class="editTableRadio" name="canDeleteAttachment" text{($.canDeleteAttachment)?'checked':''} type="radio" value="true"/>是-->
  293. <!--<input class="editTableRadio" name="canDeleteAttachment" text{(!$.canDeleteAttachment)?'checked':''} type="radio" value="false"/>否</td>-->
  294. <!--</tr>-->
  295. </table>
  296. <hr />
  297. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  298. <tr>
  299. <td class="editTableValue" colspan="2"><b>{{$.lp.allowReroute}}: </b><input class="editTableRadio" name="allowReroute" text{($.allowReroute)?'checked':''} type="radio" value="true"/>{{$.lp.yes}}
  300. <input class="editTableRadio" name="allowReroute" text{(!$.allowReroute)?'checked':''} type="radio" value="false"/>{{$.lp.no}}</td>
  301. </tr>
  302. <tr>
  303. <td class="editTableValue" colspan="2"><b>{{$.lp.allowRerouteTo}}: </b><input class="editTableRadio" name="allowRerouteTo" text{($.allowRerouteTo)?'checked':''} type="radio" value="true"/>{{$.lp.yes}}
  304. <input class="editTeditTableRadioableInput" class="editTableInput" name="allowRerouteTo" text{(!$.allowRerouteTo)?'checked':''} type="radio" value="false"/>{{$.lp.no}}</td>
  305. </tr>
  306. </table>
  307. <hr />
  308. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  309. <tr>
  310. <td class="editTableValue" colspan="2"><b>{{$.lp.allowAddTask}}:</b>
  311. <input class="editTableRadio" name="allowAddTask" text{($.allowAddTask!==false)?'checked':''} type="radio" value="true"/>{{$.lp.yes}}
  312. <input class="editTableRadio" name="allowAddTask" text{($.allowAddTask===false)?'checked':''} type="radio" value="false"/>{{$.lp.no}}
  313. </td>
  314. </tr>
  315. </table>
  316. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  317. <tr>
  318. <td class="editTableValue" colspan="2"><b>{{$.lp.allowReset}}:</b><input class="editTableRadio" name="allowReset" text{($.allowReset)?'checked':''} type="radio" value="true"/>{{$.lp.yes}}
  319. <input class="editTableRadio" name="allowReset" text{(!$.allowReset)?'checked':''} type="radio" value="false"/>{{$.lp.no}}</td>
  320. </tr>
  321. <tr>
  322. <td class="editTableValue" colspan="2">
  323. <table wdith="100%">
  324. <tr>
  325. <td><b>{{$.lp.resetCount}}:</b></td>
  326. <td><input type="text" name="resetCount" value="text{$.resetCount}" style="width: 120px" class="editTableInput"/></td></td>
  327. </tr>
  328. </table>
  329. </tr>
  330. <tr>
  331. <td class="editTableValue" colspan="2"><b>{{$.lp.resetRange}}:</b>
  332. <input class="editTableRadio" name="resetRange" text{($.resetRange=='all')?'checked':''} type="radio" value="all"
  333. onclick="if (this.checked){ $('text{$.id}resetRangeScriptTextTr').setStyle('display', 'none'); }"/>{{$.lp.everyOne}}
  334. <input class="editTableRadio" name="resetRange" text{($.resetRange=='unit')?'checked':''} type="radio" value="unit"
  335. onclick="if (this.checked){ $('text{$.id}resetRangeScriptTextTr').setStyle('display', 'none'); }"/>{{$.lp.directUnit}}
  336. <input class="editTableRadio" name="resetRange" text{($.resetRange=='topUnit')?'checked':''} type="radio" value="topUnit"
  337. onclick="if (this.checked){ $('text{$.id}resetRangeScriptTextTr').setStyle('display', 'none'); }"/>{{$.lp.topUnit}}
  338. <input class="editTableRadio" name="resetRange" text{($.resetRange=='script')?'checked':''} type="radio" value="script"
  339. onclick="if (this.checked){ $('text{$.id}resetRangeScriptTextTr').setStyle('display', ''); }"/>{{$.lp.script}}
  340. </td>
  341. </tr>
  342. <tr id="text{$.id}resetRangeScriptTextTr" style="display: text{($.resetRange!=='script')?'none':''};">
  343. <td colspan="2">
  344. <div class="MWFScriptText" name="resetRangeScriptText" data-type="web"></div>
  345. </td>
  346. </tr>
  347. </table>
  348. <hr />
  349. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  350. <!--<tr>-->
  351. <!--<td class="editTableValue" colspan="2"><b>是否允许挂起:</b><input class="editTableRadio" name="canHang" text{($.canHang)?'checked':''} type="radio" value="true"/>{{$.lp.yes}}-->
  352. <!--<input class="editTableRadio" name="canHang" text{(!$.canHang)?'checked':''} type="radio" value="false"/>{{$.lp.no}}</td>-->
  353. <!--</tr>-->
  354. <tr>
  355. <td class="editTableValue" colspan="2"><b>{{$.lp.allowRetract}}: </b><input class="editTableRadio" name="allowRetract" text{($.allowRetract)?'checked':''} type="radio" value="true"/>{{$.lp.yes}}
  356. <input class="editTableRadio" name="allowRetract" text{(!$.allowRetract)?'checked':''} type="radio" value="false"/>{{$.lp.no}}</td>
  357. </tr>
  358. <!--<tr>-->
  359. <!--<td class="editTableValue" colspan="2"><b>是否允许退回:</b><input class="editTableRadio" name="canGoBack" text{($.canGoBack)?'checked':''} type="radio" value="true"/>{{$.lp.yes}}-->
  360. <!--<input class="editTableRadio" name="canGoBack" text{(!$.canGoBack)?'checked':''} type="radio" value="false"/>{{$.lp.no}}</td>-->
  361. <!--</tr>-->
  362. </table>
  363. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  364. <tr>
  365. <td class="editTableValue" colspan="2"><b>{{$.lp.allowRapid}}: </b><input class="editTableRadio" name="allowRapid" text{($.allowRapid)?'checked':''} type="radio" value="true"/>{{$.lp.yes}}
  366. <input class="editTableRadio" name="allowRapid" text{(!$.allowRapid)?'checked':''} type="radio" value="false"/>{{$.lp.no}}</td>
  367. </tr>
  368. </table>
  369. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  370. <tr>
  371. <td class="editTableValue" colspan="2"><b>{{$.lp.allowAddSplit}}:</b><input class="editTableRadio" name="allowAddSplit" text{($.allowAddSplit)?'checked':''} type="radio" value="true"/>{{$.lp.yes}}
  372. <input class="editTableRadio" name="allowAddSplit" text{(!$.allowAddSplit)?'checked':''} type="radio" value="false"/>{{$.lp.no}}</td>
  373. </tr>
  374. </table>
  375. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  376. <tr>
  377. <td class="editTableValue" colspan="2"><b>{{$.lp.allowRollback}}:</b><input class="editTableRadio" name="allowRollback" text{($.allowRollback)?'checked':''} type="radio" value="true"/>{{$.lp.yes}}
  378. <input class="editTableRadio" name="allowRollback" text{(!$.allowRollback)?'checked':''} type="radio" value="false"/>{{$.lp.no}}</td>
  379. </tr>
  380. </table>
  381. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  382. <tr>
  383. <td class="editTableValue" colspan="2"><b>{{$.lp.allowPress}}: </b><input class="editTableRadio" name="allowPress" text{($.allowPress)?'checked':''} type="radio" value="true"/>{{$.lp.yes}}
  384. <input class="editTableRadio" name="allowPress" text{(!$.allowPress)?'checked':''} type="radio" value="false"/>{{$.lp.no}}</td>
  385. </tr>
  386. </table>
  387. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  388. <tr>
  389. <td class="editTableValue" colspan="2"><b>{{$.lp.allowPause}}: </b><input class="editTableRadio" name="allowPause" text{($.allowPause)?'checked':''} type="radio" value="true"/>{{$.lp.yes}}
  390. <input class="editTableRadio" name="allowPause" text{(!$.allowPause)?'checked':''} type="radio" value="false"/>{{$.lp.no}}</td>
  391. </tr>
  392. </table>
  393. <hr />
  394. <div style="height: 28px;line-height: 28px; background-color: #f1f1f1; font-weight: bold;text-align: center; border-bottom: 1px solid #cccccc;">{{$.lp.backConfig}}</div>
  395. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  396. <tr>
  397. <td class="editTableTitle">{{$.lp.allowBack}}: </td>
  398. <td class="editTableValue">
  399. <label><input onclick="if (this.checked){ $('text{$.id}gobackConfigArea').setStyle('display', 'block'); }" class="editTableRadio" name="allowGoBack" text{($.allowGoBack)?'checked':''} type="radio" value="true"/>{{$.lp.yes}}</label>
  400. <label><input onclick="if (this.checked){ $('text{$.id}gobackConfigArea').setStyle('display', 'none'); }" class="editTableRadio" name="allowGoBack" text{(!$.allowGoBack)?'checked':''} type="radio" value="false"/>{{$.lp.no}}</label>
  401. </td>
  402. </tr>
  403. </table>
  404. <div id="text{$.id}gobackConfigArea" style="display: text{($.allowGoBack)?'block':'none'};">
  405. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  406. <tr>
  407. <td class="editTableValue" colspan="2"><b>{{$.lp.multiTaskEnable}}: </b>
  408. <label><input class="editTableRadio" name="goBackConfig.multiTaskEnable" text{($.goBackConfig && $.goBackConfig.multiTaskEnable)?'checked':''} type="radio" value="true"/>{{$.lp.yes}}</label>
  409. <label><input class="editTableRadio" name="goBackConfig.multiTaskEnable" text{(!$.goBackConfig || !$.goBackConfig.multiTaskEnable)?'checked':''} type="radio" value="false"/>{{$.lp.no}}</label>
  410. <!-- <div style="color: #999999">{{$.lp.multiTaskEnableInfo}}</div>-->
  411. </td>
  412. </tr>
  413. <tr>
  414. <td class="editTableTitle">{{$.lp.backWay}}: </td>
  415. <td class="editTableValue">
  416. <label><input class="editTableRadio" name="goBackConfig.way" text{(!$.goBackConfig || $.goBackConfig.way!=='jump')?'checked':''} type="radio" value="step"/>{{$.lp.backWayStep}}</label><br>
  417. <label><input class="editTableRadio" name="goBackConfig.way" text{($.goBackConfig && $.goBackConfig.way=='jump')?'checked':''} type="radio" value="jump"/>{{$.lp.backWayJump}}</label><br>
  418. <label><input class="editTableRadio" name="goBackConfig.way" text{($.goBackConfig && $.goBackConfig.way=='custom')?'checked':''} type="radio" value="custom"/>{{$.lp.backWayCustom}}</label>
  419. </td>
  420. </tr>
  421. <tr>
  422. <td class="editTableTitle">{{$.lp.backType}}: </td>
  423. <td class="editTableValue">
  424. <label><input onclick="if (this.checked){ $('text{$.id}gobackConfigActivityArea').setStyle('display', 'none'); }" class="editTableRadio" name="goBackConfig.type" text{(!$.goBackConfig || !$.goBackConfig.type || $.goBackConfig.type==='prev')?'checked':''} type="radio" value="prev"/><b>{{$.lp.backPrev}}</b></label>
  425. <div style="color: #999999;">{{$.lp.backPrevInfo}}</div>
  426. <label><input onclick="if (this.checked){ $('text{$.id}gobackConfigActivityArea').setStyle('display', 'none'); }" class="editTableRadio" name="goBackConfig.type" text{($.goBackConfig && $.goBackConfig.type==='any')?'checked':''} type="radio" value="any"/><b>{{$.lp.backAny}}</b></label>
  427. <div style="color: #999999;}">{{$.lp.backAnyInfo}}</div>
  428. <label><input onclick="if (this.checked){ $('text{$.id}gobackConfigActivityArea').setStyle('display', 'block'); }" class="editTableRadio" name="goBackConfig.type" text{($.goBackConfig && $.goBackConfig.type==='define')?'checked':''} type="radio" value="define"/><b>{{$.lp.backDefine}}</b></label>
  429. <div style="color: #999999;">{{$.lp.backDefineInfo}}</div>
  430. </td>
  431. </tr>
  432. </table>
  433. </div>
  434. <div id="text{$.id}gobackConfigActivityArea" style="display: text{($.goBackConfig && $.goBackConfig.type==='define')?'block':'none'};">
  435. <div style="height: 24px; line-height: 24px; background-color: #f1f1f1; font-weight: bold;text-align: center; border-bottom: 1px solid #cccccc; border-top: 1px solid #cccccc;">{{$.lp.backActivitySelectTitle}}</div>
  436. <div style="color: #999999; padding: 5px; border-bottom: 1px solid #cccccc;">{{$.lp.backActivitySelectInfo}}</div>
  437. <div class="gobackActivityConfig"></div>
  438. </div>
  439. <!-- <div id="text{$.id}gobackDefineConfigArea" style="display: text{($.goBackConfig && $.goBackConfig.type==='define')?'block':'none'};">-->
  440. <!-- <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">-->
  441. <!-- <tr>-->
  442. <!-- <td class="editTableValue" colspan="2"><b>{{$.lp.multiTaskEnable}}: </b>-->
  443. <!-- <label><input class="editTableRadio" name="multiTaskEnable" text{($.multiTaskEnable)?'checked':''} type="radio" value="true"/>{{$.lp.yes}}</label>-->
  444. <!-- <label><input class="editTableRadio" name="multiTaskEnable" text{(!$.multiTaskEnable)?'checked':''} type="radio" value="false"/>{{$.lp.no}}</label>-->
  445. <!-- <div style="color: #999999">{{$.lp.multiTaskEnableInfo}}</div>-->
  446. <!-- </td>-->
  447. <!-- </tr>-->
  448. <!-- <tr>-->
  449. <!-- <td class="editTableTitle">{{$.lp.backType}}: </td>-->
  450. <!-- <td class="editTableValue">-->
  451. <!-- <label><input class="editTableRadio" name="goBackConfig.type" text{(!$.goBackConfig || $.goBackConfig.type==='prev')?'checked':''} type="radio" value="prev"/><b>{{$.lp.backPrev}}</b></label>-->
  452. <!-- <div style="color: #999999;">{{$.lp.backPrevInfo}}</div>-->
  453. <!-- <label><input class="editTableRadio" name="goBackConfig.type" text{($.goBackConfig && $.goBackConfig.type==='any')?'checked':''} type="radio" value="any"/><b>{{$.lp.backAny}}</b></label>-->
  454. <!-- <div style="color: #999999;}">{{$.lp.backAnyInfo}}</div>-->
  455. <!-- <label><input class="editTableRadio" name="goBackConfig.type" text{($.goBackConfig && $.goBackConfig.type==='define')?'checked':''} type="radio" value="define"/><b>{{$.lp.backDefine}}</b></label>-->
  456. <!-- <div style="color: #999999;">{{$.lp.backDefineInfo}}</div>-->
  457. <!-- </td>-->
  458. <!-- </tr>-->
  459. <!-- </table>-->
  460. <!-- </div>-->
  461. </div>
  462. <div title="{{$.lp.event}}" class="MWFTab" data-o2-advanced="yes">
  463. <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;">
  464. <div style="height: 30px; width: 30px; float: left; background: url(../x_component_process_ProcessDesigner/$Process/text{($.beforeArriveScript || $.beforeArriveScriptText) ? 'event_code' : 'event'}.png) no-repeat center center;"></div>
  465. <div style="margin-left: 20px; padding: 0px 5px;">{{$.lp.beforeWorkArrive}}</div>
  466. </div>
  467. <div style="display: none; overflow:hidden; border-left: 10px solid #EEEEEE; border-bottom: 10px solid #EEEEEE;">
  468. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  469. <tr>
  470. <td class="editTableTitle">{{$.lp.beforeWorkArrive}}:</td>
  471. <td class="editTableValue">
  472. <div class="MWFScript" name="beforeArriveScript"></div>
  473. </td>
  474. </tr>
  475. </table>
  476. <div class="MWFScriptText" name="beforeArriveScriptText"></div><hr />
  477. </div>
  478. <div style="line-height: 20px; height: 46px; border-bottom: 1px solid #CCCCCC; border-top: 1px solid #CCCCCC; background-color:#f6f6f6;">
  479. <div style="height: 46px; width: 30px; float: left; background: url(../x_component_process_ProcessDesigner/$Process/down.png) no-repeat center center;"></div>
  480. <div style="margin-left: 20px; padding: 3px 10px; text-align: center; color: #666666;">{{$.lp.eventInfo6}}</div>
  481. </div>
  482. <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;">
  483. <div style="height: 30px; width: 30px; float: left; background: url(../x_component_process_ProcessDesigner/$Process/text{($.afterArriveScript || $.afterArriveScriptText) ? 'event_code' : 'event'}.png) no-repeat center center;"></div>
  484. <div style="margin-left: 20px; padding: 0px 5px;">{{$.lp.afterArriveActivity}}</div>
  485. </div>
  486. <div style="display: none; overflow:hidden; border-left: 10px solid #EEEEEE; border-bottom: 10px solid #EEEEEE;">
  487. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  488. <tr>
  489. <td class="editTableTitle">{{$.lp.afterArriveActivity}}:</td>
  490. <td class="editTableValue">
  491. <div class="MWFScript" name="afterArriveScript"></div>
  492. </td>
  493. </tr>
  494. </table>
  495. <div class="MWFScriptText" name="afterArriveScriptText"></div><hr />
  496. </div>
  497. <div style="line-height: 20px; min-height: 26px; border-bottom: 1px solid #CCCCCC; border-top: 1px solid #CCCCCC">
  498. <div style="min-height: 26px; background: url(../x_component_process_ProcessDesigner/$Process/down16.png) no-repeat center center;"></div>
  499. </div>
  500. <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;">
  501. <div style="height: 30px; width: 30px; float: left; background: url(../x_component_process_ProcessDesigner/$Process/text{($.beforeExecuteScript || $.beforeExecuteScriptText) ? 'event_code' : 'event'}.png) no-repeat center center;"></div>
  502. <div style="margin-left: 20px; padding: 0px 5px;">{{$.lp.beforeExecute}}</div>
  503. </div>
  504. <div style="display: none; overflow:hidden; border-left: 10px solid #EEEEEE; border-bottom: 10px solid #EEEEEE;">
  505. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  506. <tr>
  507. <td class="editTableTitle">{{$.lp.beforeExecute}}:</td>
  508. <td class="editTableValue">
  509. <div class="MWFScript" name="beforeExecuteScript"></div>
  510. </td>
  511. </tr>
  512. </table>
  513. <div class="MWFScriptText" name="beforeExecuteScriptText"></div><hr />
  514. </div>
  515. <div style="border-left: 20px solid #eeeeee;">
  516. <div style="line-height: 20px; height: 46px; border-bottom: 1px solid #CCCCCC; border-top: 1px solid #CCCCCC; border-left: 1px solid #CCCCCC; background-color:#f6f6f6;">
  517. <div style="height: 46px; width: 30px; float: left; background: url(../x_component_process_ProcessDesigner/$Process/down.png) no-repeat center center;"></div>
  518. <div style="margin-left: 20px; padding: 3px 10px; text-align: center; color: #666666;">{{$.lp.eventInfo7}}</div>
  519. </div>
  520. <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;">
  521. <div style="height: 30px; width: 30px; float: left; background: url(../x_component_process_ProcessDesigner/$Process/text{($.manualStayScript || $.manualStayScriptText) ? 'event_code' : 'event'}.png) no-repeat center center;"></div>
  522. <div style="margin-left: 20px; padding: 0px 5px;">{{$.lp.manualStay}}</div>
  523. </div>
  524. <div style="display: none; overflow:hidden; border-left: 10px solid #EEEEEE; border-bottom: 10px solid #EEEEEE;">
  525. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  526. <tr>
  527. <td class="editTableTitle">{{$.lp.manualStay}}:</td>
  528. <td class="editTableValue">
  529. <div class="MWFScript" name="manualStayScript"></div>
  530. </td>
  531. </tr>
  532. </table>
  533. <div class="MWFScriptText" name="manualStayScriptText"></div><hr />
  534. </div>
  535. <div style="line-height: 20px; min-height: 26px; border-bottom: 1px solid #CCCCCC; border-top: 1px solid #CCCCCC; border-left: 1px solid #CCCCCC; background-color:#f6f6f6;">
  536. <div style="min-height: 26px; width: 30px; float: left; background: url(../x_component_process_ProcessDesigner/$Process/down16.png) no-repeat center center;"></div>
  537. <div style="margin-left: 20px; padding: 3px 10px; text-align: center; color: #666666;">{{$.lp.eventInfo8}}</div>
  538. </div>
  539. <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;">
  540. <div style="height: 30px; width: 30px; float: left; background: url(../x_component_process_ProcessDesigner/$Process/text{($.manualBeforeTaskScript || $.manualBeforeTaskScriptText) ? 'event_code' : 'event'}.png) no-repeat center center;"></div>
  541. <div style="margin-left: 20px; padding: 0px 5px;">{{$.lp.manualBeforeTask}}</div>
  542. </div>
  543. <div style="display: none; overflow:hidden; border-left: 10px solid #EEEEEE; border-bottom: 10px solid #EEEEEE;">
  544. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  545. <tr>
  546. <td class="editTableTitle">{{$.lp.manualBeforeTask}}:</td>
  547. <td class="editTableValue">
  548. <div class="MWFScript" name="manualBeforeTaskScript"></div>
  549. </td>
  550. </tr>
  551. </table>
  552. <div class="MWFScriptText" name="manualBeforeTaskScriptText"></div><hr />
  553. </div>
  554. <div style="line-height: 20px; min-height: 26px; border-bottom: 1px solid #CCCCCC; border-top: 1px solid #CCCCCC; border-left: 1px solid #CCCCCC; background-color:#f6f6f6;">
  555. <div style="min-height: 26px; width: 30px; float: left; background: url(../x_component_process_ProcessDesigner/$Process/down16.png) no-repeat center center;"></div>
  556. <div style="margin-left: 20px; padding: 3px 10px; text-align: center; color: #666666;">{{$.lp.eventInfo9}}</div>
  557. </div>
  558. <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;">
  559. <div style="height: 30px; width: 30px; float: left; background: url(../x_component_process_ProcessDesigner/$Process/text{($.manualAfterTaskScript || $.manualAfterTaskScriptText) ? 'event_code' : 'event'}.png) no-repeat center center;"></div>
  560. <div style="margin-left: 20px; padding: 0px 5px;">{{$.lp.manualAfterTask}}</div>
  561. </div>
  562. <div style="display: none; overflow:hidden; border-left: 10px solid #EEEEEE; border-bottom: 10px solid #EEEEEE;">
  563. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  564. <tr>
  565. <td class="editTableTitle">{{$.lp.manualAfterTask}}:</td>
  566. <td class="editTableValue">
  567. <div class="MWFScript" name="manualAfterTaskScript"></div>
  568. </td>
  569. </tr>
  570. </table>
  571. <div class="MWFScriptText" name="manualAfterTaskScriptText"></div><hr />
  572. </div>
  573. <div style="line-height: 20px; min-height: 26px; border-bottom: 1px solid #CCCCCC; border-top: 1px solid #CCCCCC; border-left: 1px solid #CCCCCC; background-color:#f6f6f6;">
  574. <div style="min-height: 26px; width: 30px; float: left; background: url(../x_component_process_ProcessDesigner/$Process/down16.png) no-repeat center center;"></div>
  575. <div style="margin-left: 20px; padding: 3px 10px; text-align: center; color: #666666;">{{$.lp.eventInfo10}}</div>
  576. </div>
  577. </div>
  578. <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;">
  579. <div style="height: 30px; width: 30px; float: left; background: url(../x_component_process_ProcessDesigner/$Process/text{($.afterExecuteScript || $.afterExecuteScriptText) ? 'event_code' : 'event'}.png) no-repeat center center;"></div>
  580. <div style="margin-left: 20px; padding: 0px 5px;">{{$.lp.afterExecute}}</div>
  581. </div>
  582. <div style="display: none; overflow:hidden; border-left: 10px solid #EEEEEE; border-bottom: 10px solid #EEEEEE;">
  583. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  584. <tr>
  585. <td class="editTableTitle">{{$.lp.afterExecute}}:</td>
  586. <td class="editTableValue">
  587. <div class="MWFScript" name="afterExecuteScript"></div>
  588. </td>
  589. </tr>
  590. </table>
  591. <div class="MWFScriptText" name="afterExecuteScriptText"></div><hr />
  592. </div>
  593. <div style="line-height: 20px; min-height: 26px; border-bottom: 1px solid #CCCCCC; border-top: 1px solid #CCCCCC">
  594. <div style="min-height: 26px; background: url(../x_component_process_ProcessDesigner/$Process/down16.png) no-repeat center center;"></div>
  595. </div>
  596. <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;">
  597. <div style="height: 30px; width: 30px; float: left; background: url(../x_component_process_ProcessDesigner/$Process/text{($.beforeInquireScript || $.beforeInquireScriptText) ? 'event_code' : 'event'}.png) no-repeat center center;"></div>
  598. <div style="margin-left: 20px; padding: 0px 5px;">{{$.lp.beforeInquire}}</div>
  599. </div>
  600. <div style="display: none; overflow:hidden; border-left: 10px solid #EEEEEE; border-bottom: 10px solid #EEEEEE;">
  601. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  602. <tr>
  603. <td class="editTableTitle">{{$.lp.beforeInquire}}:</td>
  604. <td class="editTableValue">
  605. <div class="MWFScript" name="beforeInquireScript"></div>
  606. </td>
  607. </tr>
  608. </table>
  609. <div class="MWFScriptText" name="beforeInquireScriptText"></div><hr />
  610. </div>
  611. <div style="line-height: 20px; height: 46px; border-bottom: 1px solid #CCCCCC; border-top: 1px solid #CCCCCC; background-color:#f6f6f6;">
  612. <div style="height: 46px; width: 30px; float: left; background: url(../x_component_process_ProcessDesigner/$Process/down.png) no-repeat center center;"></div>
  613. <div style="margin-left: 20px; padding: 3px 10px; text-align: center; color: #666666;">{{$.lp.eventInfo4}}</div>
  614. </div>
  615. <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;">
  616. <div style="height: 30px; width: 30px; float: left; background: url(../x_component_process_ProcessDesigner/$Process/text{($.afterInquireScript || $.afterInquireScriptText) ? 'event_code' : 'event'}.png) no-repeat center center;"></div>
  617. <div style="margin-left: 20px; padding: 0px 5px;">{{$.lp.afterInquire}}</div>
  618. </div>
  619. <div style="display: none; overflow:hidden; border-left: 10px solid #EEEEEE; border-bottom: 10px solid #EEEEEE;">
  620. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  621. <tr>
  622. <td class="editTableTitle">{{$.lp.afterInquire}}:</td>
  623. <td class="editTableValue">
  624. <div class="MWFScript" name="afterInquireScript"></div>
  625. </td>
  626. </tr>
  627. </table>
  628. <div class="MWFScriptText" name="afterInquireScriptText"></div><hr />
  629. </div>
  630. <div style="line-height: 20px; height: 46px; border-bottom: 1px solid #CCCCCC; border-top: 1px solid #CCCCCC; background-color:#f6f6f6;">
  631. <div style="height: 46px; width: 30px; float: left; background: url(../x_component_process_ProcessDesigner/$Process/down.png) no-repeat center center;"></div>
  632. <div style="margin-left: 20px; padding: 3px 10px; text-align: center; color: #666666;">{{$.lp.eventInfo11}}</div>
  633. </div>
  634. <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;">
  635. <div style="height: 30px; width: 30px; float: left; background: url(../x_component_process_ProcessDesigner/$Process/text{($.afterInquireScript || $.afterInquireScriptText) ? 'event_code' : 'event'}.png) no-repeat center center;"></div>
  636. <div style="margin-left: 20px; padding: 0px 5px;">{{$.lp.afterProcess}}</div>
  637. </div>
  638. <div style="display: none; overflow:hidden; border-left: 10px solid #EEEEEE; border-bottom: 10px solid #EEEEEE;">
  639. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  640. <tr>
  641. <td style="width:80px; font-weight: bold; font-size: 12px; line-height: 24px">{{$.lp.afterProcess}}:</td>
  642. <td class="editTableValue">
  643. <div class="MWFScript" name="manualAfterProcessingScript"></div>
  644. </td>
  645. </tr>
  646. </table>
  647. <div class="MWFScriptText" name="manualAfterProcessingScriptText"></div><hr />
  648. </div>
  649. </div>
  650. </div>