PageEnvironment.js 66 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445
  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. getPersonWithIdentity: function(name){
  262. getOrgActions();
  263. var data = {"identityList": getNameFlag(name)};
  264. var v = null;
  265. orgActions.listPersonWithIdentity(data, function(json){v = json.data;}, null, false);
  266. return (v && v.length===1) ? v[0] : v;
  267. },
  268. //查询组织成员的人员--返回人员的对象数组
  269. //nested 布尔 true嵌套的所有成员;false直接成员;默认false;
  270. listPersonWithUnit: function (name, nested) {
  271. getOrgActions();
  272. var data = { "unitList": getNameFlag(name) };
  273. var v = null;
  274. if (nested) {
  275. orgActions.listPersonWithUnitNested(data, function (json) { v = json.data; }, null, false);
  276. } else {
  277. orgActions.listPersonWithUnitDirect(data, function (json) { v = json.data; }, null, false);
  278. }
  279. return v;
  280. },
  281. //根据属性查询人员--返回人员的对象数组
  282. //name string 属性名
  283. //value string 属性值
  284. listPersonWithAttribute: function (name, value) {
  285. getOrgActions();
  286. var data = { "name": name, "attribute": value };
  287. var v = null;
  288. orgActions.listPersonWithAttribute(data, function (json) { v = json.data; }, null, false);
  289. return v;
  290. },
  291. //根据属性查询人员--返回人员的全称数组
  292. //name string 属性名
  293. //value string 属性值
  294. listPersonNameWithAttribute: function (name, value) {
  295. getOrgActions();
  296. var data = { "name": name, "attribute": value };
  297. var v = null;
  298. orgActions.listPersonWithAttributeValue(data, function (json) { v = json.data.personList; }, null, false);
  299. return v;
  300. },
  301. //人员属性************
  302. //添加人员属性值(在属性中添加values值,如果没有此属性,则创建一个)
  303. appendPersonAttribute: function (person, attr, values, success, failure) {
  304. getOrgActions();
  305. var personFlag = (typeOf(person) === "object") ? (person.distinguishedName || person.id || person.unique || person.name) : person;
  306. var data = { "attributeList": values, "name": attr, "person": personFlag };
  307. orgActions.appendPersonAttribute(data, function (json) {
  308. if (json.data.value) {
  309. if (success) success();
  310. } else {
  311. if (failure) failure(null, "", "append values failed");
  312. }
  313. }, function (xhr, text, error) {
  314. if (failure) failure(xhr, text, error);
  315. }, false);
  316. },
  317. //设置人员属性值(将属性值修改为values,如果没有此属性,则创建一个)
  318. setPersonAttribute: function (person, attr, values, success, failure) {
  319. getOrgActions();
  320. var personFlag = (typeOf(person) === "object") ? (person.distinguishedName || person.id || person.unique || person.name) : person;
  321. var data = { "attributeList": values, "name": attr, "person": personFlag };
  322. orgActions.setPersonAttribute(data, function (json) {
  323. if (json.data.value) {
  324. if (success) success();
  325. } else {
  326. if (failure) failure(null, "", "append values failed");
  327. }
  328. }, function (xhr, text, error) {
  329. if (failure) failure(xhr, text, error);
  330. }, false);
  331. },
  332. //获取人员属性值
  333. getPersonAttribute: function (person, attr) {
  334. getOrgActions();
  335. var personFlag = (typeOf(person) === "object") ? (person.distinguishedName || person.id || person.unique || person.name) : person;
  336. var data = { "name": attr, "person": personFlag };
  337. var v = null;
  338. orgActions.getPersonAttribute(data, function (json) { v = json.data.attributeList; }, null, false);
  339. return v;
  340. },
  341. //列出人员所有属性的名称
  342. listPersonAttributeName: function (name) {
  343. getOrgActions();
  344. var data = { "personList": getNameFlag(name) };
  345. var v = null;
  346. orgActions.listPersonAttributeName(data, function (json) { v = json.data.nameList; }, null, false);
  347. return v;
  348. },
  349. //列出人员的所有属性
  350. listPersonAllAttribute: function (name) {
  351. getOrgActions();
  352. var data = { "personList": getNameFlag(name) };
  353. var v = null;
  354. orgActions.listPersonAllAttribute(data, function (json) { v = json.data; }, null, false);
  355. return v;
  356. },
  357. //身份**********
  358. //获取身份
  359. getIdentity: function (name) {
  360. getOrgActions();
  361. var data = { "identityList": getNameFlag(name) };
  362. var v = null;
  363. orgActions.listIdentity(data, function (json) { v = json.data; }, null, false);
  364. return (v && v.length === 1) ? v[0] : v;
  365. },
  366. //列出人员的身份
  367. listIdentityWithPerson: function (name) {
  368. getOrgActions();
  369. var data = { "personList": getNameFlag(name) };
  370. var v = null;
  371. orgActions.listIdentityWithPerson(data, function (json) { v = json.data; }, null, false);
  372. return v;
  373. },
  374. //查询组织成员身份--返回身份的对象数组
  375. //nested 布尔 true嵌套的所有成员;false直接成员;默认false;
  376. listIdentityWithUnit: function (name, nested) {
  377. getOrgActions();
  378. var data = { "unitList": getNameFlag(name) };
  379. var v = null;
  380. if (nested) {
  381. orgActions.listIdentityWithUnitNested(data, function (json) { v = json.data; }, null, false);
  382. } else {
  383. orgActions.listIdentityWithUnitDirect(data, function (json) { v = json.data; }, null, false);
  384. }
  385. return v;
  386. },
  387. //组织**********
  388. //获取组织
  389. getUnit: function (name) {
  390. getOrgActions();
  391. var data = { "unitList": getNameFlag(name) };
  392. var v = null;
  393. orgActions.listUnit(data, function (json) { v = json.data; }, null, false);
  394. return (v && v.length === 1) ? v[0] : v;
  395. },
  396. //查询组织的下级--返回组织的对象数组
  397. //nested 布尔 true嵌套下级;false直接下级;默认false;
  398. listSubUnit: function (name, nested) {
  399. getOrgActions();
  400. var data = { "unitList": getNameFlag(name) };
  401. var v = null;
  402. if (nested) {
  403. orgActions.listUnitSubNested(data, function (json) { v = json.data; }, null, false);
  404. } else {
  405. orgActions.listUnitSubDirect(data, function (json) { v = json.data; }, null, false);
  406. }
  407. return v;
  408. },
  409. //查询组织的上级--返回组织的对象数组
  410. //nested 布尔 true嵌套上级;false直接上级;默认false;
  411. listSupUnit: function (name, nested) {
  412. getOrgActions();
  413. var data = { "unitList": getNameFlag(name) };
  414. var v = null;
  415. if (nested) {
  416. orgActions.listUnitSupNested(data, function (json) { v = json.data; }, null, false);
  417. } else {
  418. orgActions.listUnitSupDirect(data, function (json) { v = json.data; }, null, false);
  419. }
  420. return v;
  421. },
  422. //根据个人身份获取组织
  423. //flag 数字 表示获取第几层的组织
  424. // 字符串 表示获取指定类型的组织
  425. // 空 表示获取直接所在的组织
  426. getUnitByIdentity: function (name, flag) {
  427. getOrgActions();
  428. var getUnitMethod = "current";
  429. var v;
  430. if (flag) {
  431. if (typeOf(flag) === "string") getUnitMethod = "type";
  432. if (typeOf(flag) === "number") getUnitMethod = "level";
  433. }
  434. switch (getUnitMethod) {
  435. case "current":
  436. var data = { "identityList": getNameFlag(name) };
  437. orgActions.listUnitWithIdentity(data, function (json) { v = json.data; v = (v && v.length === 1) ? v[0] : v }, null, false);
  438. break;
  439. case "type":
  440. var data = { "identity": (typeOf(name) === "object") ? (name.distinguishedName || name.id || name.unique || name.name) : name, "type": flag };
  441. orgActions.getUnitWithIdentityAndType(data, function (json) { v = json.data; }, null, false);
  442. break;
  443. case "level":
  444. var data = { "identity": (typeOf(name) === "object") ? (name.distinguishedName || name.id || name.unique || name.name) : name, "level": flag };
  445. orgActions.getUnitWithIdentityAndLevel(data, function (json) { v = json.data; }, null, false);
  446. break;
  447. }
  448. return v;
  449. },
  450. //列出身份所在组织的所有上级组织
  451. listAllSupUnitWithIdentity: function (name) {
  452. getOrgActions();
  453. var data = { "identityList": getNameFlag(name) };
  454. var v = null;
  455. orgActions.listUnitSupNestedWithIdentity(data, function (json) { v = json.data; }, null, false);
  456. return v;
  457. },
  458. //获取人员所在的所有组织
  459. listUnitWithPerson: function (name) {
  460. getOrgActions();
  461. var data = { "personList": getNameFlag(name) };
  462. var v = null;
  463. orgActions.listUnitWithPerson(data, function (json) { v = json.data; }, null, false);
  464. return v;
  465. },
  466. //列出身份所在组织的所有上级组织
  467. listAllSupUnitWithPerson: function (name) {
  468. getOrgActions();
  469. var data = { "personList": getNameFlag(name) };
  470. var v = null;
  471. orgActions.listUnitSupNestedWithPerson(data, function (json) { v = json.data; }, null, false);
  472. return v;
  473. },
  474. //根据组织属性,获取所有符合的组织
  475. listUnitWithAttribute: function (name, attribute) {
  476. getOrgActions();
  477. var data = { "name": name, "attribute": attribute };
  478. var v = null;
  479. orgActions.listUnitWithAttribute(data, function (json) { v = json.data; }, null, false);
  480. return v;
  481. },
  482. //根据组织职务,获取所有符合的组织
  483. listUnitWithDuty: function (name, id) {
  484. getOrgActions();
  485. var data = { "name": "", "identity": (typeOf(id) === "object") ? (id.distinguishedName || id.id || id.unique || id.name) : id };
  486. var v = null;
  487. orgActions.listUnitWithDuty(data, function (json) { v = json.data; }, null, false);
  488. return v;
  489. },
  490. //列出顶层组织
  491. listTopUnit: function () {
  492. var action = MWF.Actions.get("x_organization_assemble_control");
  493. var v = null;
  494. action.listTopUnit(function (json) {
  495. v = json.data;
  496. }, null, false);
  497. return v;
  498. },
  499. //组织职务***********
  500. //获取指定的组织职务的身份
  501. getDuty: function (duty, id) {
  502. getOrgActions();
  503. var data = { "name": duty, "unit": (typeOf(id) === "object") ? (id.distinguishedName || id.id || id.unique || id.name) : id };
  504. var v = null;
  505. orgActions.getDuty(data, function (json) { v = json.data; }, null, false);
  506. return v;
  507. },
  508. //获取身份的所有职务名称
  509. listDutyNameWithIdentity: function (name) {
  510. getOrgActions();
  511. var data = { "identityList": getNameFlag(name) };
  512. var v = null;
  513. orgActions.listDutyNameWithIdentity(data, function (json) { v = json.data.nameList; }, null, false);
  514. return v;
  515. },
  516. //获取组织的所有职务名称
  517. listDutyNameWithUnit: function (name) {
  518. getOrgActions();
  519. var data = { "unitList": getNameFlag(name) };
  520. var v = null;
  521. orgActions.listDutyNameWithUnit(data, function (json) { v = json.data.nameList; }, null, false);
  522. return v;
  523. },
  524. //获取组织的所有职务
  525. listUnitAllDuty: function (name) {
  526. getOrgActions();
  527. var data = { "unitList": getNameFlag(name) };
  528. var v = null;
  529. orgActions.listUnitAllDuty(data, function (json) { v = json.data; }, null, false);
  530. return v;
  531. },
  532. //组织属性**************
  533. //添加组织属性值(在属性中添加values值,如果没有此属性,则创建一个)
  534. appendUnitAttribute: function (unit, attr, values, success, failure) {
  535. getOrgActions();
  536. var unitFlag = (typeOf(unit) === "object") ? (unit.distinguishedName || unit.id || unit.unique || unit.name) : unit;
  537. var data = { "attributeList": values, "name": attr, "unit": unitFlag };
  538. orgActions.appendUnitAttribute(data, function (json) {
  539. if (json.data.value) {
  540. if (success) success();
  541. } else {
  542. if (failure) failure(null, "", "append values failed");
  543. }
  544. }, function (xhr, text, error) {
  545. if (failure) failure(xhr, text, error);
  546. }, false);
  547. },
  548. //设置组织属性值(将属性值修改为values,如果没有此属性,则创建一个)
  549. setUnitAttribute: function (unit, attr, values, success, failure) {
  550. getOrgActions();
  551. var unitFlag = (typeOf(unit) === "object") ? (unit.distinguishedName || unit.id || unit.unique || unit.name) : unit;
  552. var data = { "attributeList": values, "name": attr, "unit": unitFlag };
  553. orgActions.setUnitAttribute(data, function (json) {
  554. if (json.data.value) {
  555. if (success) success();
  556. } else {
  557. if (failure) failure(null, "", "append values failed");
  558. }
  559. }, function (xhr, text, error) {
  560. if (failure) failure(xhr, text, error);
  561. }, false);
  562. },
  563. //获取组织属性值
  564. getUnitAttribute: function (unit, attr) {
  565. getOrgActions();
  566. var unitFlag = (typeOf(unit) === "object") ? (unit.distinguishedName || unit.id || unit.unique || unit.name) : unit;
  567. var data = { "name": attr, "unit": unitFlag };
  568. var v = null;
  569. orgActions.getUnitAttribute(data, function (json) { v = json.data.attributeList; }, null, false);
  570. return v;
  571. },
  572. //列出组织所有属性的名称
  573. listUnitAttributeName: function (name) {
  574. getOrgActions();
  575. var data = { "unitList": getNameFlag(name) };
  576. var v = null;
  577. orgActions.listUnitAttributeName(data, function (json) { v = json.data.nameList; }, null, false);
  578. return v;
  579. },
  580. //列出组织的所有属性
  581. listUnitAllAttribute: function (name) {
  582. getOrgActions();
  583. var data = { "unitList": getNameFlag(name) };
  584. var v = null;
  585. orgActions.listUnitAllAttribute(data, function (json) { v = json.data; }, null, false);
  586. return v;
  587. }
  588. };
  589. this.Action = (function () {
  590. var actions = [];
  591. return function (root, json) {
  592. var action = actions[root] || (actions[root] = new MWF.xDesktop.Actions.RestActions("", root, ""));
  593. action.getActions = function (callback) {
  594. if (!this.actions) this.actions = {};
  595. Object.merge(this.actions, json);
  596. if (callback) callback();
  597. };
  598. this.invoke = function (option) {
  599. action.invoke(option)
  600. }
  601. }
  602. })();
  603. this.service = {
  604. "jaxwsClient": {},
  605. "jaxrsClient": {}
  606. };
  607. var lookupAction = null;
  608. var getLookupAction = function (callback) {
  609. if (!lookupAction) {
  610. MWF.require("MWF.xDesktop.Actions.RestActions", function () {
  611. lookupAction = new MWF.xDesktop.Actions.RestActions("", "x_processplatform_assemble_surface", "");
  612. lookupAction.getActions = function (actionCallback) {
  613. this.actions = {
  614. //"lookup": {"uri": "/jaxrs/view/flag/{view}/application/flag/{application}"},
  615. //"getView": {"uri": "/jaxrs/view/{id}/design"}
  616. "lookup": { "uri": "/jaxrs/queryview/flag/{view}/application/flag/{application}/execute", "method": "PUT" },
  617. "getView": { "uri": "/jaxrs/queryview/flag/{view}/application/flag/{application}" }
  618. };
  619. if (actionCallback) actionCallback();
  620. }
  621. if (callback) callback();
  622. });
  623. } else {
  624. if (callback) callback();
  625. }
  626. };
  627. this.view = {
  628. "lookup": function (view, callback, async) {
  629. var filterList = { "filterList": (view.filter || null) };
  630. MWF.Actions.get("x_query_assemble_surface").loadView(view.view, view.application, filterList, function (json) {
  631. var data = {
  632. "grid": json.data.grid || json.data.groupGrid,
  633. "groupGrid": json.data.groupGrid
  634. };
  635. if (callback) callback(data);
  636. }, null, async);
  637. },
  638. "lookupV1": function (view, callback) {
  639. getLookupAction(function () {
  640. lookupAction.invoke({
  641. "name": "lookup", "async": true, "parameter": { "view": view.view, "application": view.application }, "success": function (json) {
  642. var data = {
  643. "grid": json.data.grid,
  644. "groupGrid": json.data.groupGrid
  645. };
  646. if (callback) callback(data);
  647. }.bind(this)
  648. });
  649. }.bind(this));
  650. },
  651. "select": function (view, callback, options) {
  652. if (view.view) {
  653. var viewJson = {
  654. "application": view.application || _form.json.application,
  655. "viewName": view.view || "",
  656. "isTitle": (view.isTitle === false) ? "no" : "yes",
  657. "select": (view.isMulti === false) ? "single" : "multi",
  658. "filter": view.filter
  659. };
  660. if (!options) options = {};
  661. options.width = view.width;
  662. options.height = view.height;
  663. options.title = view.caption;
  664. var width = options.width || "700";
  665. var height = options.height || "400";
  666. if (layout.mobile) {
  667. var size = document.body.getSize();
  668. width = size.x;
  669. height = size.y;
  670. options.style = "viewmobile";
  671. }
  672. width = width.toInt();
  673. height = height.toInt();
  674. var size = _form.app.content.getSize();
  675. var x = (size.x - width) / 2;
  676. var y = (size.y - height) / 2;
  677. if (x < 0) x = 0;
  678. if (y < 0) y = 0;
  679. if (layout.mobile) {
  680. x = 20;
  681. y = 0;
  682. }
  683. var _self = this;
  684. MWF.require("MWF.xDesktop.Dialog", function () {
  685. var dlg = new MWF.xDesktop.Dialog({
  686. "title": options.title || "select view",
  687. "style": options.style || "view",
  688. "top": y,
  689. "left": x - 20,
  690. "fromTop": y,
  691. "fromLeft": x - 20,
  692. "width": width,
  693. "height": height,
  694. "html": "<div style='height: 100%;'></div>",
  695. "maskNode": _form.app.content,
  696. "container": _form.app.content,
  697. "buttonList": [
  698. {
  699. "text": MWF.LP.process.button.ok,
  700. "action": function () {
  701. //if (callback) callback(_self.view.selectedItems);
  702. if (callback) callback(_self.view.getData());
  703. this.close();
  704. }
  705. },
  706. {
  707. "text": MWF.LP.process.button.cancel,
  708. "action": function () { this.close(); }
  709. }
  710. ]
  711. });
  712. dlg.show();
  713. if (layout.mobile) {
  714. var backAction = dlg.node.getElement(".MWF_dialod_Action_back");
  715. var okAction = dlg.node.getElement(".MWF_dialod_Action_ok");
  716. if (backAction) backAction.addEvent("click", function (e) {
  717. dlg.close();
  718. }.bind(this));
  719. if (okAction) okAction.addEvent("click", function (e) {
  720. //if (callback) callback(this.view.selectedItems);
  721. if (callback) callback(this.view.getData());
  722. dlg.close();
  723. }.bind(this));
  724. }
  725. MWF.xDesktop.requireApp("query.Query", "Viewer", function () {
  726. this.view = new MWF.xApplication.query.Query.Viewer(dlg.content.getFirst(), viewJson, { "style": "select" }, _form.app, _form.Macro);
  727. }.bind(this));
  728. }.bind(this));
  729. }
  730. }
  731. };
  732. //include 引用脚本
  733. //optionsOrName : {
  734. // type : "", 默认为portal, 可以为 portal process cms
  735. // application : "", 门户/流程/CMS的名称/别名/id, 默认为当前应用
  736. // name : "" // 脚本名称/别名/id
  737. //}
  738. //或者name: "" // 脚本名称/别名/id
  739. // if( !window.includedScripts ){
  740. // var includedScripts = window.includedScripts = [];
  741. // }else{
  742. // var includedScripts = window.includedScripts;
  743. // }
  744. var includedScripts = [];
  745. var _includeSingle = function( optionsOrName , callback, async){
  746. var options = optionsOrName;
  747. if( typeOf( options ) == "string" ){
  748. options = { name : options };
  749. }
  750. var name = options.name;
  751. var type = ( options.type && options.application ) ? options.type : "process";
  752. var application = options.application || _form.json.application;
  753. var key = type +"-" + application + "-" + name;
  754. if (includedScripts.indexOf( key )> -1){
  755. if (callback) callback.apply(this);
  756. return;
  757. }
  758. //if (includedScripts.indexOf( name )> -1){
  759. // if (callback) callback.apply(this);
  760. // return;
  761. //}
  762. var scriptAction;
  763. switch ( type ){
  764. case "portal" :
  765. if( this.scriptActionPortal ){
  766. scriptAction = this.scriptActionPortal;
  767. }else{
  768. MWF.require("MWF.xScript.Actions.PortalScriptActions", null, false);
  769. scriptAction = this.scriptActionPortal = new MWF.xScript.Actions.PortalScriptActions();
  770. }
  771. break;
  772. case "process" :
  773. if( this.scriptActionProcess ){
  774. scriptAction = this.scriptActionProcess;
  775. }else{
  776. MWF.require("MWF.xScript.Actions.ScriptActions", null, false);
  777. scriptAction = this.scriptActionProcess = new MWF.xScript.Actions.ScriptActions();
  778. }
  779. break;
  780. case "cms" :
  781. if( this.scriptActionCMS ){
  782. scriptAction = this.scriptActionCMS;
  783. }else{
  784. MWF.require("MWF.xScript.Actions.CMSScriptActions", null, false);
  785. scriptAction = this.scriptActionCMS = new MWF.xScript.Actions.CMSScriptActions();
  786. }
  787. break;
  788. }
  789. scriptAction.getScriptByName( application, name, includedScripts, function(json){
  790. if (json.data){
  791. includedScripts.push( key );
  792. includedScripts = includedScripts.concat(json.data.importedList);
  793. MWF.Macro.exec(json.data.text, this);
  794. if (callback) callback.apply(this);
  795. }else{
  796. if (callback) callback.apply(this);
  797. }
  798. }.bind(this), null, !!async);
  799. }
  800. this.include = function( optionsOrName , callback, async){
  801. if (o2.typeOf(optionsOrName)=="array"){
  802. if (!!async){
  803. var count = optionsOrName.length;
  804. var loaded = 0;
  805. optionsOrName.each(function(option){
  806. _includeSingle.apply(this, [option, function(){
  807. loaded++;
  808. if (loaded>=count) if (callback) callback.apply(this);;
  809. }.bind(this), true]);
  810. }.bind(this));
  811. }else{
  812. optionsOrName.each(function(option){
  813. _includeSingle.apply(this, [option]);
  814. if (callback) callback.apply(this);
  815. }.bind(this));
  816. }
  817. }else{
  818. _includeSingle.apply(this, [optionsOrName , callback, async])
  819. }
  820. };
  821. this.define = function (name, fun, overwrite) {
  822. var over = true;
  823. if (overwrite === false) over = false;
  824. var o = {};
  825. o[name] = { "value": fun, "configurable": over };
  826. MWF.defineProperties(this, o);
  827. }.bind(this);
  828. //如果前端事件有异步调用,想要在异步调用结束后继续运行页面加载,
  829. //可在调用前执行 var resolve = this.wait();
  830. //在异步调用结束后 执行 resolve.cb();
  831. //目前只有表单的queryload事件支持此方法。
  832. this.wait = function(){
  833. resolve = {};
  834. var setResolve = function(callback){
  835. resolve.cb = callback;
  836. }.bind(this);
  837. this.target.event_resolve = setResolve;
  838. return resolve;
  839. };
  840. //和this.wait配合使用,
  841. //如果没有异步,则resolve.cb方法不存在,
  842. //所以在回调中中使用this.goon();使表单继续加载
  843. this.goon = function(){
  844. this.target.event_resolve = null;
  845. };
  846. //仅前台对象-----------------------------------------
  847. //form
  848. this.page = this.form = {
  849. "getInfor": function () { return ev.pageInfor; },
  850. "infor": ev.pageInfor,
  851. "getApp": function () { return _form.app; },
  852. "app": _form.app,
  853. "node": function () { return _form.node; },
  854. //"readonly": _form.options.readonly,
  855. "get": function (name) { return (_form.all) ? _form.all[name] : null; },
  856. "getWidgetModule": function (widget, moduleName) {
  857. if (!_form.widgetModules || !_form.widgetModules[widget]) return null;
  858. var module = _form.widgetModules[widget][moduleName];
  859. return module || null;
  860. },
  861. "getField": function (name) { return _forms[name]; },
  862. "getAction": function () { return _form.workAction },
  863. "getDesktop": function () { return _form.app.desktop },
  864. "getData": function () { return new MWF.xScript.JSONData(_form.getData()); },
  865. //"save": function(callback){_form.saveWork(callback);},
  866. "close": function () { _form.closeWork(); },
  867. "print": function (application, form) {
  868. _form.printWork(application, form);
  869. },
  870. "confirm": function (type, title, text, width, height, ok, cancel, callback, mask, style) {
  871. // var p = MWF.getCenter({"x": width, "y": height});
  872. // e = {"event": {"clientX": p.x,"x": p.x,"clientY": p.y,"y": p.y}};
  873. // _form.confirm(type, e, title, text, width, height, ok, cancel, callback, mask, style);
  874. if ((arguments.length <= 1) || o2.typeOf(arguments[1]) === "string") {
  875. var p = MWF.getCenter({ "x": width, "y": height });
  876. e = { "event": { "clientX": p.x, "x": p.x, "clientY": p.y, "y": p.y } };
  877. _form.confirm(type, e, title, text, width, height, ok, cancel, callback, mask, style);
  878. } else {
  879. e = (arguments.length > 1) ? arguments[1] : null;
  880. title = (arguments.length > 2) ? arguments[2] : null;
  881. text = (arguments.length > 3) ? arguments[3] : null;
  882. width = (arguments.length > 4) ? arguments[4] : null;
  883. height = (arguments.length > 5) ? arguments[5] : null;
  884. ok = (arguments.length > 6) ? arguments[6] : null;
  885. cancel = (arguments.length > 7) ? arguments[7] : null;
  886. callback = (arguments.length > 8) ? arguments[8] : null;
  887. mask = (arguments.length > 9) ? arguments[9] : null;
  888. style = (arguments.length > 10) ? arguments[10] : null;
  889. _form.confirm(type, e, title, text, width, height, ok, cancel, callback, mask, style);
  890. }
  891. },
  892. "alert": function(type, title, text, width, height){
  893. _form.alert(type, title, text, width, height);
  894. },
  895. "notice": function (content, type, target, where, offset, option) {
  896. _form.notice(content, type, target, where, offset, option);
  897. },
  898. "addEvent": function (e, f) { _form.addEvent(e, f); },
  899. "openWindow": function (form, app) {
  900. _form.openWindow(form, app);
  901. },
  902. "toPage": function (name, par, nohis) {
  903. _form.app.toPage(name, par, nohis);
  904. },
  905. "toPortal": function (portal, page, par) {
  906. _form.app.toPortal(portal, page, par);
  907. },
  908. "openWork": function (id, completedId, title, options) {
  909. var op = options || {};
  910. op.workId = id;
  911. op.workCompletedId = completedId;
  912. op.docTitle = title;
  913. op.appId = "process.Work" + (op.workId || op.workCompletedId);
  914. return layout.desktop.openApplication(this.event, "process.Work", op);
  915. },
  916. "openJob": function (id, choice, options) {
  917. var workData = null;
  918. o2.Actions.get("x_processplatform_assemble_surface").listWorkByJob(id, function (json) {
  919. if (json.data) workData = json.data;
  920. }.bind(this), null, false);
  921. if (workData) {
  922. var len = workData.workList.length + workData.workCompletedList.length;
  923. if (len) {
  924. if (len > 1 && choice) {
  925. var node = new Element("div", { "styles": { "padding": "20px", "width": "500px" } }).inject(_form.node);
  926. workData.workList.each(function (work) {
  927. var workNode = new Element("div", {
  928. "styles": {
  929. "background": "#ffffff",
  930. "border-radius": "10px",
  931. "clear": "both",
  932. "margin-bottom": "10px",
  933. "height": "40px",
  934. "padding": "10px 10px"
  935. }
  936. }).inject(node);
  937. 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>" +
  938. "<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>" +
  939. "<div style='height: 20px; line-height: 20px; margin: 0px 40px'>" + work.title + "</div>" +
  940. "<div style='margin: 0px 40px'><div style='color:#999999; float: left; margin-right: 10px'>" + work.activityName + "</div>" +
  941. "<div style='color:#999999; float: left; margin-right: 10px'>" + work.activityArrivedTime + "</div>" +
  942. "<div style='color:#999999; float: left; margin-right: 10px'>" + (work.manualTaskIdentityText || "") + "</div></div>";
  943. workNode.set("html", html);
  944. var action = workNode.getElement(".MWFAction");
  945. action.store("work", work);
  946. action.addEvent("click", function (e) {
  947. var work = e.target.retrieve("work");
  948. if (work) this.openWork(work.id, null, work.title, options);
  949. dlg.close();
  950. }.bind(this));
  951. }.bind(this));
  952. workData.workCompletedList.each(function (work) {
  953. var workNode = new Element("div", {
  954. "styles": {
  955. "background": "#ffffff",
  956. "border-radius": "10px",
  957. "clear": "both",
  958. "margin-bottom": "10px",
  959. "height": "40px",
  960. "padding": "10px 10px"
  961. }
  962. }).inject(node);
  963. 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>" +
  964. "<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>" +
  965. "<div style='height: 20px; line-height: 20px; margin: 0px 40px'>" + work.title + "</div>" +
  966. "<div style='margin: 0px 40px'><div style='color:#999999; float: left; margin-right: 10px'>" + o2.LP.widget.workcompleted + "</div>" +
  967. "<div style='color:#999999; float: left; margin-right: 10px'>" + work.completedTime + "</div>";
  968. workNode.set("html", html);
  969. var action = workNode.getElement(".MWFAction");
  970. action.store("work", work);
  971. action.addEvent("click", function (e) {
  972. var work = e.target.retrieve("work");
  973. if (work) this.openWork(null, work.id, work.title, options);
  974. dlg.close();
  975. }.bind(this));
  976. }.bind(this));
  977. var height = node.getSize().y + 20;
  978. if (height > 600) height = 600;
  979. var dlg = o2.DL.open({
  980. "title": o2.LP.widget.choiceWork,
  981. "style": "user",
  982. "isResize": false,
  983. "content": node,
  984. "buttonList": [
  985. {
  986. "type": "cancel",
  987. "text": o2.LP.widget.close,
  988. "action": function () { dlg.close(); }
  989. }
  990. ]
  991. });
  992. } else {
  993. if (workData.workList.length) {
  994. var work = workData.workList[0];
  995. return this.openWork(work.id, null, work.title, options);
  996. } else {
  997. var work = workData.workCompletedList[0];
  998. return this.openWork(null, work.id, work.title, options);
  999. }
  1000. }
  1001. }
  1002. }
  1003. },
  1004. "openDocument": function (id, title, options) {
  1005. var op = options || {};
  1006. op.documentId = id;
  1007. op.docTitle = title || "";
  1008. layout.desktop.openApplication(this.event, "cms.Document", op);
  1009. },
  1010. "openPortal": function (name, page, par) {
  1011. var action = MWF.Actions.get("x_portal_assemble_surface");
  1012. action.getApplication(name, function (json) {
  1013. if (json.data) {
  1014. if (page) {
  1015. action.getPageByName(page, json.data.id, function (pageJson) {
  1016. layout.desktop.openApplication(null, "portal.Portal", {
  1017. "portalId": json.data.id,
  1018. "pageId": (pageJson.data) ? pageJson.data.id : "",
  1019. "parameters": par,
  1020. "appId": "portal.Portal" + json.data.id
  1021. })
  1022. });
  1023. } else {
  1024. layout.desktop.openApplication(null, "portal.Portal", {
  1025. "portalId": json.data.id,
  1026. "parameters": par,
  1027. "appId": "portal.Portal" + json.data.id
  1028. })
  1029. }
  1030. }
  1031. });
  1032. },
  1033. "openCMS": function (name) {
  1034. var action = MWF.Actions.get("x_cms_assemble_control");
  1035. action.getColumn(name, function (json) {
  1036. if (json.data) {
  1037. layout.desktop.openApplication(null, "cms.Module", {
  1038. "columnId": json.data.id,
  1039. "appId": "cms.Module" + json.data.id
  1040. });
  1041. }
  1042. });
  1043. },
  1044. "openProcess": function (name) {
  1045. var action = MWF.Actions.get("x_processplatform_assemble_surface");
  1046. action.getApplication(name, function (json) {
  1047. if (json.data) {
  1048. layout.desktop.openApplication(null, "process.Application", {
  1049. "id": json.data.id,
  1050. "appId": "process.Application" + json.data.id
  1051. });
  1052. }
  1053. });
  1054. },
  1055. "openApplication": function (name, options) {
  1056. layout.desktop.openApplication(null, name, options);
  1057. },
  1058. "createDocument": function (columnOrOptions, category, data, identity, callback, target, latest, selectColumnEnable, ignoreTitle) {
  1059. var column = columnOrOptions;
  1060. var onAfterPublish, onPostPublish;
  1061. if (typeOf(columnOrOptions) == "object") {
  1062. column = columnOrOptions.column;
  1063. category = columnOrOptions.category;
  1064. data = columnOrOptions.data;
  1065. identity = columnOrOptions.identity;
  1066. callback = columnOrOptions.callback;
  1067. target = columnOrOptions.target;
  1068. latest = columnOrOptions.latest;
  1069. selectColumnEnable = columnOrOptions.selectColumnEnable;
  1070. ignoreTitle = columnOrOptions.ignoreTitle;
  1071. onAfterPublish = columnOrOptions.onAfterPublish;
  1072. onPostPublish = columnOrOptions.onPostPublish;
  1073. }
  1074. if (target) {
  1075. if (layout.app && layout.app.inBrowser) {
  1076. layout.app.content.empty();
  1077. layout.app = null;
  1078. }
  1079. }
  1080. MWF.xDesktop.requireApp("cms.Index", "Newer", function () {
  1081. var starter = new MWF.xApplication.cms.Index.Newer(null, null, _form.app, null, {
  1082. "documentData": data,
  1083. "identity": identity,
  1084. "ignoreTitle": ignoreTitle === true,
  1085. "ignoreDrafted": latest === false,
  1086. "selectColumnEnable": !category || selectColumnEnable === true,
  1087. "restrictToColumn": !!category && selectColumnEnable !== true,
  1088. "categoryFlag": category, //category id or name
  1089. "columnFlag": column, //column id or name,
  1090. "onStarted": function (documentId, data) {
  1091. if (callback) callback();
  1092. },
  1093. "onPostPublish": function () {
  1094. if(onPostPublish)onPostPublish();
  1095. },
  1096. "onAfterPublish": function () {
  1097. if(onAfterPublish)onAfterPublish();
  1098. }
  1099. });
  1100. starter.load();
  1101. })
  1102. },
  1103. "startProcess": function (app, process, data, identity, callback, target, latest) {
  1104. if (arguments.length > 2) {
  1105. for (var i = 2; i < arguments.length; i++) {
  1106. if (typeOf(arguments[i]) == "boolean") {
  1107. target = arguments[i];
  1108. break;
  1109. }
  1110. }
  1111. }
  1112. if (target) {
  1113. if (layout.app && layout.app.inBrowser) {
  1114. //layout.app.content.empty();
  1115. layout.app.$openWithSelf = true;
  1116. }
  1117. }
  1118. var action = MWF.Actions.get("x_processplatform_assemble_surface").getProcessByName(process, app, function (json) {
  1119. if (json.data) {
  1120. MWF.xDesktop.requireApp("process.TaskCenter", "ProcessStarter", function () {
  1121. var starter = new MWF.xApplication.process.TaskCenter.ProcessStarter(json.data, _form.app, {
  1122. "workData": data,
  1123. "identity": identity,
  1124. "latest": latest,
  1125. "onStarted": function (data, title, processName) {
  1126. var currentTask = [];
  1127. data.each(function (work) {
  1128. if (work.currentTaskIndex != -1) currentTask.push(work.taskList[work.currentTaskIndex].work);
  1129. }.bind(this));
  1130. if (currentTask.length == 1) {
  1131. var options = { "workId": currentTask[0], "appId": currentTask[0] };
  1132. layout.desktop.openApplication(null, "process.Work", options);
  1133. } else { }
  1134. if (callback) callback(data);
  1135. }.bind(this)
  1136. });
  1137. starter.load();
  1138. }.bind(this));
  1139. }
  1140. });
  1141. },
  1142. "parameters": _form.options.parameters,
  1143. "getWidgetPrameters": function () {
  1144. if (!this.target) return null;
  1145. if (!this.target.widget) return null;
  1146. if (!this.widgetParameters) return null;
  1147. var pageId = this.target.widget.json.id;
  1148. return this.widgetParameters[pageId];
  1149. }.bind(this)
  1150. //"app": _form.app
  1151. };
  1152. this.form.currentRouteName = _form.json.currentRouteName;
  1153. this.form.opinion = _form.json.opinion;
  1154. this.target = ev.target;
  1155. this.event = ev.event;
  1156. this.status = ev.status;
  1157. this.session = layout.desktop.session;
  1158. this.Actions = o2.Actions;
  1159. this.query = function (option) {
  1160. // options = {
  1161. // "name": "statementName",
  1162. // "data": "json data",
  1163. // "firstResult": 1,
  1164. // "maxResults": 100,
  1165. // "success": function(){},
  1166. // "error": function(){},
  1167. // "async": true or false, default is true
  1168. // }
  1169. if (option) {
  1170. var json = (option.data) || {};
  1171. if (option.firstResult) json.firstResult = option.firstResult.toInt();
  1172. if (option.maxResults) json.maxResults = option.maxResults.toInt();
  1173. o2.Actions.get("x_query_assemble_surface").executeStatement(option.name, json, success, error, options.async);
  1174. }
  1175. };
  1176. this.Table = MWF.xScript.createTable();
  1177. };
  1178. MWF.xScript.createTable = function(){
  1179. return function(name){
  1180. this.name = name;
  1181. this.action = o2.Actions.get("x_query_assemble_surface");
  1182. this.listRowNext = function(id, count, success, error, async){
  1183. this.action.listRowNext(this.name, id, count, success, error, async);
  1184. };
  1185. this.listRowPrev = function(id, count, success, error, async){
  1186. this.action.listRowPrev(this.name, id, count, success, error, async);
  1187. };
  1188. this.listRowPrev = function(id, count, success, error, async){
  1189. this.action.listRowPrev(this.name, id, count, success, error, async);
  1190. };
  1191. this.listRowSelectWhere = function(where, success, error, async){
  1192. this.action.listRowSelectWhere(this.name, where, success, error, async);
  1193. };
  1194. this.listRowCountWhere = function(where, success, error, async){
  1195. this.action.listRowCountWhere(this.name, where, success, error, async);
  1196. };
  1197. this.deleteRow = function(id, success, error, async){
  1198. this.action.deleteRow(this.name, id, success, error, async);
  1199. };
  1200. this.deleteAllRow = function(success, error, async){
  1201. this.action.deleteAllRow(this.name, success, error, async);
  1202. };
  1203. this.getRow = function(id, success, error, async){
  1204. this.action.getRow(this.name, id, success, error, async);
  1205. };
  1206. this.insertRow = function(data, success, error, async){
  1207. this.action.insertRow(this.name, data, success, error, async);
  1208. };
  1209. this.updateRow = function(id, data, success, error, async){
  1210. this.action.updateRow(this.name, id, data, success, error, async);
  1211. };
  1212. }
  1213. };
  1214. MWF.xScript.JSONData = function(data, callback, key, parent, _form){
  1215. var getter = function(data, callback, k, _self){
  1216. return function(){return (["array","object"].indexOf(typeOf(data[k]))===-1) ? data[k] : new MWF.xScript.JSONData(data[k], callback, k, _self, _form);};
  1217. };
  1218. var setter = function(data, callback, k, _self){
  1219. return function(v){
  1220. data[k] = v;
  1221. //debugger;
  1222. //this.add(k, v, true);
  1223. if (callback) callback(data, k, _self);
  1224. }
  1225. };
  1226. var define = function(){
  1227. var o = {};
  1228. for (var k in data) o[k] = {"configurable": true, "enumerable": true, "get": getter.apply(this, [data, callback, k, this]),"set": setter.apply(this, [data, callback, k, this])};
  1229. o["length"] = {"get": function(){return Object.keys(data).length;}};
  1230. MWF.defineProperties(this, o);
  1231. var methods = {
  1232. "getKey": {"value": function(){ return key; }},
  1233. "getParent": {"value": function(){ return parent; }},
  1234. "toString": {"value": function() { return data.toString();}},
  1235. "setSection": {"value": function(newKey, newValue){
  1236. this.add(newKey, newValue, true);
  1237. try {
  1238. var path = [this.getKey()];
  1239. p = this.getParent();
  1240. while (p && p.getKey()){
  1241. path.unshift(p.getKey());
  1242. p = p.getParent();
  1243. }
  1244. if (path.length) _form.sectionListObj[path.join(".")] = newKey;
  1245. }catch(e){
  1246. debugger;
  1247. }
  1248. }},
  1249. "add": {"value": function(newKey, newValue, overwrite){
  1250. var flag = true;
  1251. var type = typeOf(data);
  1252. if (type==="array"){
  1253. if (arguments.length<2){
  1254. data.push(newKey);
  1255. newValue = newKey;
  1256. newKey = data.length-1;
  1257. }else{
  1258. if (!newKey && newKey!==0){
  1259. data.push(newValue);
  1260. newKey = data.length-1;
  1261. }else{
  1262. flag = false;
  1263. }
  1264. }
  1265. if (flag){
  1266. var o = {};
  1267. o[newKey] = {"configurable": true, "enumerable": true, "get": getter.apply(this, [data, callback, newKey, this]),"set": setter.apply(this, [data, callback, newKey, this])};
  1268. MWF.defineProperties(this, o);
  1269. }
  1270. this[newKey] = newValue;
  1271. }else if (type==="object"){
  1272. if (!this.hasOwnProperty(newKey)){
  1273. data[newKey] = newValue;
  1274. if (flag){
  1275. var o = {};
  1276. o[newKey] = {"configurable": true, "enumerable": true, "get": getter.apply(this, [data, callback, newKey, this]),"set": setter.apply(this, [data, callback, newKey, this])};
  1277. MWF.defineProperties(this, o);
  1278. }
  1279. this[newKey] = newValue;
  1280. }else{
  1281. if (overwrite) this[newKey] = newValue;
  1282. }
  1283. }
  1284. return this[newKey];
  1285. }},
  1286. "del": {"value": function(delKey){
  1287. if (!this.hasOwnProperty(delKey)) return null;
  1288. delete data[delKey];
  1289. delete this[delKey];
  1290. return this;
  1291. }}
  1292. };
  1293. MWF.defineProperties(this, methods);
  1294. };
  1295. var type = typeOf(data);
  1296. if (type==="object" || type==="array") define.apply(this);
  1297. };
  1298. var dictLoaded = {};
  1299. MWF.xScript.createDict = function(application){
  1300. //optionsOrName : {
  1301. // type : "", //默认为process, 可以为 process cms
  1302. // application : "", //流程/CMS的名称/别名/id, 默认为当前应用
  1303. // name : "", // 数据字典名称/别名/id
  1304. // enableAnonymous : false //允许在未登录的情况下读取CMS的数据字典
  1305. //}
  1306. //或者name: "" // 数据字典名称/别名/id
  1307. return function(optionsOrName){
  1308. var options = optionsOrName;
  1309. if( typeOf( options ) == "string" ){
  1310. options = { name : options };
  1311. }
  1312. var name = this.name = options.name;
  1313. var type = ( options.type && options.application ) ? options.type : "process";
  1314. var applicationId = options.application || application;
  1315. var enableAnonymous = options.enableAnonymous || false;
  1316. var key = name+type+applicationId+enableAnonymous
  1317. if (!dictLoaded[key]) dictLoaded[key] = {};
  1318. this.dictData = dictLoaded[key];
  1319. //MWF.require("MWF.xScript.Actions.DictActions", null, false);
  1320. if( type == "cms" ){
  1321. var action = MWF.Actions.get("x_cms_assemble_control");
  1322. }else{
  1323. var action = MWF.Actions.get("x_processplatform_assemble_surface");
  1324. }
  1325. var encodePath = function( path ){
  1326. var arr = path.split(/\./g);
  1327. var ar = arr.map(function(v){
  1328. return encodeURIComponent(v);
  1329. });
  1330. return ar.join("/");
  1331. };
  1332. this.get = function(path, success, failure, async){
  1333. var value = null;
  1334. if (path){
  1335. if (this.dictData[path]){
  1336. if (success) success(this.dictData[path]);
  1337. return this.dictData[path];
  1338. }
  1339. var p = encodePath( path );
  1340. //var p = path.replace(/\./g, "/");
  1341. action[ ( (enableAnonymous && type == "cms") ? "getDictDataAnonymous" : "getDictData" ) ](encodeURIComponent(this.name), applicationId, p, function(json){
  1342. value = json.data;
  1343. this.dictData[path] = value;
  1344. if (success) success(json.data);
  1345. }.bind(this), function(xhr, text, error){
  1346. if (failure) failure(xhr, text, error);
  1347. }, !!async, false);
  1348. }else{
  1349. if (this.dictData["root"]){
  1350. if (success) success(this.dictData["root"]);
  1351. return this.dictData["root"];
  1352. }
  1353. action[ ( (enableAnonymous && type == "cms") ? "getDictRootAnonymous" : "getDictRoot" ) ](this.name, applicationId, function(json){
  1354. value = json.data;
  1355. this.dictData["root"] = value;
  1356. if (success) success(json.data);
  1357. }.bind(this), function(xhr, text, error){
  1358. if (failure) failure(xhr, text, error);
  1359. }, !!async);
  1360. }
  1361. return value;
  1362. };
  1363. this.set = function(path, value, success, failure){
  1364. var p = encodePath( path );
  1365. //var p = path.replace(/\./g, "/");
  1366. action.setDictData(encodeURIComponent(this.name), applicationId, p, value, function(json){
  1367. if (success) success(json.data);
  1368. }, function(xhr, text, error){
  1369. if (failure) failure(xhr, text, error);
  1370. }, false, false);
  1371. };
  1372. this.add = function(path, value, success, failure){
  1373. var p = encodePath( path );
  1374. //var p = path.replace(/\./g, "/");
  1375. action.addDictData(encodeURIComponent(this.name), applicationId, p, value, function(json){
  1376. if (success) success(json.data);
  1377. }, function(xhr, text, error){
  1378. if (failure) failure(xhr, text, error);
  1379. }, false, false);
  1380. };
  1381. this["delete"] = function(path, success, failure){
  1382. var p = encodePath( path );
  1383. //var p = path.replace(/\./g, "/");
  1384. action.deleteDictData(encodeURIComponent(this.name), applicationId, p, function(json){
  1385. if (success) success(json.data);
  1386. }, function(xhr, text, error){
  1387. if (failure) failure(xhr, text, error);
  1388. }, false, false);
  1389. };
  1390. this.destory = this["delete"];
  1391. }
  1392. };