PageEnvironment.js 55 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187
  1. MWF.xScript = MWF.xScript || {};
  2. MWF.xScript.PageEnvironment = function (ev) {
  3. var _data = ev.data;
  4. var _form = ev.form;
  5. var _forms = ev.forms;
  6. this.library = COMMON;
  7. //this.library.version = "4.0";
  8. //data
  9. var getJSONData = function (jData) {
  10. return new MWF.xScript.JSONData(jData, function (data, key, _self) {
  11. var p = { "getKey": function () { return key; }, "getParent": function () { return _self; } };
  12. while (p && !_forms[p.getKey()]) p = p.getParent();
  13. if (p) if (p.getKey()) if (_forms[p.getKey()]) _forms[p.getKey()].resetData();
  14. });
  15. };
  16. this.setData = function (data) {
  17. this.data = getJSONData(data);
  18. this.data.save = function (callback) {
  19. var formData = {
  20. "data": data,
  21. "sectionList": _form.getSectionList()
  22. };
  23. form.workAction.saveData(function (json) { if (callback) callback(); }.bind(this), null, work.id, jData);
  24. }
  25. };
  26. this.setData(_data);
  27. //workContext
  28. this.workContext = {
  29. "getTask": function () { return ev.task; },
  30. "getWork": function () { return ev.work || ev.workCompleted; },
  31. "getActivity": function () { return ev.activity; },
  32. "getTaskList": function () { return ev.taskList; },
  33. "getControl": function () { return ev.control; },
  34. "getWorkLogList": function () { return ev.workLogList; },
  35. "getAttachmentList": function () { return ev.attachmentList; },
  36. "getRouteList": function () { return (ev.task) ? ev.task.routeNameList : null; },
  37. "getInquiredRouteList": function () { return null; },
  38. "setTitle": function (title) {
  39. //if (!this.workAction){
  40. // MWF.require("MWF.xScript.Actions.WorkActions", null, false);
  41. // this.workAction = new MWF.xScript.Actions.WorkActions();
  42. //}
  43. //this.workAction.setTitle(ev.work.id, {"title": title});
  44. }
  45. };
  46. var _redefineWorkProperties = function (work) {
  47. if (work) {
  48. work.creatorPersonDn = work.creatorPerson;
  49. work.creatorUnitDn = work.creatorUnit;
  50. work.creatorUnitDnList = work.creatorUnitList;
  51. work.creatorIdentityDn = work.creatorIdentity;
  52. var o = {
  53. "creatorPerson": { "get": function () { return this.creatorPersonDn.substring(0, this.creatorPersonDn.indexOf("@")); } },
  54. "creatorUnit": { "get": function () { return this.creatorUnitDn.substring(0, this.creatorUnitDn.indexOf("@")); } },
  55. "creatorDepartment": { "get": function () { return this.creatorUnitDn.substring(0, this.creatorUnitDn.indexOf("@")); } },
  56. "creatorIdentity": { "get": function () { return this.creatorIdentityDn.substring(0, this.creatorIdentityDn.indexOf("@")); } },
  57. "creatorUnitList": {
  58. "get": function () {
  59. var v = [];
  60. this.creatorUnitDnList.each(function (dn) {
  61. v.push(dn.substring(0, dn.indexOf("@")))
  62. });
  63. return v;
  64. }
  65. },
  66. "creatorCompany": { "get": function () { return this.creatorUnitList[0] } }
  67. };
  68. MWF.defineProperties(work, o);
  69. }
  70. return work;
  71. };
  72. var _redefineTaskProperties = function (task) {
  73. if (task) {
  74. task.personDn = task.person;
  75. task.unitDn = task.unit;
  76. task.unitDnList = task.unitList;
  77. task.identityDn = task.identity;
  78. var o = {
  79. "person": { "get": function () { return this.personDn.substring(0, this.personDn.indexOf("@")); } },
  80. "unit": { "get": function () { return this.unitDn.substring(0, this.unitDn.indexOf("@")); } },
  81. "department": { "get": function () { return this.unitDn.substring(0, this.unitDn.indexOf("@")); } },
  82. "identity": { "get": function () { return this.identityDn.substring(0, this.identityDn.indexOf("@")); } },
  83. "unitList": {
  84. "get": function () {
  85. var v = [];
  86. this.unitDnList.each(function (dn) {
  87. v.push(dn.substring(0, dn.indexOf("@")))
  88. });
  89. return v;
  90. }
  91. },
  92. "company": { "get": function () { return this.unitList[0]; } }
  93. };
  94. MWF.defineProperties(task, o);
  95. }
  96. return task;
  97. };
  98. _redefineWorkProperties(this.workContext.getWork());
  99. _redefineTaskProperties(_redefineWorkProperties(this.workContext.getTask()));
  100. //dict
  101. this.Dict = MWF.xScript.createDict(_form.json.application);
  102. //org
  103. var orgActions = null;
  104. var getOrgActions = function () {
  105. if (!orgActions) {
  106. MWF.require("MWF.xScript.Actions.UnitActions", null, false);
  107. orgActions = new MWF.xScript.Actions.UnitActions();
  108. }
  109. };
  110. var getNameFlag = function (name) {
  111. var t = typeOf(name);
  112. if (t === "array") {
  113. var v = [];
  114. name.each(function (id) {
  115. v.push((typeOf(id) === "object") ? (id.distinguishedName || id.id || id.unique || id.name) : id);
  116. });
  117. return v;
  118. } else {
  119. return [(t === "object") ? (name.distinguishedName || name.id || name.unique || name.name) : name];
  120. }
  121. };
  122. this.org = {
  123. //群组***************
  124. //获取群组--返回群组的对象数组
  125. getGroup: function (name) {
  126. getOrgActions();
  127. var data = { "groupList": getNameFlag(name) };
  128. var v = null;
  129. orgActions.listGroup(data, function (json) { v = json.data; }, null, false);
  130. return (v && v.length === 1) ? v[0] : v;
  131. },
  132. //查询下级群组--返回群组的对象数组
  133. //nested 布尔 true嵌套下级;false直接下级;默认false;
  134. listSubGroup: function (name, nested) {
  135. getOrgActions();
  136. var data = { "groupList": getNameFlag(name) };
  137. var v = null;
  138. if (nested) {
  139. orgActions.listSubGroupNested(data, function (json) { v = json.data; }, null, false);
  140. } else {
  141. orgActions.listSubGroupDirect(data, function (json) { v = json.data; }, null, false);
  142. }
  143. return v;
  144. },
  145. //查询上级群组--返回群组的对象数组
  146. //nested 布尔 true嵌套上级;false直接上级;默认false;
  147. listSupGroup: function (name, nested) {
  148. getOrgActions();
  149. var data = { "groupList": getNameFlag(name) };
  150. var v = null;
  151. if (nested) {
  152. orgActions.listSupGroupNested(data, function (json) { v = json.data; }, null, false);
  153. } else {
  154. orgActions.listSupGroupDirect(data, function (json) { v = json.data; }, null, false);
  155. }
  156. return v;
  157. },
  158. //人员所在群组(嵌套)--返回群组的对象数组
  159. listGroupWithPerson: function (name) {
  160. getOrgActions();
  161. var data = { "personList": getNameFlag(name) };
  162. var v = null;
  163. orgActions.listGroupWithPerson(data, function (json) { v = json.data; }, null, false);
  164. return v;
  165. },
  166. //群组是否拥有角色--返回true, false
  167. groupHasRole: function (name, role) {
  168. getOrgActions();
  169. nameFlag = (typeOf(name) === "object") ? (name.distinguishedName || name.id || name.unique || name.name) : name;
  170. var data = { "group": nameFlag, "roleList": getNameFlag(role) };
  171. var v = false;
  172. orgActions.groupHasRole(data, function (json) { v = json.data.value; }, null, false);
  173. return v;
  174. },
  175. //角色***************
  176. //获取角色--返回角色的对象数组
  177. getRole: function (name) {
  178. getOrgActions();
  179. var data = { "roleList": getNameFlag(name) };
  180. var v = null;
  181. orgActions.listRole(data, function (json) { v = json.data; }, null, false);
  182. return (v && v.length === 1) ? v[0] : v;
  183. },
  184. //人员所有角色(嵌套)--返回角色的对象数组
  185. listRoleWithPerson: function (name) {
  186. getOrgActions();
  187. var data = { "personList": getNameFlag(name) };
  188. var v = null;
  189. orgActions.listRoleWithPerson(data, function (json) { v = json.data; }, null, false);
  190. return v;
  191. },
  192. //人员***************
  193. //人员是否拥有角色--返回true, false
  194. personHasRole: function (name, role) {
  195. getOrgActions();
  196. nameFlag = (typeOf(name) === "object") ? (name.distinguishedName || name.id || name.unique || name.name) : name;
  197. var data = { "person": nameFlag, "roleList": getNameFlag(role) };
  198. var v = false;
  199. orgActions.personHasRole(data, function (json) { v = json.data.value; }, null, false);
  200. return v;
  201. },
  202. //获取人员--返回人员的对象数组
  203. getPerson: function (name) {
  204. getOrgActions();
  205. var data = { "personList": getNameFlag(name) };
  206. var v = null;
  207. orgActions.listPerson(data, function (json) { v = json.data; }, null, false);
  208. return (v && v.length === 1) ? v[0] : v;
  209. },
  210. //查询下级人员--返回人员的对象数组
  211. //nested 布尔 true嵌套下级;false直接下级;默认false;
  212. listSubPerson: function (name, nested) {
  213. getOrgActions();
  214. var data = { "personList": getNameFlag(name) };
  215. var v = null;
  216. if (nested) {
  217. orgActions.listPersonSubNested(data, function (json) { v = json.data; }, null, false);
  218. } else {
  219. orgActions.listPersonSubDirect(data, function (json) { v = json.data; }, null, false);
  220. }
  221. return v;
  222. },
  223. //查询上级人员--返回人员的对象数组
  224. //nested 布尔 true嵌套上级;false直接上级;默认false;
  225. listSupPerson: function (name, nested) {
  226. getOrgActions();
  227. var data = { "personList": getNameFlag(name) };
  228. var v = null;
  229. if (nested) {
  230. orgActions.listPersonSupNested(data, function (json) { v = json.data; }, null, false);
  231. } else {
  232. orgActions.listPersonSupDirect(data, function (json) { v = json.data; }, null, false);
  233. }
  234. return v;
  235. },
  236. //获取群组的所有人员--返回人员的对象数组
  237. listPersonWithGroup: function (name) {
  238. getOrgActions();
  239. var data = { "groupList": getNameFlag(name) };
  240. var v = null;
  241. orgActions.listPersonWithGroup(data, function (json) { v = json.data; }, null, false);
  242. return v;
  243. },
  244. //获取角色的所有人员--返回人员的对象数组
  245. listPersonWithRole: function (name) {
  246. getOrgActions();
  247. var data = { "roleList": getNameFlag(name) };
  248. var v = null;
  249. orgActions.listPersonWithRole(data, function (json) { v = json.data; }, null, false);
  250. return v;
  251. },
  252. //获取身份的所有人员--返回人员的对象数组
  253. listPersonWithIdentity: function (name) {
  254. getOrgActions();
  255. var data = { "identityList": getNameFlag(name) };
  256. var v = null;
  257. orgActions.listPersonWithIdentity(data, function (json) { v = json.data; }, null, false);
  258. return v;
  259. },
  260. //查询组织成员的人员--返回人员的对象数组
  261. //nested 布尔 true嵌套的所有成员;false直接成员;默认false;
  262. listPersonWithUnit: function (name, nested) {
  263. getOrgActions();
  264. var data = { "unitList": getNameFlag(name) };
  265. var v = null;
  266. if (nested) {
  267. orgActions.listPersonWithUnitNested(data, function (json) { v = json.data; }, null, false);
  268. } else {
  269. orgActions.listPersonWithUnitDirect(data, function (json) { v = json.data; }, null, false);
  270. }
  271. return v;
  272. },
  273. //根据属性查询人员--返回人员的对象数组
  274. //name string 属性名
  275. //value string 属性值
  276. listPersonWithAttribute: function (name, value) {
  277. getOrgActions();
  278. var data = { "name": name, "attribute": value };
  279. var v = null;
  280. orgActions.listPersonWithAttribute(data, function (json) { v = json.data; }, null, false);
  281. return v;
  282. },
  283. //根据属性查询人员--返回人员的全称数组
  284. //name string 属性名
  285. //value string 属性值
  286. listPersonNameWithAttribute: function (name, value) {
  287. getOrgActions();
  288. var data = { "name": name, "attribute": value };
  289. var v = null;
  290. orgActions.listPersonWithAttributeValue(data, function (json) { v = json.data.personList; }, null, false);
  291. return v;
  292. },
  293. //人员属性************
  294. //添加人员属性值(在属性中添加values值,如果没有此属性,则创建一个)
  295. appendPersonAttribute: function (person, attr, values, success, failure) {
  296. getOrgActions();
  297. var personFlag = (typeOf(person) === "object") ? (person.distinguishedName || person.id || person.unique || person.name) : person;
  298. var data = { "attributeList": values, "name": attr, "person": personFlag };
  299. orgActions.appendPersonAttribute(data, function (json) {
  300. if (json.data.value) {
  301. if (success) success();
  302. } else {
  303. if (failure) failure(null, "", "append values failed");
  304. }
  305. }, function (xhr, text, error) {
  306. if (failure) failure(xhr, text, error);
  307. }, false);
  308. },
  309. //设置人员属性值(将属性值修改为values,如果没有此属性,则创建一个)
  310. setPersonAttribute: function (person, attr, values, success, failure) {
  311. getOrgActions();
  312. var personFlag = (typeOf(person) === "object") ? (person.distinguishedName || person.id || person.unique || person.name) : person;
  313. var data = { "attributeList": values, "name": attr, "person": personFlag };
  314. orgActions.setPersonAttribute(data, function (json) {
  315. if (json.data.value) {
  316. if (success) success();
  317. } else {
  318. if (failure) failure(null, "", "append values failed");
  319. }
  320. }, function (xhr, text, error) {
  321. if (failure) failure(xhr, text, error);
  322. }, false);
  323. },
  324. //获取人员属性值
  325. getPersonAttribute: function (person, attr) {
  326. getOrgActions();
  327. var personFlag = (typeOf(person) === "object") ? (person.distinguishedName || person.id || person.unique || person.name) : person;
  328. var data = { "name": attr, "person": personFlag };
  329. var v = null;
  330. orgActions.getPersonAttribute(data, function (json) { v = json.data.attributeList; }, null, false);
  331. return v;
  332. },
  333. //列出人员所有属性的名称
  334. listPersonAttributeName: function (name) {
  335. getOrgActions();
  336. var data = { "personList": getNameFlag(name) };
  337. var v = null;
  338. orgActions.listPersonAttributeName(data, function (json) { v = json.data.nameList; }, null, false);
  339. return v;
  340. },
  341. //列出人员的所有属性
  342. listPersonAllAttribute: function (name) {
  343. getOrgActions();
  344. var data = { "personList": getNameFlag(name) };
  345. var v = null;
  346. orgActions.listPersonAllAttribute(data, function (json) { v = json.data; }, null, false);
  347. return v;
  348. },
  349. //身份**********
  350. //获取身份
  351. getIdentity: function (name) {
  352. getOrgActions();
  353. var data = { "identityList": getNameFlag(name) };
  354. var v = null;
  355. orgActions.listIdentity(data, function (json) { v = json.data; }, null, false);
  356. return (v && v.length === 1) ? v[0] : v;
  357. },
  358. //列出人员的身份
  359. listIdentityWithPerson: function (name) {
  360. getOrgActions();
  361. var data = { "personList": getNameFlag(name) };
  362. var v = null;
  363. orgActions.listIdentityWithPerson(data, function (json) { v = json.data; }, null, false);
  364. return v;
  365. },
  366. //查询组织成员身份--返回身份的对象数组
  367. //nested 布尔 true嵌套的所有成员;false直接成员;默认false;
  368. listIdentityWithUnit: function (name, nested) {
  369. getOrgActions();
  370. var data = { "unitList": getNameFlag(name) };
  371. var v = null;
  372. if (nested) {
  373. orgActions.listIdentityWithUnitNested(data, function (json) { v = json.data; }, null, false);
  374. } else {
  375. orgActions.listIdentityWithUnitDirect(data, function (json) { v = json.data; }, null, false);
  376. }
  377. return v;
  378. },
  379. //组织**********
  380. //获取组织
  381. getUnit: function (name) {
  382. getOrgActions();
  383. var data = { "unitList": getNameFlag(name) };
  384. var v = null;
  385. orgActions.listUnit(data, function (json) { v = json.data; }, null, false);
  386. return (v && v.length === 1) ? v[0] : v;
  387. },
  388. //查询组织的下级--返回组织的对象数组
  389. //nested 布尔 true嵌套下级;false直接下级;默认false;
  390. listSubUnit: function (name, nested) {
  391. getOrgActions();
  392. var data = { "unitList": getNameFlag(name) };
  393. var v = null;
  394. if (nested) {
  395. orgActions.listUnitSubNested(data, function (json) { v = json.data; }, null, false);
  396. } else {
  397. orgActions.listUnitSubDirect(data, function (json) { v = json.data; }, null, false);
  398. }
  399. return v;
  400. },
  401. //查询组织的上级--返回组织的对象数组
  402. //nested 布尔 true嵌套上级;false直接上级;默认false;
  403. listSupUnit: function (name, nested) {
  404. getOrgActions();
  405. var data = { "unitList": getNameFlag(name) };
  406. var v = null;
  407. if (nested) {
  408. orgActions.listUnitSupNested(data, function (json) { v = json.data; }, null, false);
  409. } else {
  410. orgActions.listUnitSupDirect(data, function (json) { v = json.data; }, null, false);
  411. }
  412. return v;
  413. },
  414. //根据个人身份获取组织
  415. //flag 数字 表示获取第几层的组织
  416. // 字符串 表示获取指定类型的组织
  417. // 空 表示获取直接所在的组织
  418. getUnitByIdentity: function (name, flag) {
  419. getOrgActions();
  420. var getUnitMethod = "current";
  421. var v;
  422. if (flag) {
  423. if (typeOf(flag) === "string") getUnitMethod = "type";
  424. if (typeOf(flag) === "number") getUnitMethod = "level";
  425. }
  426. switch (getUnitMethod) {
  427. case "current":
  428. var data = { "identityList": getNameFlag(name) };
  429. orgActions.listUnitWithIdentity(data, function (json) { v = json.data; v = (v && v.length === 1) ? v[0] : v }, null, false);
  430. break;
  431. case "type":
  432. var data = { "identity": (typeOf(name) === "object") ? (name.distinguishedName || name.id || name.unique || name.name) : name, "type": flag };
  433. orgActions.getUnitWithIdentityAndType(data, function (json) { v = json.data; }, null, false);
  434. break;
  435. case "level":
  436. var data = { "identity": (typeOf(name) === "object") ? (name.distinguishedName || name.id || name.unique || name.name) : name, "level": flag };
  437. orgActions.getUnitWithIdentityAndLevel(data, function (json) { v = json.data; }, null, false);
  438. break;
  439. }
  440. return v;
  441. },
  442. //列出身份所在组织的所有上级组织
  443. listAllSupUnitWithIdentity: function (name) {
  444. getOrgActions();
  445. var data = { "identityList": getNameFlag(name) };
  446. var v = null;
  447. orgActions.listUnitSupNestedWithIdentity(data, function (json) { v = json.data; }, null, false);
  448. return v;
  449. },
  450. //获取人员所在的所有组织
  451. listUnitWithPerson: function (name) {
  452. getOrgActions();
  453. var data = { "personList": getNameFlag(name) };
  454. var v = null;
  455. orgActions.listUnitWithPerson(data, function (json) { v = json.data; }, null, false);
  456. return v;
  457. },
  458. //列出身份所在组织的所有上级组织
  459. listAllSupUnitWithPerson: function (name) {
  460. getOrgActions();
  461. var data = { "personList": getNameFlag(name) };
  462. var v = null;
  463. orgActions.listUnitSupNestedWithPerson(data, function (json) { v = json.data; }, null, false);
  464. return v;
  465. },
  466. //根据组织属性,获取所有符合的组织
  467. listUnitWithAttribute: function (name, attribute) {
  468. getOrgActions();
  469. var data = { "name": name, "attribute": attribute };
  470. var v = null;
  471. orgActions.listUnitWithAttribute(data, function (json) { v = json.data; }, null, false);
  472. return v;
  473. },
  474. //根据组织职务,获取所有符合的组织
  475. listUnitWithDuty: function (name, id) {
  476. getOrgActions();
  477. var data = { "name": "", "identity": (typeOf(id) === "object") ? (id.distinguishedName || id.id || id.unique || id.name) : id };
  478. var v = null;
  479. orgActions.listUnitWithDuty(data, function (json) { v = json.data; }, null, false);
  480. return v;
  481. },
  482. //列出顶层组织
  483. listTopUnit: function () {
  484. var action = MWF.Actions.get("x_organization_assemble_control");
  485. var v = null;
  486. action.listTopUnit(function (json) {
  487. v = json.data;
  488. }, null, false);
  489. return v;
  490. },
  491. //组织职务***********
  492. //获取指定的组织职务的身份
  493. getDuty: function (duty, id) {
  494. getOrgActions();
  495. var data = { "name": duty, "unit": (typeOf(id) === "object") ? (id.distinguishedName || id.id || id.unique || id.name) : id };
  496. var v = null;
  497. orgActions.getDuty(data, function (json) { v = json.data; }, null, false);
  498. return v;
  499. },
  500. //获取身份的所有职务名称
  501. listDutyNameWithIdentity: function (name) {
  502. getOrgActions();
  503. var data = { "identityList": getNameFlag(name) };
  504. var v = null;
  505. orgActions.listDutyNameWithIdentity(data, function (json) { v = json.data.nameList; }, null, false);
  506. return v;
  507. },
  508. //获取组织的所有职务名称
  509. listDutyNameWithUnit: function (name) {
  510. getOrgActions();
  511. var data = { "unitList": getNameFlag(name) };
  512. var v = null;
  513. orgActions.listDutyNameWithUnit(data, function (json) { v = json.data.nameList; }, null, false);
  514. return v;
  515. },
  516. //获取组织的所有职务
  517. listUnitAllDuty: function (name) {
  518. getOrgActions();
  519. var data = { "unitList": getNameFlag(name) };
  520. var v = null;
  521. orgActions.listUnitAllDuty(data, function (json) { v = json.data; }, null, false);
  522. return v;
  523. },
  524. //组织属性**************
  525. //添加组织属性值(在属性中添加values值,如果没有此属性,则创建一个)
  526. appendUnitAttribute: function (unit, attr, values, success, failure) {
  527. getOrgActions();
  528. var unitFlag = (typeOf(unit) === "object") ? (unit.distinguishedName || unit.id || unit.unique || unit.name) : unit;
  529. var data = { "attributeList": values, "name": attr, "unit": unitFlag };
  530. orgActions.appendUnitAttribute(data, function (json) {
  531. if (json.data.value) {
  532. if (success) success();
  533. } else {
  534. if (failure) failure(null, "", "append values failed");
  535. }
  536. }, function (xhr, text, error) {
  537. if (failure) failure(xhr, text, error);
  538. }, false);
  539. },
  540. //设置组织属性值(将属性值修改为values,如果没有此属性,则创建一个)
  541. setUnitAttribute: function (unit, attr, values, success, failure) {
  542. getOrgActions();
  543. var unitFlag = (typeOf(unit) === "object") ? (unit.distinguishedName || unit.id || unit.unique || unit.name) : unit;
  544. var data = { "attributeList": values, "name": attr, "unit": unitFlag };
  545. orgActions.setUnitAttribute(data, function (json) {
  546. if (json.data.value) {
  547. if (success) success();
  548. } else {
  549. if (failure) failure(null, "", "append values failed");
  550. }
  551. }, function (xhr, text, error) {
  552. if (failure) failure(xhr, text, error);
  553. }, false);
  554. },
  555. //获取组织属性值
  556. getUnitAttribute: function (unit, attr) {
  557. getOrgActions();
  558. var unitFlag = (typeOf(unit) === "object") ? (unit.distinguishedName || unit.id || unit.unique || unit.name) : unit;
  559. var data = { "name": attr, "unit": unitFlag };
  560. var v = null;
  561. orgActions.getUnitAttribute(data, function (json) { v = json.data.attributeList; }, null, false);
  562. return v;
  563. },
  564. //列出组织所有属性的名称
  565. listUnitAttributeName: function (name) {
  566. getOrgActions();
  567. var data = { "unitList": getNameFlag(name) };
  568. var v = null;
  569. orgActions.listUnitAttributeName(data, function (json) { v = json.data.nameList; }, null, false);
  570. return v;
  571. },
  572. //列出组织的所有属性
  573. listUnitAllAttribute: function (name) {
  574. getOrgActions();
  575. var data = { "unitList": getNameFlag(name) };
  576. var v = null;
  577. orgActions.listUnitAllAttribute(data, function (json) { v = json.data; }, null, false);
  578. return v;
  579. }
  580. };
  581. this.Action = (function () {
  582. var actions = [];
  583. return function (root, json) {
  584. var action = actions[root] || (actions[root] = new MWF.xDesktop.Actions.RestActions("", root, ""));
  585. action.getActions = function (callback) {
  586. if (!this.actions) this.actions = {};
  587. Object.merge(this.actions, json);
  588. if (callback) callback();
  589. };
  590. this.invoke = function (option) {
  591. action.invoke(option)
  592. }
  593. }
  594. })();
  595. this.service = {
  596. "jaxwsClient": {},
  597. "jaxrsClient": {}
  598. };
  599. var lookupAction = null;
  600. var getLookupAction = function (callback) {
  601. if (!lookupAction) {
  602. MWF.require("MWF.xDesktop.Actions.RestActions", function () {
  603. lookupAction = new MWF.xDesktop.Actions.RestActions("", "x_processplatform_assemble_surface", "");
  604. lookupAction.getActions = function (actionCallback) {
  605. this.actions = {
  606. //"lookup": {"uri": "/jaxrs/view/flag/{view}/application/flag/{application}"},
  607. //"getView": {"uri": "/jaxrs/view/{id}/design"}
  608. "lookup": { "uri": "/jaxrs/queryview/flag/{view}/application/flag/{application}/execute", "method": "PUT" },
  609. "getView": { "uri": "/jaxrs/queryview/flag/{view}/application/flag/{application}" }
  610. };
  611. if (actionCallback) actionCallback();
  612. }
  613. if (callback) callback();
  614. });
  615. } else {
  616. if (callback) callback();
  617. }
  618. };
  619. this.view = {
  620. "lookup": function (view, callback, async) {
  621. var filterList = { "filterList": (view.filter || null) };
  622. MWF.Actions.get("x_query_assemble_surface").loadView(view.view, view.application, filterList, function (json) {
  623. var data = {
  624. "grid": json.data.grid || json.data.groupGrid,
  625. "groupGrid": json.data.groupGrid
  626. };
  627. if (callback) callback(data);
  628. }, null, async);
  629. },
  630. "lookupV1": function (view, callback) {
  631. getLookupAction(function () {
  632. lookupAction.invoke({
  633. "name": "lookup", "async": true, "parameter": { "view": view.view, "application": view.application }, "success": function (json) {
  634. var data = {
  635. "grid": json.data.grid,
  636. "groupGrid": json.data.groupGrid
  637. };
  638. if (callback) callback(data);
  639. }.bind(this)
  640. });
  641. }.bind(this));
  642. },
  643. "select": function (view, callback, options) {
  644. if (view.view) {
  645. var viewJson = {
  646. "application": view.application || _form.json.application,
  647. "viewName": view.view || "",
  648. "isTitle": (view.isTitle === false) ? "no" : "yes",
  649. "select": (view.isMulti === false) ? "single" : "multi",
  650. "filter": view.filter
  651. };
  652. if (!options) options = {};
  653. options.width = view.width;
  654. options.height = view.height;
  655. options.title = view.caption;
  656. var width = options.width || "700";
  657. var height = options.height || "400";
  658. if (layout.mobile) {
  659. var size = document.body.getSize();
  660. width = size.x;
  661. height = size.y;
  662. options.style = "viewmobile";
  663. }
  664. width = width.toInt();
  665. height = height.toInt();
  666. var size = _form.app.content.getSize();
  667. var x = (size.x - width) / 2;
  668. var y = (size.y - height) / 2;
  669. if (x < 0) x = 0;
  670. if (y < 0) y = 0;
  671. if (layout.mobile) {
  672. x = 20;
  673. y = 0;
  674. }
  675. var _self = this;
  676. MWF.require("MWF.xDesktop.Dialog", function () {
  677. var dlg = new MWF.xDesktop.Dialog({
  678. "title": options.title || "select view",
  679. "style": options.style || "view",
  680. "top": y,
  681. "left": x - 20,
  682. "fromTop": y,
  683. "fromLeft": x - 20,
  684. "width": width,
  685. "height": height,
  686. "html": "<div style='height: 100%;'></div>",
  687. "maskNode": _form.app.content,
  688. "container": _form.app.content,
  689. "buttonList": [
  690. {
  691. "text": MWF.LP.process.button.ok,
  692. "action": function () {
  693. //if (callback) callback(_self.view.selectedItems);
  694. if (callback) callback(_self.view.getData());
  695. this.close();
  696. }
  697. },
  698. {
  699. "text": MWF.LP.process.button.cancel,
  700. "action": function () { this.close(); }
  701. }
  702. ]
  703. });
  704. dlg.show();
  705. if (layout.mobile) {
  706. var backAction = dlg.node.getElement(".MWF_dialod_Action_back");
  707. var okAction = dlg.node.getElement(".MWF_dialod_Action_ok");
  708. if (backAction) backAction.addEvent("click", function (e) {
  709. dlg.close();
  710. }.bind(this));
  711. if (okAction) okAction.addEvent("click", function (e) {
  712. //if (callback) callback(this.view.selectedItems);
  713. if (callback) callback(this.view.getData());
  714. dlg.close();
  715. }.bind(this));
  716. }
  717. MWF.xDesktop.requireApp("query.Query", "Viewer", function () {
  718. this.view = new MWF.xApplication.query.Query.Viewer(dlg.content.getFirst(), viewJson, { "style": "select" });
  719. }.bind(this));
  720. }.bind(this));
  721. }
  722. }
  723. };
  724. //include 引用脚本
  725. //optionsOrName : {
  726. // type : "", 默认为portal, 可以为 portal process cms
  727. // application : "", 门户/流程/CMS的名称/别名/id, 默认为当前应用
  728. // name : "" // 脚本名称/别名/id
  729. //}
  730. //或者name: "" // 脚本名称/别名/id
  731. // if( !window.includedScripts ){
  732. // var includedScripts = window.includedScripts = [];
  733. // }else{
  734. // var includedScripts = window.includedScripts;
  735. // }
  736. var includedScripts = [];
  737. this.include = function (optionsOrName, callback) {
  738. var options = optionsOrName;
  739. if (typeOf(options) == "string") {
  740. options = { name: options };
  741. }
  742. var name = options.name;
  743. var type = (options.type && options.application) ? options.type : "portal";
  744. var application = options.application || _form.json.application;
  745. var key = type + "-" + application + "-" + name;
  746. if (includedScripts.indexOf(key) > -1) {
  747. if (callback) callback.apply(this);
  748. return;
  749. }
  750. //if (includedScripts.indexOf( name )> -1){
  751. // if (callback) callback.apply(this);
  752. // return;
  753. //}
  754. var scriptAction;
  755. switch (type) {
  756. case "portal":
  757. if (this.scriptActionPortal) {
  758. scriptAction = this.scriptActionPortal;
  759. } else {
  760. MWF.require("MWF.xScript.Actions.PortalScriptActions", null, false);
  761. scriptAction = this.scriptActionPortal = new MWF.xScript.Actions.PortalScriptActions();
  762. }
  763. break;
  764. case "process":
  765. if (this.scriptActionProcess) {
  766. scriptAction = this.scriptActionProcess;
  767. } else {
  768. MWF.require("MWF.xScript.Actions.ScriptActions", null, false);
  769. scriptAction = this.scriptActionProcess = new MWF.xScript.Actions.ScriptActions();
  770. }
  771. break;
  772. case "cms":
  773. if (this.scriptActionCMS) {
  774. scriptAction = this.scriptActionCMS;
  775. } else {
  776. MWF.require("MWF.xScript.Actions.CMSScriptActions", null, false);
  777. scriptAction = this.scriptActionCMS = new MWF.xScript.Actions.CMSScriptActions();
  778. }
  779. break;
  780. }
  781. scriptAction.getScriptByName(application, name, includedScripts, function (json) {
  782. if (json.data) {
  783. includedScripts.push(key);
  784. includedScripts = includedScripts.concat(json.data.importedList);
  785. MWF.Macro.exec(json.data.text, this);
  786. if (callback) callback.apply(this);
  787. } else {
  788. if (callback) callback.apply(this);
  789. }
  790. }.bind(this), null, false);
  791. };
  792. //var includedScripts = [];
  793. //this.include = function(name, callback){
  794. // if (includedScripts.indexOf(name)==-1){
  795. // if (!this.scriptAction){
  796. // MWF.require("MWF.xScript.Actions.PortalScriptActions", null, false);
  797. // this.scriptAction = new MWF.xScript.Actions.PortalScriptActions();
  798. // }
  799. // this.scriptAction.getScriptByName(_form.json.application, name, includedScripts, function(json){
  800. // if (json.data){
  801. // includedScripts = includedScripts.concat(json.data.importedList);
  802. // MWF.Macro.exec(json.data.text, this);
  803. // if (callback) callback.apply(this);
  804. // }else{
  805. // if (callback) callback.apply(this);
  806. // }
  807. // }.bind(this), null, false);
  808. // }else{
  809. // if (callback) callback.apply(this);
  810. // }
  811. //}.bind(this);
  812. this.define = function (name, fun, overwrite) {
  813. var over = true;
  814. if (overwrite === false) over = false;
  815. var o = {};
  816. o[name] = { "value": fun, "configurable": over };
  817. MWF.defineProperties(this, o);
  818. }.bind(this);
  819. //仅前台对象-----------------------------------------
  820. //form
  821. this.page = this.form = {
  822. "getInfor": function () { return ev.pageInfor; },
  823. "infor": ev.pageInfor,
  824. "getApp": function () { return _form.app; },
  825. "app": _form.app,
  826. "node": function () { return _form.node; },
  827. //"readonly": _form.options.readonly,
  828. "get": function (name) { return (_form.all) ? _form.all[name] : null; },
  829. "getWidgetModule": function (widget, moduleName) {
  830. if (!_form.widgetModules || !_form.widgetModules[widget]) return null;
  831. var module = _form.widgetModules[widget][moduleName];
  832. return module || null;
  833. },
  834. "getField": function (name) { return _forms[name]; },
  835. "getAction": function () { return _form.workAction },
  836. "getDesktop": function () { return _form.app.desktop },
  837. "getData": function () { return new MWF.xScript.JSONData(_form.getData()); },
  838. //"save": function(callback){_form.saveWork(callback);},
  839. "close": function () { _form.closeWork(); },
  840. "print": function (application, form) {
  841. _form.printWork(application, form);
  842. },
  843. "confirm": function (type, title, text, width, height, ok, cancel, callback, mask, style) {
  844. // var p = MWF.getCenter({"x": width, "y": height});
  845. // e = {"event": {"clientX": p.x,"x": p.x,"clientY": p.y,"y": p.y}};
  846. // _form.confirm(type, e, title, text, width, height, ok, cancel, callback, mask, style);
  847. if ((arguments.length <= 1) || o2.typeOf(arguments[1]) === "string") {
  848. var p = MWF.getCenter({ "x": width, "y": height });
  849. e = { "event": { "clientX": p.x, "x": p.x, "clientY": p.y, "y": p.y } };
  850. _form.confirm(type, e, title, text, width, height, ok, cancel, callback, mask, style);
  851. } else {
  852. e = (arguments.length > 1) ? arguments[1] : null;
  853. title = (arguments.length > 2) ? arguments[2] : null;
  854. text = (arguments.length > 3) ? arguments[3] : null;
  855. width = (arguments.length > 4) ? arguments[4] : null;
  856. height = (arguments.length > 5) ? arguments[5] : null;
  857. ok = (arguments.length > 6) ? arguments[6] : null;
  858. cancel = (arguments.length > 7) ? arguments[7] : null;
  859. callback = (arguments.length > 8) ? arguments[8] : null;
  860. mask = (arguments.length > 9) ? arguments[9] : null;
  861. style = (arguments.length > 10) ? arguments[10] : null;
  862. _form.confirm(type, e, title, text, width, height, ok, cancel, callback, mask, style);
  863. }
  864. },
  865. "alert": function(type, title, text, width, height){
  866. _form.alert(type, title, text, width, height);
  867. },
  868. "notice": function (content, type, target, where, offset, option) {
  869. _form.notice(content, type, target, where, offset, option);
  870. },
  871. "addEvent": function (e, f) { _form.addEvent(e, f); },
  872. "openWindow": function (form, app) {
  873. _form.openWindow(form, app);
  874. },
  875. "toPage": function (name, par, nohis) {
  876. _form.app.toPage(name, par, nohis);
  877. },
  878. "toPortal": function (portal, page, par) {
  879. _form.app.toPortal(portal, page, par);
  880. },
  881. "openWork": function (id, completedId, title, options) {
  882. var op = options || {};
  883. op.workId = id;
  884. op.workCompletedId = completedId;
  885. op.docTitle = title;
  886. op.appId = "process.Work" + (op.workId || op.workCompletedId);
  887. return layout.desktop.openApplication(this.event, "process.Work", op);
  888. },
  889. "openJob": function (id, choice, options) {
  890. var workData = null;
  891. o2.Actions.get("x_processplatform_assemble_surface").listWorkByJob(id, function (json) {
  892. if (json.data) workData = json.data;
  893. }.bind(this), null, false);
  894. if (workData) {
  895. var len = workData.workList.length + workData.workCompletedList.length;
  896. if (len) {
  897. if (len > 1 && choice) {
  898. var node = new Element("div", { "styles": { "padding": "20px", "width": "500px" } }).inject(_form.node);
  899. workData.workList.each(function (work) {
  900. var workNode = new Element("div", {
  901. "styles": {
  902. "background": "#ffffff",
  903. "border-radius": "10px",
  904. "clear": "both",
  905. "margin-bottom": "10px",
  906. "height": "40px",
  907. "padding": "10px 10px"
  908. }
  909. }).inject(node);
  910. var html = "<div style='height: 40px; width: 40px; float: left; background: url(/x_component_process_Xform/$Form/default/icon/work.png) no-repeat center center'></div>" +
  911. "<div style='height: 40px; width: 40px; float: right'><div class='MWFAction' style='height: 20px; width: 40px; margin-top: 10px; border: 1px solid #999999; border-radius: 5px;text-align: center; cursor: pointer'>" + o2.LP.widget.open + "</div></div>" +
  912. "<div style='height: 20px; line-height: 20px; margin: 0px 40px'>" + work.title + "</div>" +
  913. "<div style='margin: 0px 40px'><div style='color:#999999; float: left; margin-right: 10px'>" + work.activityName + "</div>" +
  914. "<div style='color:#999999; float: left; margin-right: 10px'>" + work.activityArrivedTime + "</div>" +
  915. "<div style='color:#999999; float: left; margin-right: 10px'>" + (work.manualTaskIdentityText || "") + "</div></div>";
  916. workNode.set("html", html);
  917. var action = workNode.getElement(".MWFAction");
  918. action.store("work", work);
  919. action.addEvent("click", function (e) {
  920. var work = e.target.retrieve("work");
  921. if (work) this.openWork(work.id, null, work.title, options);
  922. dlg.close();
  923. }.bind(this));
  924. }.bind(this));
  925. workData.workCompletedList.each(function (work) {
  926. var workNode = new Element("div", {
  927. "styles": {
  928. "background": "#ffffff",
  929. "border-radius": "10px",
  930. "clear": "both",
  931. "margin-bottom": "10px",
  932. "height": "40px",
  933. "padding": "10px 10px"
  934. }
  935. }).inject(node);
  936. var html = "<div style='height: 40px; width: 40px; float: left; background: url(/x_component_process_Xform/$Form/default/icon/work.png) no-repeat center center'></div>" +
  937. "<div style='height: 40px; width: 40px; float: right'><div class='MWFAction' style='height: 20px; width: 40px; margin-top: 10px; border: 1px solid #999999; border-radius: 5px;text-align: center; cursor: pointer'>" + o2.LP.widget.open + "</div></div>" +
  938. "<div style='height: 20px; line-height: 20px; margin: 0px 40px'>" + work.title + "</div>" +
  939. "<div style='margin: 0px 40px'><div style='color:#999999; float: left; margin-right: 10px'>" + o2.LP.widget.workcompleted + "</div>" +
  940. "<div style='color:#999999; float: left; margin-right: 10px'>" + work.completedTime + "</div>";
  941. workNode.set("html", html);
  942. var action = workNode.getElement(".MWFAction");
  943. action.store("work", work);
  944. action.addEvent("click", function (e) {
  945. var work = e.target.retrieve("work");
  946. if (work) this.openWork(null, work.id, work.title, options);
  947. dlg.close();
  948. }.bind(this));
  949. }.bind(this));
  950. var height = node.getSize().y + 20;
  951. if (height > 600) height = 600;
  952. var dlg = o2.DL.open({
  953. "title": o2.LP.widget.choiceWork,
  954. "style": "user",
  955. "isResize": false,
  956. "content": node,
  957. "buttonList": [
  958. {
  959. "type": "cancel",
  960. "text": o2.LP.widget.close,
  961. "action": function () { dlg.close(); }
  962. }
  963. ]
  964. });
  965. } else {
  966. if (workData.workList.length) {
  967. var work = workData.workList[0];
  968. return this.openWork(work.id, null, work.title, options);
  969. } else {
  970. var work = workData.workCompletedList[0];
  971. return this.openWork(null, work.id, work.title, options);
  972. }
  973. }
  974. }
  975. }
  976. },
  977. "openDocument": function (id, title, options) {
  978. var op = options || {};
  979. op.documentId = id;
  980. op.docTitle = title || "";
  981. layout.desktop.openApplication(this.event, "cms.Document", op);
  982. },
  983. "openPortal": function (name, page, par) {
  984. var action = MWF.Actions.get("x_portal_assemble_surface");
  985. action.getApplication(name, function (json) {
  986. if (json.data) {
  987. if (page) {
  988. action.getPageByName(page, json.data.id, function (pageJson) {
  989. layout.desktop.openApplication(null, "portal.Portal", {
  990. "portalId": json.data.id,
  991. "pageId": (pageJson.data) ? pageJson.data.id : "",
  992. "parameters": par,
  993. "appId": "portal.Portal" + json.data.id
  994. })
  995. });
  996. } else {
  997. layout.desktop.openApplication(null, "portal.Portal", {
  998. "portalId": json.data.id,
  999. "parameters": par,
  1000. "appId": "portal.Portal" + json.data.id
  1001. })
  1002. }
  1003. }
  1004. });
  1005. },
  1006. "openCMS": function (name) {
  1007. var action = MWF.Actions.get("x_cms_assemble_control");
  1008. action.getColumn(name, function (json) {
  1009. if (json.data) {
  1010. layout.desktop.openApplication(null, "cms.Module", {
  1011. "columnId": json.data.id,
  1012. "appId": "cms.Module" + json.data.id
  1013. });
  1014. }
  1015. });
  1016. },
  1017. "openProcess": function (name) {
  1018. var action = MWF.Actions.get("x_processplatform_assemble_surface");
  1019. action.getApplication(name, function (json) {
  1020. if (json.data) {
  1021. layout.desktop.openApplication(null, "process.Application", {
  1022. "id": json.data.id,
  1023. "appId": "process.Application" + json.data.id
  1024. });
  1025. }
  1026. });
  1027. },
  1028. "openApplication": function (name, options) {
  1029. layout.desktop.openApplication(null, name, options);
  1030. },
  1031. "createDocument": function (columnOrOptions, category, data, identity, callback, target, latest, selectColumnEnable, ignoreTitle) {
  1032. var column = columnOrOptions;
  1033. if (typeOf(columnOrOptions) == "object") {
  1034. column = columnOrOptions.column;
  1035. category = columnOrOptions.category;
  1036. data = columnOrOptions.data;
  1037. identity = columnOrOptions.identity;
  1038. callback = columnOrOptions.callback;
  1039. target = columnOrOptions.target;
  1040. latest = columnOrOptions.latest;
  1041. selectColumnEnable = columnOrOptions.selectColumnEnable;
  1042. ignoreTitle = columnOrOptions.ignoreTitle;
  1043. }
  1044. if (target) {
  1045. if (layout.app && layout.app.inBrowser) {
  1046. layout.app.content.empty();
  1047. layout.app = null;
  1048. }
  1049. }
  1050. MWF.xDesktop.requireApp("cms.Index", "Newer", function () {
  1051. var starter = new MWF.xApplication.cms.Index.Newer(null, null, _form.app, null, {
  1052. "documentData": data,
  1053. "identity": identity,
  1054. "ignoreTitle": ignoreTitle === true,
  1055. "ignoreDrafted": latest === false,
  1056. "selectColumnEnable": !category || selectColumnEnable === true,
  1057. "restrictToColumn": !!category && selectColumnEnable !== true,
  1058. "categoryFlag": category, //category id or name
  1059. "columnFlag": column, //column id or name,
  1060. "onStarted": function (documentId, data) {
  1061. if (callback) callback();
  1062. },
  1063. "onPostLoad": function () {
  1064. },
  1065. "onPostPublish": function () {
  1066. }
  1067. });
  1068. starter.load();
  1069. })
  1070. },
  1071. "startProcess": function (app, process, data, identity, callback, target, latest) {
  1072. debugger;
  1073. if (arguments.length > 2) {
  1074. for (var i = 2; i < arguments.length; i++) {
  1075. if (typeOf(arguments[i]) == "boolean") {
  1076. target = arguments[i];
  1077. break;
  1078. }
  1079. }
  1080. }
  1081. if (target) {
  1082. if (layout.app && layout.app.inBrowser) {
  1083. //layout.app.content.empty();
  1084. layout.app.$openWithSelf = true;
  1085. }
  1086. }
  1087. var action = MWF.Actions.get("x_processplatform_assemble_surface").getProcessByName(process, app, function (json) {
  1088. if (json.data) {
  1089. MWF.xDesktop.requireApp("process.TaskCenter", "ProcessStarter", function () {
  1090. var starter = new MWF.xApplication.process.TaskCenter.ProcessStarter(json.data, _form.app, {
  1091. "workData": data,
  1092. "identity": identity,
  1093. "latest": latest,
  1094. "onStarted": function (data, title, processName) {
  1095. var currentTask = [];
  1096. data.each(function (work) {
  1097. if (work.currentTaskIndex != -1) currentTask.push(work.taskList[work.currentTaskIndex].work);
  1098. }.bind(this));
  1099. if (currentTask.length == 1) {
  1100. var options = { "workId": currentTask[0], "appId": currentTask[0] };
  1101. layout.desktop.openApplication(null, "process.Work", options);
  1102. } else { }
  1103. if (callback) callback(data);
  1104. }.bind(this)
  1105. });
  1106. starter.load();
  1107. }.bind(this));
  1108. }
  1109. });
  1110. },
  1111. "parameters": _form.options.parameters,
  1112. "getWidgetPrameters": function () {
  1113. if (!this.target) return null;
  1114. if (!this.target.widget) return null;
  1115. if (!this.widgetParameters) return null;
  1116. var pageId = this.target.widget.json.id;
  1117. return this.widgetParameters[pageId];
  1118. }.bind(this)
  1119. //"app": _form.app
  1120. };
  1121. this.form.currentRouteName = _form.json.currentRouteName;
  1122. this.form.opinion = _form.json.opinion;
  1123. this.target = ev.target;
  1124. this.event = ev.event;
  1125. this.status = ev.status;
  1126. this.session = layout.desktop.session;
  1127. this.Actions = o2.Actions;
  1128. this.query = function (option) {
  1129. // options = {
  1130. // "name": "statementName",
  1131. // "data": "json data",
  1132. // "firstResult": 1,
  1133. // "maxResults": 100,
  1134. // "success": function(){},
  1135. // "error": function(){},
  1136. // "async": true or false, default is true
  1137. // }
  1138. if (option) {
  1139. var json = (option.data) || {};
  1140. if (option.firstResult) json.firstResult = option.firstResult.toInt();
  1141. if (option.maxResults) json.maxResults = option.maxResults.toInt();
  1142. o2.Actions.get("x_query_assemble_surface").executeStatement(option.name, json, success, error, options.async);
  1143. }
  1144. };
  1145. this.Table = MWF.xScript.createTable();
  1146. };