PageEnvironment.js 94 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211
  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, async){
  126. getOrgActions();
  127. var data = {"groupList": getNameFlag(name)};
  128. var v = null;
  129. var cb = function(json){
  130. v = json.data;
  131. v = (v && v.length===1) ? v[0] : v
  132. if (async && o2.typeOf(async)=="function") return async(v);
  133. return v;
  134. };
  135. var promise = orgActions.listGroup(data, cb, null, !!async);
  136. return (!!async) ? promise : v;
  137. // var v = null;
  138. // orgActions.listGroup(data, function(json){v = json.data;}, null, false);
  139. // return (v && v.length===1) ? v[0] : v;
  140. },
  141. //查询下级群组--返回群组的对象数组
  142. //nested 布尔 true嵌套下级;false直接下级;默认false;
  143. listSubGroup: function(name, nested, async){
  144. getOrgActions();
  145. var data = {"groupList": getNameFlag(name)};
  146. var v = null;
  147. // var cb = ((async && o2.typeOf(async)=="function") ? (async.isAG ? async : async.ag()) : null) || function(json){
  148. // v = json.data;
  149. // return v;
  150. // }.ag().catch(function(json){ return json; });
  151. var cb = function(json){
  152. v = json.data;
  153. if (async && o2.typeOf(async)=="function") return async(v);
  154. return v;
  155. };
  156. var promise;
  157. if (nested){
  158. promise = orgActions.listSubGroupNested(data, cb, null, !!async);
  159. }else{
  160. promise = orgActions.listSubGroupDirect(data, cb, null, !!async);
  161. }
  162. return (!!async) ? promise : v;
  163. // var v = null;
  164. // if (nested){
  165. // orgActions.listSubGroupNested(data, function(json){v = json.data;}, null, false);
  166. // }else{
  167. // orgActions.listSubGroupDirect(data, function(json){v = json.data;}, null, false);
  168. // }
  169. // return v;
  170. },
  171. //查询上级群组--返回群组的对象数组
  172. //nested 布尔 true嵌套上级;false直接上级;默认false;
  173. listSupGroup:function(name, nested, async){
  174. getOrgActions();
  175. var data = {"groupList": getNameFlag(name)};
  176. var v = null;
  177. var cb = function(json){
  178. v = json.data;
  179. if (async && o2.typeOf(async)=="function") return async(v);
  180. return v;
  181. };
  182. var promise
  183. if (nested){
  184. var promise = orgActions.listSupGroupNested(data, cb, null, !!async);
  185. }else{
  186. var promise = orgActions.listSupGroupDirect(data, cb, null, !!async);
  187. }
  188. return (!!async) ? promise : v;
  189. // var v = null;
  190. // if (nested){
  191. // orgActions.listSupGroupNested(data, function(json){v = json.data;}, null, false);
  192. // }else{
  193. // orgActions.listSupGroupDirect(data, function(json){v = json.data;}, null, false);
  194. // }
  195. // return v;
  196. },
  197. //人员所在群组(嵌套)--返回群组的对象数组
  198. listGroupWithPerson:function(name, async){
  199. getOrgActions();
  200. var data = {"personList": getNameFlag(name)};
  201. var v = null;
  202. var cb = function(json){
  203. v = json.data;
  204. if (async && o2.typeOf(async)=="function") return async(v);
  205. return v;
  206. };
  207. var promise = orgActions.listGroupWithPerson(data, cb, null, !!async);
  208. return (!!async) ? promise : v;
  209. // var v = null;
  210. // orgActions.listGroupWithPerson(data, function(json){v = json.data;}, null, false);
  211. // return v;
  212. },
  213. //群组是否拥有角色--返回true, false
  214. groupHasRole: function(name, role, async){
  215. getOrgActions();
  216. nameFlag = (typeOf(name)==="object") ? (name.distinguishedName || name.id || name.unique || name.name) : name;
  217. var data = {"group":nameFlag,"roleList":getNameFlag(role)};
  218. var v = false;
  219. var cb = function(json){
  220. v = json.data.value;
  221. if (async && o2.typeOf(async)=="function") return async(v);
  222. return v;
  223. };
  224. var promise = orgActions.groupHasRole(data, cb, null, !!async);
  225. return (!!async) ? promise : v;
  226. // var v = false;
  227. // orgActions.groupHasRole(data, function(json){v = json.data.value;}, null, false);
  228. // return v;
  229. },
  230. //角色***************
  231. //获取角色--返回角色的对象数组
  232. getRole: function(name, async){
  233. getOrgActions();
  234. var data = {"roleList": getNameFlag(name)};
  235. var v = null;
  236. var cb = function(json){
  237. v = json.data;
  238. v = (v && v.length===1) ? v[0] : v;
  239. if (async && o2.typeOf(async)=="function") return async(v);
  240. return v;
  241. };
  242. var promise = orgActions.listRole(data, cb, null, !!async);
  243. return (!!async) ? promise : v;
  244. // var v = null;
  245. // orgActions.listRole(data, function(json){v = json.data;}, null, false);
  246. // return (v && v.length===1) ? v[0] : v;
  247. },
  248. //人员所有角色(嵌套)--返回角色的对象数组
  249. listRoleWithPerson:function(name, async){
  250. getOrgActions();
  251. var data = {"personList": getNameFlag(name)};
  252. var v = null;
  253. var cb = function(json){
  254. v = json.data;
  255. if (async && o2.typeOf(async)=="function") return async(v);
  256. return v;
  257. };
  258. var promise = orgActions.listRoleWithPerson(data, cb, null, !!async);
  259. return (!!async) ? promise : v;
  260. // var v = null;
  261. // orgActions.listRoleWithPerson(data, function(json){v = json.data;}, null, false);
  262. // return v;
  263. },
  264. //人员***************
  265. //人员是否拥有角色--返回true, false
  266. personHasRole: function(name, role, async){
  267. getOrgActions();
  268. nameFlag = (typeOf(name)==="object") ? (name.distinguishedName || name.id || name.unique || name.name) : name;
  269. var data = {"person":nameFlag,"roleList":getNameFlag(role)};
  270. var v = false;
  271. var cb = function(json){
  272. v = json.data.value;
  273. if (async && o2.typeOf(async)=="function") return async(v);
  274. return v;
  275. };
  276. var promise = orgActions.listRoleWithPerson(data, cb, null, !!async);
  277. return (!!async) ? promise : v;
  278. // var v = false;
  279. // orgActions.personHasRole(data, function(json){v = json.data.value;}, null, false);
  280. // return v;
  281. },
  282. //获取人员--返回人员的对象数组
  283. getPerson: function(name, async){
  284. getOrgActions();
  285. var data = {"personList": getNameFlag(name)};
  286. var v = null;
  287. var cb = function(json){
  288. v = json.data;
  289. v = (v && v.length===1) ? v[0] : v;
  290. if (async && o2.typeOf(async)=="function") return async(v);
  291. return v;
  292. };
  293. var promise = orgActions.listPerson(data, cb, null, !!async);
  294. return (!!async) ? promise : v;
  295. // var v = null;
  296. // orgActions.listPerson(data, function(json){v = json.data;}, null, false);
  297. // return (v && v.length===1) ? v[0] : v;
  298. },
  299. //查询下级人员--返回人员的对象数组
  300. //nested 布尔 true嵌套下级;false直接下级;默认false;
  301. listSubPerson: function(name, nested, async){
  302. getOrgActions();
  303. var data = {"personList": getNameFlag(name)};
  304. var v = null;
  305. var cb = function(json){
  306. v = json.data;
  307. if (async && o2.typeOf(async)=="function") return async(v);
  308. return v;
  309. };
  310. var promise;
  311. if (nested){
  312. promise = orgActions.listPersonSubNested(data, cb, null, !!async);
  313. }else{
  314. promise = orgActions.listPersonSubDirect(data, cb, null, !!async);
  315. }
  316. return (!!async) ? promise : v;
  317. },
  318. //查询上级人员--返回人员的对象数组
  319. //nested 布尔 true嵌套上级;false直接上级;默认false;
  320. listSupPerson: function(name, nested, async){
  321. getOrgActions();
  322. var data = {"personList": getNameFlag(name)};
  323. var v = null;
  324. var cb = function(json){
  325. v = json.data;
  326. if (async && o2.typeOf(async)=="function") return async(v);
  327. return v;
  328. };
  329. var promise;
  330. if (nested){
  331. promise = orgActions.listPersonSupNested(data, cb, null, !!async);
  332. }else{
  333. promise = orgActions.listPersonSupDirect(data, cb, null, !!async);
  334. }
  335. return (!!async) ? promise : v;
  336. },
  337. //获取群组的所有人员--返回人员的对象数组
  338. listPersonWithGroup: function(name, async){
  339. getOrgActions();
  340. var data = {"groupList": getNameFlag(name)};
  341. var v = null;
  342. var cb = function(json){
  343. v = json.data;
  344. if (async && o2.typeOf(async)=="function") return async(v);
  345. return v;
  346. };
  347. var promise = orgActions.listPersonWithGroup(data, cb, null, !!async);
  348. return (!!async) ? promise : v;
  349. },
  350. //获取角色的所有人员--返回人员的对象数组
  351. listPersonWithRole: function(name, async){
  352. getOrgActions();
  353. var data = {"roleList": getNameFlag(name)};
  354. var v = null;
  355. var cb = function(json){
  356. v = json.data;
  357. if (async && o2.typeOf(async)=="function") return async(v);
  358. return v;
  359. };
  360. var promise
  361. promise = orgActions.listPersonWithRole(data, cb, null, !!async);
  362. return (!!async) ? promise : v;
  363. },
  364. //获取身份的所有人员--返回人员的对象数组
  365. listPersonWithIdentity: function(name, async){
  366. getOrgActions();
  367. var data = {"identityList": getNameFlag(name)};
  368. var v = null;
  369. var cb = function(json){
  370. v = json.data;
  371. if (async && o2.typeOf(async)=="function") return async(v);
  372. return v;
  373. };
  374. var promise = orgActions.listPersonWithIdentity(data, cb, null, !!async);
  375. return (!!async) ? promise : v;
  376. },
  377. //获取身份的所有人员--返回人员的对象数组或人员对象
  378. getPersonWithIdentity: function(name, async){
  379. getOrgActions();
  380. var data = {"identityList": getNameFlag(name)};
  381. var v = null;
  382. var cb = function(json){
  383. v = json.data;
  384. v = (v && v.length===1) ? v[0] : v;
  385. if (async && o2.typeOf(async)=="function") return async(v);
  386. return v;
  387. };
  388. var promise = orgActions.listPersonWithIdentity(data, cb, null, !!async);
  389. return (!!async) ? promise : v;
  390. },
  391. //查询组织成员的人员--返回人员的对象数组
  392. //nested 布尔 true嵌套的所有成员;false直接成员;默认false;
  393. listPersonWithUnit: function(name, nested, async){
  394. getOrgActions();
  395. var data = {"unitList": getNameFlag(name)};
  396. var v = null;
  397. var cb = function(json){
  398. v = json.data;
  399. if (async && o2.typeOf(async)=="function") return async(v);
  400. return v;
  401. };
  402. var promise;
  403. if (nested){
  404. promise = orgActions.listPersonWithUnitNested(data, cb, null, !!async);
  405. }else{
  406. promise = orgActions.listPersonWithUnitDirect(data, cb, null, !!async);
  407. }
  408. return (!!async) ? promise : v;
  409. },
  410. //根据属性查询人员--返回人员的对象数组
  411. //name string 属性名
  412. //value string 属性值
  413. listPersonWithAttribute: function(name, value, async){
  414. getOrgActions();
  415. var data = {"name": name, "attribute": value};
  416. var v = null;
  417. var cb = function(json){
  418. v = json.data;
  419. if (async && o2.typeOf(async)=="function") return async(v);
  420. return v;
  421. };
  422. var promise = orgActions.listPersonWithAttribute(data, cb, null, !!async);
  423. return (!!async) ? promise : v;
  424. },
  425. //根据属性查询人员--返回人员的全称数组
  426. //name string 属性名
  427. //value string 属性值
  428. listPersonNameWithAttribute: function(name, value, async){
  429. getOrgActions();
  430. var data = {"name": name, "attribute": value};
  431. var v = null;
  432. var cb = function(json){
  433. v = json.data.personList;
  434. if (async && o2.typeOf(async)=="function") return async(v);
  435. return v;
  436. };
  437. var promise = orgActions.listPersonWithAttributeValue(data, cb, null, !!async);
  438. return (!!async) ? promise : v;
  439. },
  440. //人员属性************
  441. //添加人员属性值(在属性中添加values值,如果没有此属性,则创建一个)
  442. appendPersonAttribute: function(person, attr, values, success, failure, async){
  443. getOrgActions();
  444. var personFlag = (typeOf(person)==="object") ? (person.distinguishedName || person.id || person.unique || person.name) : person;
  445. var data = {"attributeList":values,"name":attr,"person":personFlag};
  446. var cb = function(json){
  447. if (success) return success(json);
  448. }.ag().catch(function(xhr, text, error){
  449. if (failure) return failure(xhr, text, error);
  450. });
  451. orgActions.appendPersonAttribute(data, cb, null, !!async);
  452. },
  453. //设置人员属性值(将属性值修改为values,如果没有此属性,则创建一个)
  454. setPersonAttribute: function(person, attr, values, success, failure, async){
  455. getOrgActions();
  456. var personFlag = (typeOf(person)==="object") ? (person.distinguishedName || person.id || person.unique || person.name) : person;
  457. var data = {"attributeList":values,"name":attr,"person":personFlag};
  458. var cb = function(json){
  459. if (success) return success(json);
  460. }.ag().catch(function(xhr, text, error){
  461. if (failure) return failure(xhr, text, error);
  462. });
  463. orgActions.setPersonAttribute(data, cb, null, !!async);
  464. },
  465. //获取人员属性值
  466. getPersonAttribute: function(person, attr, async){
  467. getOrgActions();
  468. var personFlag = (typeOf(person)==="object") ? (person.distinguishedName || person.id || person.unique || person.name) : person;
  469. var data = {"name":attr,"person":personFlag};
  470. var v = null;
  471. var cb = function(json){
  472. v = json.data.attributeList;
  473. if (async && o2.typeOf(async)=="function") return async(v);
  474. return v;
  475. };
  476. var promise = orgActions.getPersonAttribute(data, cb, null, !!async);
  477. return (!!async) ? promise : v;
  478. },
  479. //列出人员所有属性的名称
  480. listPersonAttributeName: function(name, async){
  481. getOrgActions();
  482. var data = {"personList":getNameFlag(name)};
  483. var v = null;
  484. var cb = function(json){
  485. v = json.data.nameList;
  486. if (async && o2.typeOf(async)=="function") return async(v);
  487. return v;
  488. };
  489. var promise = orgActions.listPersonAttributeName(data, cb, null, !!async);
  490. return (!!async) ? promise : v;
  491. },
  492. //列出人员的所有属性
  493. listPersonAllAttribute: function(name, async){
  494. getOrgActions();
  495. var data = {"personList":getNameFlag(name)};
  496. var v = null;
  497. var cb = function(json){
  498. v = json.data;
  499. if (async && o2.typeOf(async)=="function") return async(v);
  500. return v;
  501. };
  502. var promise = orgActions.listPersonAllAttribute(data, cb, null, !!async);
  503. return (!!async) ? promise : v;
  504. },
  505. //身份**********
  506. //获取身份
  507. getIdentity: function(name, async){
  508. getOrgActions();
  509. var data = {"identityList":getNameFlag(name)};
  510. var v = null;
  511. var cb = function(json){
  512. v = json.data;
  513. v = (v && v.length===1) ? v[0] : v;
  514. if (async && o2.typeOf(async)=="function") return async(v);
  515. return v;
  516. };
  517. var promise = orgActions.listIdentity(data, cb, null, !!async);
  518. return (!!async) ? promise : v;
  519. },
  520. //列出人员的身份
  521. listIdentityWithPerson: function(name, async){
  522. getOrgActions();
  523. var data = {"personList":getNameFlag(name)};
  524. var v = null;
  525. var cb = function(json){
  526. v = json.data;
  527. if (async && o2.typeOf(async)=="function") return async(v);
  528. return v;
  529. };
  530. var promise = orgActions.listIdentityWithPerson(data, cb, null, !!async);
  531. return (!!async) ? promise : v;
  532. },
  533. //查询组织成员身份--返回身份的对象数组
  534. //nested 布尔 true嵌套的所有成员;false直接成员;默认false;
  535. listIdentityWithUnit: function(name, nested, async){
  536. getOrgActions();
  537. var data = {"unitList": getNameFlag(name)};
  538. var v = null;
  539. // var cb = function(json){
  540. // v = json.data;
  541. // if (async && o2.typeOf(async)=="function") return async(v);
  542. // return v;
  543. // }.ag().catch(function(json){ return json; });
  544. var cb = function(json){
  545. v = json.data;
  546. if (async && o2.typeOf(async)=="function") return async(v);
  547. return v;
  548. };
  549. var method = (nested) ? "listIdentityWithUnitNested" : "listIdentityWithUnitDirect";
  550. var promise = orgActions[method](data, cb, null, !!async);
  551. promise.name = "org";
  552. //
  553. // if (nested){
  554. // orgActions.listIdentityWithUnitNested(data, cb, null, !!async);
  555. // }else{
  556. // orgActions.listIdentityWithUnitDirect(data, cb, null, !!async);
  557. // }
  558. return (!!async) ? promise : v;
  559. },
  560. //组织**********
  561. //获取组织
  562. getUnit: function(name, async){
  563. getOrgActions();
  564. var data = {"unitList":getNameFlag(name)};
  565. var v = null;
  566. var cb = function(json){
  567. v = json.data;
  568. v = (v && v.length===1) ? v[0] : v;
  569. if (async && o2.typeOf(async)=="function") return async(v);
  570. return v;
  571. };
  572. var promise = orgActions.listUnit(data, cb, null, !!async);
  573. return (!!async) ? promise : v;
  574. },
  575. //查询组织的下级--返回组织的对象数组
  576. //nested 布尔 true嵌套下级;false直接下级;默认false;
  577. listSubUnit: function(name, nested, async){
  578. getOrgActions();
  579. var data = {"unitList": getNameFlag(name)};
  580. var v = null;
  581. var cb = function(json){
  582. v = json.data;
  583. if (async && o2.typeOf(async)=="function") return async(v);
  584. return v;
  585. };
  586. var promise;
  587. if (nested){
  588. promise = orgActions.listUnitSubNested(data, cb, null, !!async);
  589. }else{
  590. promise = orgActions.listUnitSubDirect(data, cb, null, !!async);
  591. }
  592. return (!!async) ? promise : v;
  593. },
  594. //查询组织的上级--返回组织的对象数组
  595. //nested 布尔 true嵌套上级;false直接上级;默认false;
  596. //async 布尔 true异步请求
  597. listSupUnit: function(name, nested, async){
  598. getOrgActions();
  599. var data = {"unitList": getNameFlag(name)};
  600. var v = null;
  601. var cb = function(json){
  602. v = json.data;
  603. if (async && o2.typeOf(async)=="function") return async(v);
  604. return v;
  605. };
  606. var promise;
  607. if (nested){
  608. promise = orgActions.listUnitSupNested(data, cb, null, !!async);
  609. }else{
  610. promise = orgActions.listUnitSupDirect(data, cb, null, !!async);
  611. }
  612. return (!!async) ? promise : v;
  613. // if (callback){
  614. // if (nested){
  615. // orgActions.listUnitSupNested(data, function(json){v = json.data; o2.runCallback(callback, "success", [v], this);});
  616. // }else{
  617. // orgActions.listUnitSupDirect(data, function(json){v = json.data; o2.runCallback(callback, "success", [v], this);});
  618. // }
  619. // }else{
  620. // var v = null;
  621. // if (nested){
  622. // orgActions.listUnitSupNested(data, function(json){v = json.data;}, null, false);
  623. // }else{
  624. // orgActions.listUnitSupDirect(data, function(json){v = json.data;}, null, false);
  625. // }
  626. // return v;
  627. // }
  628. },
  629. //根据个人身份获取组织
  630. //flag 数字 表示获取第几层的组织
  631. // 字符串 表示获取指定类型的组织
  632. // 空 表示获取直接所在的组织
  633. getUnitByIdentity: function(name, flag, async){
  634. getOrgActions();
  635. var getUnitMethod = "current";
  636. var v;
  637. if (flag){
  638. if (typeOf(flag)==="string") getUnitMethod = "type";
  639. if (typeOf(flag)==="number") getUnitMethod = "level";
  640. }
  641. var cb;
  642. var promise;
  643. switch (getUnitMethod){
  644. case "current":
  645. var data = {"identityList":getNameFlag(name)};
  646. // var cb = ((async && o2.typeOf(async)=="function") ? (async.isAG ? async : async.ag()) : null) || function(json){
  647. // v = json.data; v=(v&&v.length===1) ? v[0] : v; return v;
  648. // }.ag().catch(function(json){ return json; });
  649. cb = function(json){
  650. v = json.data; v=(v&&v.length===1) ? v[0] : v;
  651. if (async && o2.typeOf(async)=="function") return async(v);
  652. return v;
  653. };
  654. promise = orgActions.listUnitWithIdentity(data, cb, null, !!async);
  655. break;
  656. case "type":
  657. var data = {"identity":(typeOf(name)==="object") ? (name.distinguishedName || name.id || name.unique || name.name) : name,"type":flag};
  658. cb = function(json){
  659. v = json.data;
  660. if (async && o2.typeOf(async)=="function") return async(v);
  661. return v;
  662. };
  663. // var cb = ((async && o2.typeOf(async)=="function") ? (async.isAG ? async : async.ag()) : null) || function(json){
  664. // v = json.data; return v;
  665. // }.ag().catch(function(json){ return json; });
  666. promise = orgActions.getUnitWithIdentityAndType(data, cb, null, !!async);
  667. break;
  668. case "level":
  669. var data = {"identity":(typeOf(name)==="object") ? (name.distinguishedName || name.id || name.unique || name.name) : name,"level":flag};
  670. cb = function(json){
  671. v = json.data; v=(v&&v.length===1) ? v[0] : v;
  672. if (async && o2.typeOf(async)=="function") return async(v);
  673. return v;
  674. };
  675. // var cb = ((async && o2.typeOf(async)=="function") ? (async.isAG ? async : async.ag()) : null) || function(json){
  676. // v = json.data; return v;
  677. // }.ag().catch(function(json){ return json; });
  678. promise = orgActions.getUnitWithIdentityAndLevel(data, cb, null, !!async);
  679. break;
  680. }
  681. return (!!async) ? promise : v;
  682. },
  683. //列出身份所在组织的所有上级组织
  684. listAllSupUnitWithIdentity: function(name, async){
  685. getOrgActions();
  686. var data = {"identityList":getNameFlag(name)};
  687. var v = null;
  688. var cb = function(json){
  689. v = json.data;
  690. if (async && o2.typeOf(async)=="function") return async(v);
  691. return v;
  692. };
  693. var promise = orgActions.listUnitSupNestedWithIdentity(data, cb, null, !!async);
  694. return (!!async) ? promise : v;
  695. },
  696. //获取人员所在的所有组织
  697. listUnitWithPerson: function(name, async){
  698. getOrgActions();
  699. var data = {"personList":getNameFlag(name)};
  700. var v = null;
  701. var cb = function(json){
  702. v = json.data;
  703. if (async && o2.typeOf(async)=="function") return async(v);
  704. return v;
  705. };
  706. var promise = orgActions.listUnitWithPerson(data, cb, null, !!async);
  707. return (!!async) ? promise : v;
  708. },
  709. //列出人员所在组织的所有上级组织
  710. listAllSupUnitWithPerson: function(name, async){
  711. getOrgActions();
  712. var data = {"personList":getNameFlag(name)};
  713. var v = null;
  714. var cb = function(json){
  715. v = json.data;
  716. if (async && o2.typeOf(async)=="function") return async(v);
  717. return v;
  718. };
  719. var promise = orgActions.listUnitSupNestedWithPerson(data, cb, null, !!async);
  720. return (!!async) ? promise : v;
  721. },
  722. //根据组织属性,获取所有符合的组织
  723. listUnitWithAttribute: function(name, attribute, async){
  724. getOrgActions();
  725. var data = {"name":name,"attribute":attribute};
  726. var v = null;
  727. var cb = function(json){
  728. v = json.data;
  729. if (async && o2.typeOf(async)=="function") return async(v);
  730. return v;
  731. };
  732. promise = orgActions.listUnitWithAttribute(data, cb, null, !!async);
  733. return (!!async) ? promise : v;
  734. },
  735. //根据组织职务,获取所有符合的组织
  736. listUnitWithDuty: function(name, id, async){
  737. getOrgActions();
  738. var data = {"name":name,"identity":(typeOf(id)==="object") ? (id.distinguishedName || id.id || id.unique || id.name) : id};
  739. var v = null;
  740. var cb = function(json){
  741. v = json.data;
  742. if (async && o2.typeOf(async)=="function") return async(v);
  743. return v;
  744. };
  745. var promise = orgActions.listUnitWithDuty(data, cb, null, !!async);
  746. return (!!async) ? promise : v;
  747. },
  748. //组织职务***********
  749. //获取指定的组织职务的身份
  750. getDuty: function(duty, id, async){
  751. getOrgActions();
  752. var data = {"name":duty,"unit":(typeOf(id)==="object") ? (id.distinguishedName || id.id || id.unique || id.name) : id};
  753. var v = null;
  754. var cb = function(json){
  755. v = json.data;
  756. if (async && o2.typeOf(async)=="function") return async(v);
  757. return v;
  758. };
  759. var promise = orgActions.getDuty(data, cb, null, !!async);
  760. return (!!async) ? promise : v;
  761. },
  762. //获取身份的所有职务名称
  763. listDutyNameWithIdentity: function(name, async){
  764. getOrgActions();
  765. var data = {"identityList":getNameFlag(name)};
  766. var v = null;
  767. var cb = function(json){
  768. v = json.data.nameList;
  769. if (async && o2.typeOf(async)=="function") return async(v);
  770. return v;
  771. };
  772. var promise = orgActions.listDutyNameWithIdentity(data, cb, null, !!async);
  773. return (!!async) ? promise : v;
  774. },
  775. //获取组织的所有职务名称
  776. listDutyNameWithUnit: function(name, async){
  777. getOrgActions();
  778. var data = {"unitList":getNameFlag(name)};
  779. var v = null;
  780. var cb = function(json){
  781. v = json.data.nameList;
  782. if (async && o2.typeOf(async)=="function") return async(v);
  783. return v;
  784. };
  785. var promise = orgActions.listDutyNameWithUnit(data, cb, null, !!async);
  786. return (!!async) ? promise : v;
  787. },
  788. //获取组织的所有职务
  789. listUnitAllDuty: function(name, async){
  790. getOrgActions();
  791. var data = {"unitList":getNameFlag(name)};
  792. var v = null;
  793. var cb = function(json){
  794. v = json.data;
  795. if (async && o2.typeOf(async)=="function") return async(v);
  796. return v;
  797. };
  798. var promise = orgActions.listUnitAllDuty(data, cb, null, !!async);
  799. return (!!async) ? promise : v;
  800. },
  801. //列出顶层组织
  802. listTopUnit: function(async){
  803. var action = MWF.Actions.get("x_organization_assemble_control");
  804. var v = null;
  805. var cb = function(json){
  806. v = json.data;
  807. if (async && o2.typeOf(async)=="function") return async(v);
  808. return v;
  809. };
  810. var promise = action.listTopUnit(cb, null, !!async);
  811. return (!!async) ? promise : v;
  812. },
  813. //组织属性**************
  814. //添加组织属性值(在属性中添加values值,如果没有此属性,则创建一个)
  815. appendUnitAttribute: function(unit, attr, values, success, failure, async){
  816. getOrgActions();
  817. var unitFlag = (typeOf(unit)==="object") ? (unit.distinguishedName || unit.id || unit.unique || unit.name) : unit;
  818. var data = {"attributeList":values,"name":attr,"unit":unitFlag};
  819. var cb = function(json){
  820. if (success) return success(json);
  821. }.ag().catch(function(xhr, text, error){
  822. if (failure) return failure(xhr, text, error);
  823. });
  824. orgActions.appendPersonAttribute(data, cb, null, !!async);
  825. // orgActions.appendUnitAttribute(data, function(json){
  826. // if (json.data.value){
  827. // if (success) success();
  828. // }else{
  829. // if (failure) failure(null, "", "append values failed");
  830. // }
  831. // }, function(xhr, text, error){
  832. // if (failure) failure(xhr, text, error);
  833. // }, false);
  834. },
  835. //设置组织属性值(将属性值修改为values,如果没有此属性,则创建一个)
  836. setUnitAttribute: function(unit, attr, values, success, failure, async){
  837. getOrgActions();
  838. var unitFlag = (typeOf(unit)==="object") ? (unit.distinguishedName || unit.id || unit.unique || unit.name) : unit;
  839. var data = {"attributeList":values,"name":attr,"unit":unitFlag};
  840. var cb = function(json){
  841. if (success) return success(json);
  842. }.ag().catch(function(xhr, text, error){
  843. if (failure) return failure(xhr, text, error);
  844. });
  845. orgActions.setUnitAttribute(data, cb, null, !!async);
  846. // orgActions.setUnitAttribute(data, function(json){
  847. // if (json.data.value){
  848. // if (success) success();
  849. // }else{
  850. // if (failure) failure(null, "", "append values failed");
  851. // }
  852. // }, function(xhr, text, error){
  853. // if (failure) failure(xhr, text, error);
  854. // }, false);
  855. },
  856. //获取组织属性值
  857. getUnitAttribute: function(unit, attr, async){
  858. getOrgActions();
  859. var unitFlag = (typeOf(unit)==="object") ? (unit.distinguishedName || unit.id || unit.unique || unit.name) : unit;
  860. var data = {"name":attr,"unit":unitFlag};
  861. var v = null;
  862. var cb = function(json){
  863. v = json.data.attributeList;
  864. if (async && o2.typeOf(async)=="function") return async(v);
  865. return v;
  866. };
  867. var promise = orgActions.getUnitAttribute(data, cb, null, !!async);
  868. return (!!async) ? promise : v;
  869. },
  870. //列出组织所有属性的名称
  871. listUnitAttributeName: function(name, async){
  872. getOrgActions();
  873. var data = {"unitList":getNameFlag(name)};
  874. var v = null;
  875. var cb = function(json){
  876. v = json.data.nameList;
  877. if (async && o2.typeOf(async)=="function") return async(v);
  878. return v;
  879. };
  880. var promise = orgActions.listUnitAttributeName(data, cb, null, !!async);
  881. return (!!async) ? promise : v;
  882. },
  883. //列出组织的所有属性
  884. listUnitAllAttribute: function(name, async){
  885. getOrgActions();
  886. var data = {"unitList":getNameFlag(name)};
  887. var v = null;
  888. var cb = function(json){
  889. v = json.data;
  890. if (async && o2.typeOf(async)=="function") return async(v);
  891. return v;
  892. };
  893. var promise = orgActions.listUnitAllAttribute(data, cb, null, !!async);
  894. return (!!async) ? promise : v;
  895. }
  896. };
  897. this.Action = (function () {
  898. var actions = [];
  899. return function (root, json) {
  900. var action = actions[root] || (actions[root] = new MWF.xDesktop.Actions.RestActions("", root, ""));
  901. action.getActions = function (callback) {
  902. if (!this.actions) this.actions = {};
  903. Object.merge(this.actions, json);
  904. if (callback) callback();
  905. };
  906. this.invoke = function (option) {
  907. action.invoke(option)
  908. }
  909. }
  910. })();
  911. this.service = {
  912. "jaxwsClient": {},
  913. "jaxrsClient": {}
  914. };
  915. var lookupAction = null;
  916. var getLookupAction = function (callback) {
  917. if (!lookupAction) {
  918. MWF.require("MWF.xDesktop.Actions.RestActions", function () {
  919. lookupAction = new MWF.xDesktop.Actions.RestActions("", "x_processplatform_assemble_surface", "");
  920. lookupAction.getActions = function (actionCallback) {
  921. this.actions = {
  922. //"lookup": {"uri": "/jaxrs/view/flag/{view}/application/flag/{application}"},
  923. //"getView": {"uri": "/jaxrs/view/{id}/design"}
  924. "lookup": { "uri": "/jaxrs/queryview/flag/{view}/application/flag/{application}/execute", "method": "PUT" },
  925. "getView": { "uri": "/jaxrs/queryview/flag/{view}/application/flag/{application}" }
  926. };
  927. if (actionCallback) actionCallback();
  928. }
  929. if (callback) callback();
  930. });
  931. } else {
  932. if (callback) callback();
  933. }
  934. };
  935. this.view = {
  936. "lookup": function (view, callback, async) {
  937. var filterList = { "filterList": (view.filter || null) };
  938. MWF.Actions.get("x_query_assemble_surface").loadView(view.view, view.application, filterList, function (json) {
  939. var data = {
  940. "grid": json.data.grid || json.data.groupGrid,
  941. "groupGrid": json.data.groupGrid
  942. };
  943. if (callback) callback(data);
  944. }, null, async);
  945. },
  946. "lookupV1": function (view, callback) {
  947. getLookupAction(function () {
  948. lookupAction.invoke({
  949. "name": "lookup", "async": true, "parameter": { "view": view.view, "application": view.application }, "success": function (json) {
  950. var data = {
  951. "grid": json.data.grid,
  952. "groupGrid": json.data.groupGrid
  953. };
  954. if (callback) callback(data);
  955. }.bind(this)
  956. });
  957. }.bind(this));
  958. },
  959. "select": function (view, callback, options) {
  960. if (view.view) {
  961. var viewJson = {
  962. "application": view.application || _form.json.application,
  963. "viewName": view.view || "",
  964. "isTitle": (view.isTitle === false) ? "no" : "yes",
  965. "select": (view.isMulti === false) ? "single" : "multi",
  966. "filter": view.filter
  967. };
  968. if (!options) options = {};
  969. options.width = view.width;
  970. options.height = view.height;
  971. options.title = view.caption;
  972. var width = options.width || "700";
  973. var height = options.height || "400";
  974. if (layout.mobile) {
  975. var size = document.body.getSize();
  976. width = size.x;
  977. height = size.y;
  978. options.style = "viewmobile";
  979. }
  980. width = width.toInt();
  981. height = height.toInt();
  982. var size = _form.app.content.getSize();
  983. var x = (size.x - width) / 2;
  984. var y = (size.y - height) / 2;
  985. if (x < 0) x = 0;
  986. if (y < 0) y = 0;
  987. if (layout.mobile) {
  988. x = 20;
  989. y = 0;
  990. }
  991. var _self = this;
  992. MWF.require("MWF.xDesktop.Dialog", function () {
  993. var dlg = new MWF.xDesktop.Dialog({
  994. "title": options.title || "select view",
  995. "style": options.style || "view",
  996. "top": y,
  997. "left": x - 20,
  998. "fromTop": y,
  999. "fromLeft": x - 20,
  1000. "width": width,
  1001. "height": height,
  1002. "html": "<div style='height: 100%;'></div>",
  1003. "maskNode": _form.app.content,
  1004. "container": _form.app.content,
  1005. "buttonList": [
  1006. {
  1007. "text": MWF.LP.process.button.ok,
  1008. "action": function () {
  1009. //if (callback) callback(_self.view.selectedItems);
  1010. if (callback) callback(_self.view.getData());
  1011. this.close();
  1012. }
  1013. },
  1014. {
  1015. "text": MWF.LP.process.button.cancel,
  1016. "action": function () { this.close(); }
  1017. }
  1018. ]
  1019. });
  1020. dlg.show();
  1021. if (layout.mobile) {
  1022. var backAction = dlg.node.getElement(".MWF_dialod_Action_back");
  1023. var okAction = dlg.node.getElement(".MWF_dialod_Action_ok");
  1024. if (backAction) backAction.addEvent("click", function (e) {
  1025. dlg.close();
  1026. }.bind(this));
  1027. if (okAction) okAction.addEvent("click", function (e) {
  1028. //if (callback) callback(this.view.selectedItems);
  1029. if (callback) callback(this.view.getData());
  1030. dlg.close();
  1031. }.bind(this));
  1032. }
  1033. MWF.xDesktop.requireApp("query.Query", "Viewer", function () {
  1034. this.view = new MWF.xApplication.query.Query.Viewer(dlg.content.getFirst(), viewJson, { "style": "select" }, _form.app, _form.Macro);
  1035. }.bind(this));
  1036. }.bind(this));
  1037. }
  1038. }
  1039. };
  1040. this.statement = {
  1041. "execute": function (statement, callback, async) {
  1042. var parameter = this.parseParameter(statement.parameter);
  1043. var filterList = this.parseFilter(statement.filter, parameter);
  1044. var obj = {
  1045. "filterList": filterList,
  1046. "parameter" : parameter
  1047. };
  1048. MWF.Actions.load("x_query_assemble_surface").StatementAction.executeV2(
  1049. statement.name, statement.mode || "data", statement.page || 1, statement.pageSize || 20, obj,
  1050. function (json) {
  1051. if (callback) callback(json);
  1052. }, null, async);
  1053. },
  1054. parseFilter : function( filter, parameter ){
  1055. if( typeOf(filter) !== "array" )return [];
  1056. var filterList = [];
  1057. ( filter || [] ).each( function (d) {
  1058. var parameterName = d.path.replace(/\./g, "_");
  1059. var value = d.value;
  1060. if( d.comparison === "like" || d.comparison === "notLike" ){
  1061. if( value.substr(0, 1) !== "%" )value = "%"+value;
  1062. if( value.substr(value.length-1,1) !== "%" )value = value+"%";
  1063. parameter[ parameterName ] = value; //"%"+value+"%";
  1064. }else{
  1065. if( d.formatType === "dateTimeValue" || d.formatType === "datetimeValue"){
  1066. value = "{ts '"+value+"'}"
  1067. }else if( d.formatType === "dateValue" ){
  1068. value = "{d '"+value+"'}"
  1069. }else if( d.formatType === "timeValue" ){
  1070. value = "{t '"+value+"'}"
  1071. }
  1072. parameter[ parameterName ] = value;
  1073. }
  1074. d.value = parameterName;
  1075. filterList.push( d );
  1076. }.bind(this));
  1077. return filterList;
  1078. },
  1079. parseParameter : function( obj ){
  1080. if( typeOf(obj) !== "object" )return {};
  1081. var parameter = {};
  1082. //传入的参数
  1083. for( var p in obj ){
  1084. var value = obj[p];
  1085. if( typeOf( value ) === "date" ){
  1086. value = "{ts '"+value.format("db")+"'}"
  1087. }
  1088. parameter[ p ] = value;
  1089. }
  1090. return parameter;
  1091. },
  1092. "select": function (statement, callback, options) {
  1093. if (statement.name) {
  1094. // var parameter = this.parseParameter(statement.parameter);
  1095. // var filterList = this.parseFilter(statement.filter, parameter);
  1096. var statementJson = {
  1097. "statementId": statement.name || "",
  1098. "isTitle": (statement.isTitle === false) ? "no" : "yes",
  1099. "select": (statement.isMulti === false) ? "single" : "multi",
  1100. "filter": statement.filter,
  1101. "parameter": statement.parameter
  1102. };
  1103. if (!options) options = {};
  1104. options.width = statement.width;
  1105. options.height = statement.height;
  1106. options.title = statement.caption;
  1107. var width = options.width || "700";
  1108. var height = options.height || "400";
  1109. if (layout.mobile) {
  1110. var size = document.body.getSize();
  1111. width = size.x;
  1112. height = size.y;
  1113. options.style = "viewmobile";
  1114. }
  1115. width = width.toInt();
  1116. height = height.toInt();
  1117. var size = _form.app.content.getSize();
  1118. var x = (size.x - width) / 2;
  1119. var y = (size.y - height) / 2;
  1120. if (x < 0) x = 0;
  1121. if (y < 0) y = 0;
  1122. if (layout.mobile) {
  1123. x = 20;
  1124. y = 0;
  1125. }
  1126. var _self = this;
  1127. MWF.require("MWF.xDesktop.Dialog", function () {
  1128. var dlg = new MWF.xDesktop.Dialog({
  1129. "title": options.title || "select statement view",
  1130. "style": options.style || "view",
  1131. "top": y,
  1132. "left": x - 20,
  1133. "fromTop": y,
  1134. "fromLeft": x - 20,
  1135. "width": width,
  1136. "height": height,
  1137. "html": "<div style='height: 100%;'></div>",
  1138. "maskNode": _form.app.content,
  1139. "container": _form.app.content,
  1140. "buttonList": [
  1141. {
  1142. "text": MWF.LP.process.button.ok,
  1143. "action": function () {
  1144. //if (callback) callback(_self.view.selectedItems);
  1145. if (callback) callback(_self.statement.getData());
  1146. this.close();
  1147. }
  1148. },
  1149. {
  1150. "text": MWF.LP.process.button.cancel,
  1151. "action": function () { this.close(); }
  1152. }
  1153. ]
  1154. });
  1155. dlg.show();
  1156. if (layout.mobile) {
  1157. var backAction = dlg.node.getElement(".MWF_dialod_Action_back");
  1158. var okAction = dlg.node.getElement(".MWF_dialod_Action_ok");
  1159. if (backAction) backAction.addEvent("click", function (e) {
  1160. dlg.close();
  1161. }.bind(this));
  1162. if (okAction) okAction.addEvent("click", function (e) {
  1163. //if (callback) callback(this.view.selectedItems);
  1164. if (callback) callback(this.statement.getData());
  1165. dlg.close();
  1166. }.bind(this));
  1167. }
  1168. MWF.xDesktop.requireApp("query.Query", "Statement", function () {
  1169. this.statement = new MWF.xApplication.query.Query.Statement(dlg.content.getFirst(), statementJson, { "style": "select" }, _form.app, _form.Macro);
  1170. }.bind(this));
  1171. }.bind(this));
  1172. }
  1173. }
  1174. };
  1175. //include 引用脚本
  1176. //optionsOrName : {
  1177. // type : "", 默认为portal, 可以为 portal process cms
  1178. // application : "", 门户/流程/CMS的名称/别名/id, 默认为当前应用
  1179. // name : "" // 脚本名称/别名/id
  1180. //}
  1181. //或者name: "" // 脚本名称/别名/id
  1182. // if( !window.includedScripts ){
  1183. // var includedScripts = window.includedScripts = [];
  1184. // }else{
  1185. // var includedScripts = window.includedScripts;
  1186. // }
  1187. var includedScripts = [];
  1188. var _includeSingle = function( optionsOrName , callback, async){
  1189. var options = optionsOrName;
  1190. if( typeOf( options ) == "string" ){
  1191. options = { name : options };
  1192. }
  1193. var name = options.name;
  1194. var type = ( options.type && options.application ) ? options.type : "portal";
  1195. var application = options.application || _form.json.application;
  1196. var key = type +"-" + application + "-" + name;
  1197. if (includedScripts.indexOf( key )> -1){
  1198. if (callback) callback.apply(this);
  1199. return;
  1200. }
  1201. //if (includedScripts.indexOf( name )> -1){
  1202. // if (callback) callback.apply(this);
  1203. // return;
  1204. //}
  1205. var scriptAction;
  1206. switch ( type ){
  1207. case "portal" :
  1208. if( this.scriptActionPortal ){
  1209. scriptAction = this.scriptActionPortal;
  1210. }else{
  1211. MWF.require("MWF.xScript.Actions.PortalScriptActions", null, false);
  1212. scriptAction = this.scriptActionPortal = new MWF.xScript.Actions.PortalScriptActions();
  1213. }
  1214. break;
  1215. case "process" :
  1216. if( this.scriptActionProcess ){
  1217. scriptAction = this.scriptActionProcess;
  1218. }else{
  1219. MWF.require("MWF.xScript.Actions.ScriptActions", null, false);
  1220. scriptAction = this.scriptActionProcess = new MWF.xScript.Actions.ScriptActions();
  1221. }
  1222. break;
  1223. case "cms" :
  1224. if( this.scriptActionCMS ){
  1225. scriptAction = this.scriptActionCMS;
  1226. }else{
  1227. MWF.require("MWF.xScript.Actions.CMSScriptActions", null, false);
  1228. scriptAction = this.scriptActionCMS = new MWF.xScript.Actions.CMSScriptActions();
  1229. }
  1230. break;
  1231. }
  1232. scriptAction.getScriptByName( application, name, includedScripts, function(json){
  1233. if (json.data){
  1234. includedScripts.push( key );
  1235. //名称、别名、id
  1236. json.data.importedList.each( function ( flag ) {
  1237. if( type === "portal" ){
  1238. includedScripts.push( type + "-" + json.data.portal + "-" + flag );
  1239. if( json.data.portalName )includedScripts.push( type + "-" + json.data.portalName + "-" + flag );
  1240. if( json.data.portalAlias )includedScripts.push( type + "-" + json.data.portalAlias + "-" + flag );
  1241. }else if( type === "cms" ){
  1242. includedScripts.push( type + "-" + json.data.appId + "-" + flag );
  1243. if( json.data.appName )includedScripts.push( type + "-" + json.data.appName + "-" + flag );
  1244. if( json.data.appAlias )includedScripts.push( type + "-" + json.data.appAlias + "-" + flag );
  1245. }else if( type === "process" ){
  1246. includedScripts.push( type + "-" + json.data.application + "-" + flag );
  1247. if( json.data.appName )includedScripts.push( type + "-" + json.data.appName + "-" + flag );
  1248. if( json.data.appAlias )includedScripts.push( type + "-" + json.data.appAlias + "-" + flag );
  1249. }
  1250. });
  1251. includedScripts = includedScripts.concat(json.data.importedList);
  1252. MWF.Macro.exec(json.data.text, this);
  1253. if (callback) callback.apply(this);
  1254. }else{
  1255. if (callback) callback.apply(this);
  1256. }
  1257. }.bind(this), null, !!async);
  1258. }
  1259. this.include = function( optionsOrName , callback, async){
  1260. if (o2.typeOf(optionsOrName)=="array"){
  1261. if (!!async){
  1262. var count = optionsOrName.length;
  1263. var loaded = 0;
  1264. optionsOrName.each(function(option){
  1265. _includeSingle.apply(this, [option, function(){
  1266. loaded++;
  1267. if (loaded>=count) if (callback) callback.apply(this);;
  1268. }.bind(this), true]);
  1269. }.bind(this));
  1270. }else{
  1271. optionsOrName.each(function(option){
  1272. _includeSingle.apply(this, [option]);
  1273. if (callback) callback.apply(this);
  1274. }.bind(this));
  1275. }
  1276. }else{
  1277. _includeSingle.apply(this, [optionsOrName , callback, async])
  1278. }
  1279. };
  1280. this.define = function (name, fun, overwrite) {
  1281. var over = true;
  1282. if (overwrite === false) over = false;
  1283. var o = {};
  1284. o[name] = { "value": fun, "configurable": over };
  1285. MWF.defineProperties(this, o);
  1286. }.bind(this);
  1287. //如果前端事件有异步调用,想要在异步调用结束后继续运行页面加载,
  1288. //可在调用前执行 var resolve = this.wait();
  1289. //在异步调用结束后 执行 resolve.cb();
  1290. //目前只有表单的queryload事件支持此方法。
  1291. this.wait = function(){
  1292. resolve = {};
  1293. var setResolve = function(callback){
  1294. resolve.cb = callback;
  1295. }.bind(this);
  1296. this.target.event_resolve = setResolve;
  1297. return resolve;
  1298. };
  1299. //和this.wait配合使用,
  1300. //如果没有异步,则resolve.cb方法不存在,
  1301. //所以在回调中中使用this.goon();使表单继续加载
  1302. this.goon = function(){
  1303. this.target.event_resolve = null;
  1304. };
  1305. //仅前台对象-----------------------------------------
  1306. //form
  1307. this.page = this.form = {
  1308. "getInfor": function () { return ev.pageInfor; },
  1309. "infor": ev.pageInfor,
  1310. "getApp": function () { return _form.app; },
  1311. "app": _form.app,
  1312. "node": function () { return _form.node; },
  1313. //"readonly": _form.options.readonly,
  1314. "get": function (name) { return (_form.all) ? _form.all[name] : null; },
  1315. "getWidgetModule": function (widget, moduleName) {
  1316. if (!_form.widgetModules || !_form.widgetModules[widget]) return null;
  1317. var module = _form.widgetModules[widget][moduleName];
  1318. return module || null;
  1319. },
  1320. "getField": function (name) { return _forms[name]; },
  1321. "getAction": function () { return _form.workAction },
  1322. "getDesktop": function () { return _form.app.desktop },
  1323. "getData": function () { return new MWF.xScript.JSONData(_form.getData()); },
  1324. //"save": function(callback){_form.saveWork(callback);},
  1325. "close": function () { _form.closeWork(); },
  1326. "print": function (application, form) {
  1327. _form.printWork(application, form);
  1328. },
  1329. "confirm": function (type, title, text, width, height, ok, cancel, callback, mask, style) {
  1330. // var p = MWF.getCenter({"x": width, "y": height});
  1331. // e = {"event": {"clientX": p.x,"x": p.x,"clientY": p.y,"y": p.y}};
  1332. // _form.confirm(type, e, title, text, width, height, ok, cancel, callback, mask, style);
  1333. if ((arguments.length <= 1) || o2.typeOf(arguments[1]) === "string") {
  1334. var p = MWF.getCenter({ "x": width, "y": height });
  1335. e = { "event": { "clientX": p.x, "x": p.x, "clientY": p.y, "y": p.y } };
  1336. _form.confirm(type, e, title, text, width, height, ok, cancel, callback, mask, style);
  1337. } else {
  1338. e = (arguments.length > 1) ? arguments[1] : null;
  1339. title = (arguments.length > 2) ? arguments[2] : null;
  1340. text = (arguments.length > 3) ? arguments[3] : null;
  1341. width = (arguments.length > 4) ? arguments[4] : null;
  1342. height = (arguments.length > 5) ? arguments[5] : null;
  1343. ok = (arguments.length > 6) ? arguments[6] : null;
  1344. cancel = (arguments.length > 7) ? arguments[7] : null;
  1345. callback = (arguments.length > 8) ? arguments[8] : null;
  1346. mask = (arguments.length > 9) ? arguments[9] : null;
  1347. style = (arguments.length > 10) ? arguments[10] : null;
  1348. _form.confirm(type, e, title, text, width, height, ok, cancel, callback, mask, style);
  1349. }
  1350. },
  1351. "alert": function(type, title, text, width, height){
  1352. _form.alert(type, title, text, width, height);
  1353. },
  1354. "notice": function (content, type, target, where, offset, option) {
  1355. _form.notice(content, type, target, where, offset, option);
  1356. },
  1357. "addEvent": function (e, f) { _form.addEvent(e, f); },
  1358. "openWindow": function (form, app) {
  1359. _form.openWindow(form, app);
  1360. },
  1361. "toPage": function (name, par, nohis) {
  1362. _form.app.toPage(name, par, nohis);
  1363. },
  1364. "toPortal": function (portal, page, par) {
  1365. _form.app.toPortal(portal, page, par);
  1366. },
  1367. "openWork": function (id, completedId, title, options) {
  1368. var op = options || {};
  1369. op.workId = id;
  1370. op.workCompletedId = completedId;
  1371. op.docTitle = title;
  1372. op.appId = "process.Work" + (op.workId || op.workCompletedId);
  1373. return layout.desktop.openApplication(this.event, "process.Work", op);
  1374. },
  1375. "openJob": function (id, choice, options) {
  1376. var workData = null;
  1377. o2.Actions.get("x_processplatform_assemble_surface").listWorkByJob(id, function (json) {
  1378. if (json.data) workData = json.data;
  1379. }.bind(this), null, false);
  1380. if (workData) {
  1381. var len = workData.workList.length + workData.workCompletedList.length;
  1382. if (len) {
  1383. if (len > 1 && choice) {
  1384. var node = new Element("div", { "styles": { "padding": "20px", "width": "500px" } }).inject(_form.node);
  1385. workData.workList.each(function (work) {
  1386. var workNode = new Element("div", {
  1387. "styles": {
  1388. "background": "#ffffff",
  1389. "border-radius": "10px",
  1390. "clear": "both",
  1391. "margin-bottom": "10px",
  1392. "height": "40px",
  1393. "padding": "10px 10px"
  1394. }
  1395. }).inject(node);
  1396. 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>" +
  1397. "<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>" +
  1398. "<div style='height: 20px; line-height: 20px; margin: 0px 40px'>" + work.title + "</div>" +
  1399. "<div style='margin: 0px 40px'><div style='color:#999999; float: left; margin-right: 10px'>" + work.activityName + "</div>" +
  1400. "<div style='color:#999999; float: left; margin-right: 10px'>" + work.activityArrivedTime + "</div>" +
  1401. "<div style='color:#999999; float: left; margin-right: 10px'>" + (work.manualTaskIdentityText || "") + "</div></div>";
  1402. workNode.set("html", html);
  1403. var action = workNode.getElement(".MWFAction");
  1404. action.store("work", work);
  1405. action.addEvent("click", function (e) {
  1406. var work = e.target.retrieve("work");
  1407. if (work) this.openWork(work.id, null, work.title, options);
  1408. dlg.close();
  1409. }.bind(this));
  1410. }.bind(this));
  1411. workData.workCompletedList.each(function (work) {
  1412. var workNode = new Element("div", {
  1413. "styles": {
  1414. "background": "#ffffff",
  1415. "border-radius": "10px",
  1416. "clear": "both",
  1417. "margin-bottom": "10px",
  1418. "height": "40px",
  1419. "padding": "10px 10px"
  1420. }
  1421. }).inject(node);
  1422. 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>" +
  1423. "<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>" +
  1424. "<div style='height: 20px; line-height: 20px; margin: 0px 40px'>" + work.title + "</div>" +
  1425. "<div style='margin: 0px 40px'><div style='color:#999999; float: left; margin-right: 10px'>" + o2.LP.widget.workcompleted + "</div>" +
  1426. "<div style='color:#999999; float: left; margin-right: 10px'>" + work.completedTime + "</div>";
  1427. workNode.set("html", html);
  1428. var action = workNode.getElement(".MWFAction");
  1429. action.store("work", work);
  1430. action.addEvent("click", function (e) {
  1431. var work = e.target.retrieve("work");
  1432. if (work) this.openWork(null, work.id, work.title, options);
  1433. dlg.close();
  1434. }.bind(this));
  1435. }.bind(this));
  1436. var height = node.getSize().y + 20;
  1437. if (height > 600) height = 600;
  1438. var dlg = o2.DL.open({
  1439. "title": o2.LP.widget.choiceWork,
  1440. "style": "user",
  1441. "isResize": false,
  1442. "content": node,
  1443. "buttonList": [
  1444. {
  1445. "type": "cancel",
  1446. "text": o2.LP.widget.close,
  1447. "action": function () { dlg.close(); }
  1448. }
  1449. ]
  1450. });
  1451. } else {
  1452. if (workData.workList.length) {
  1453. var work = workData.workList[0];
  1454. return this.openWork(work.id, null, work.title, options);
  1455. } else {
  1456. var work = workData.workCompletedList[0];
  1457. return this.openWork(null, work.id, work.title, options);
  1458. }
  1459. }
  1460. }
  1461. }
  1462. },
  1463. "openDocument": function (id, title, options) {
  1464. var op = options || {};
  1465. op.documentId = id;
  1466. op.docTitle = title || "";
  1467. layout.desktop.openApplication(this.event, "cms.Document", op);
  1468. },
  1469. "openPortal": function (name, page, par) {
  1470. var action = MWF.Actions.get("x_portal_assemble_surface");
  1471. action.getApplication(name, function (json) {
  1472. if (json.data) {
  1473. if (page) {
  1474. action.getPageByName(page, json.data.id, function (pageJson) {
  1475. var pageId = (pageJson.data) ? pageJson.data.id : "";
  1476. layout.desktop.openApplication(null, "portal.Portal", {
  1477. "portalId": json.data.id,
  1478. "pageId": pageId,
  1479. "parameters": par,
  1480. "appId": (par && par.appId) || ("portal.Portal" + json.data.id + pageId)
  1481. })
  1482. });
  1483. } else {
  1484. layout.desktop.openApplication(null, "portal.Portal", {
  1485. "portalId": json.data.id,
  1486. "parameters": par,
  1487. "appId": (par && par.appId) || ("portal.Portal" + json.data.id)
  1488. })
  1489. }
  1490. }
  1491. });
  1492. },
  1493. "openCMS": function (name) {
  1494. var action = MWF.Actions.get("x_cms_assemble_control");
  1495. action.getColumn(name, function (json) {
  1496. if (json.data) {
  1497. layout.desktop.openApplication(null, "cms.Module", {
  1498. "columnId": json.data.id,
  1499. "appId": "cms.Module" + json.data.id
  1500. });
  1501. }
  1502. });
  1503. },
  1504. "openProcess": function (name) {
  1505. var action = MWF.Actions.get("x_processplatform_assemble_surface");
  1506. action.getApplication(name, function (json) {
  1507. if (json.data) {
  1508. layout.desktop.openApplication(null, "process.Application", {
  1509. "id": json.data.id,
  1510. "appId": "process.Application" + json.data.id
  1511. });
  1512. }
  1513. });
  1514. },
  1515. "openApplication": function (name, options) {
  1516. layout.desktop.openApplication(null, name, options);
  1517. },
  1518. "createDocument": function (columnOrOptions, category, data, identity, callback, target, latest, selectColumnEnable, ignoreTitle) {
  1519. var column = columnOrOptions;
  1520. var onAfterPublish, onPostPublish;
  1521. if (typeOf(columnOrOptions) == "object") {
  1522. column = columnOrOptions.column;
  1523. category = columnOrOptions.category;
  1524. data = columnOrOptions.data;
  1525. identity = columnOrOptions.identity;
  1526. callback = columnOrOptions.callback;
  1527. target = columnOrOptions.target;
  1528. latest = columnOrOptions.latest;
  1529. selectColumnEnable = columnOrOptions.selectColumnEnable;
  1530. ignoreTitle = columnOrOptions.ignoreTitle;
  1531. onAfterPublish = columnOrOptions.onAfterPublish;
  1532. onPostPublish = columnOrOptions.onPostPublish;
  1533. }
  1534. if (target) {
  1535. if (layout.app && layout.app.inBrowser) {
  1536. layout.app.content.empty();
  1537. layout.app = null;
  1538. }
  1539. }
  1540. MWF.xDesktop.requireApp("cms.Index", "Newer", function () {
  1541. var starter = new MWF.xApplication.cms.Index.Newer(null, null, _form.app, null, {
  1542. "documentData": data,
  1543. "identity": identity,
  1544. "ignoreTitle": ignoreTitle === true,
  1545. "ignoreDrafted": latest === false,
  1546. "selectColumnEnable": !category || selectColumnEnable === true,
  1547. "restrictToColumn": !!category && selectColumnEnable !== true,
  1548. "categoryFlag": category, //category id or name
  1549. "columnFlag": column, //column id or name,
  1550. "onStarted": function (documentId, data) {
  1551. if (callback) callback();
  1552. },
  1553. "onPostPublish": function () {
  1554. if(onPostPublish)onPostPublish();
  1555. },
  1556. "onAfterPublish": function () {
  1557. if(onAfterPublish)onAfterPublish();
  1558. }
  1559. });
  1560. starter.load();
  1561. })
  1562. },
  1563. "startProcess": function (app, process, data, identity, callback, target, latest) {
  1564. if (arguments.length > 2) {
  1565. for (var i = 2; i < arguments.length; i++) {
  1566. if (typeOf(arguments[i]) == "boolean") {
  1567. target = arguments[i];
  1568. break;
  1569. }
  1570. }
  1571. }
  1572. if (target) {
  1573. if (layout.app && layout.app.inBrowser) {
  1574. //layout.app.content.empty();
  1575. layout.app.$openWithSelf = true;
  1576. }
  1577. }
  1578. var action = MWF.Actions.get("x_processplatform_assemble_surface").getProcessByName(process, app, function (json) {
  1579. if (json.data) {
  1580. MWF.xDesktop.requireApp("process.TaskCenter", "ProcessStarter", function () {
  1581. var starter = new MWF.xApplication.process.TaskCenter.ProcessStarter(json.data, _form.app, {
  1582. "workData": data,
  1583. "identity": identity,
  1584. "latest": latest,
  1585. "onStarted": function (data, title, processName) {
  1586. if (data.work){
  1587. var work = data.work;
  1588. var options = {"draft": work, "appId": "process.Work"+(new o2.widget.UUID).toString(), "desktopReload": false};
  1589. layout.desktop.openApplication(null, "process.Work", options);
  1590. }else{
  1591. var currentTask = [];
  1592. data.each(function(work){
  1593. if (work.currentTaskIndex != -1) currentTask.push(work.taskList[work.currentTaskIndex].work);
  1594. }.bind(this));
  1595. if (currentTask.length==1){
  1596. var options = {"workId": currentTask[0], "appId": currentTask[0]};
  1597. layout.desktop.openApplication(null, "process.Work", options);
  1598. }else{}
  1599. }
  1600. // var currentTask = [];
  1601. // data.each(function (work) {
  1602. // if (work.currentTaskIndex != -1) currentTask.push(work.taskList[work.currentTaskIndex].work);
  1603. // }.bind(this));
  1604. //
  1605. // if (currentTask.length == 1) {
  1606. // var options = { "workId": currentTask[0], "appId": currentTask[0] };
  1607. // layout.desktop.openApplication(null, "process.Work", options);
  1608. // } else { }
  1609. if (callback) callback(data);
  1610. }.bind(this)
  1611. });
  1612. starter.load();
  1613. }.bind(this));
  1614. }
  1615. });
  1616. },
  1617. "parameters": _form.options.parameters,
  1618. "getWidgetPrameters": function () {
  1619. if (!this.target) return null;
  1620. if (!this.target.widget) return null;
  1621. if (!this.widgetParameters) return null;
  1622. var pageId = this.target.widget.json.id;
  1623. return this.widgetParameters[pageId];
  1624. }.bind(this)
  1625. //"app": _form.app
  1626. };
  1627. this.form.currentRouteName = _form.json.currentRouteName;
  1628. this.form.opinion = _form.json.opinion;
  1629. this.target = ev.target;
  1630. this.event = ev.event;
  1631. this.status = ev.status;
  1632. this.session = layout.desktop.session;
  1633. this.Actions = o2.Actions;
  1634. this.query = function (option) {
  1635. // options = {
  1636. // "name": "statementName",
  1637. // "data": "json data",
  1638. // "firstResult": 1,
  1639. // "maxResults": 100,
  1640. // "success": function(){},
  1641. // "error": function(){},
  1642. // "async": true or false, default is true
  1643. // }
  1644. if (option) {
  1645. var json = (option.data) || {};
  1646. if (option.firstResult) json.firstResult = option.firstResult.toInt();
  1647. if (option.maxResults) json.maxResults = option.maxResults.toInt();
  1648. o2.Actions.get("x_query_assemble_surface").executeStatement(option.name, json, success, error, options.async);
  1649. }
  1650. };
  1651. this.Table = MWF.xScript.createTable();
  1652. };
  1653. MWF.xScript.createTable = function(){
  1654. return function(name){
  1655. this.name = name;
  1656. this.action = o2.Actions.get("x_query_assemble_surface");
  1657. this.listRowNext = function(id, count, success, error, async){
  1658. this.action.listRowNext(this.name, id, count, success, error, async);
  1659. };
  1660. this.listRowPrev = function(id, count, success, error, async){
  1661. this.action.listRowPrev(this.name, id, count, success, error, async);
  1662. };
  1663. this.listRowPrev = function(id, count, success, error, async){
  1664. this.action.listRowPrev(this.name, id, count, success, error, async);
  1665. };
  1666. this.listRowSelectWhere = function(where, success, error, async){
  1667. this.action.listRowSelectWhere(this.name, where, success, error, async);
  1668. };
  1669. this.listRowCountWhere = function(where, success, error, async){
  1670. this.action.listRowCountWhere(this.name, where, success, error, async);
  1671. };
  1672. this.deleteRow = function(id, success, error, async){
  1673. this.action.deleteRow(this.name, id, success, error, async);
  1674. };
  1675. this.deleteAllRow = function(success, error, async){
  1676. this.action.deleteAllRow(this.name, success, error, async);
  1677. };
  1678. this.getRow = function(id, success, error, async){
  1679. this.action.getRow(this.name, id, success, error, async);
  1680. };
  1681. this.insertRow = function(data, success, error, async){
  1682. this.action.insertRow(this.name, data, success, error, async);
  1683. };
  1684. this.updateRow = function(id, data, success, error, async){
  1685. this.action.updateRow(this.name, id, data, success, error, async);
  1686. };
  1687. }
  1688. };
  1689. MWF.xScript.JSONData = function(data, callback, key, parent, _form){
  1690. var getter = function(data, callback, k, _self){
  1691. return function(){return (["array","object"].indexOf(typeOf(data[k]))===-1) ? data[k] : new MWF.xScript.JSONData(data[k], callback, k, _self, _form);};
  1692. };
  1693. var setter = function(data, callback, k, _self){
  1694. return function(v){
  1695. data[k] = v;
  1696. //debugger;
  1697. //this.add(k, v, true);
  1698. if (callback) callback(data, k, _self);
  1699. }
  1700. };
  1701. var define = function(){
  1702. var o = {};
  1703. 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])};
  1704. o["length"] = {"get": function(){return Object.keys(data).length;}};
  1705. o["some"] = {"get": function(){return data.some;}};
  1706. MWF.defineProperties(this, o);
  1707. var methods = {
  1708. "getKey": {"value": function(){ return key; }},
  1709. "getParent": {"value": function(){ return parent; }},
  1710. "toString": {"value": function() { return data.toString();}},
  1711. "setSection": {"value": function(newKey, newValue){
  1712. this.add(newKey, newValue, true);
  1713. try {
  1714. var path = [this.getKey()];
  1715. p = this.getParent();
  1716. while (p && p.getKey()){
  1717. path.unshift(p.getKey());
  1718. p = p.getParent();
  1719. }
  1720. if (path.length) _form.sectionListObj[path.join(".")] = newKey;
  1721. }catch(e){
  1722. }
  1723. }},
  1724. "add": {"value": function(newKey, newValue, overwrite){
  1725. var flag = true;
  1726. var type = typeOf(data);
  1727. if (type==="array"){
  1728. if (arguments.length<2){
  1729. data.push(newKey);
  1730. newValue = newKey;
  1731. newKey = data.length-1;
  1732. }else{
  1733. if (!newKey && newKey!==0){
  1734. data.push(newValue);
  1735. newKey = data.length-1;
  1736. }else{
  1737. flag = false;
  1738. }
  1739. }
  1740. if (flag){
  1741. var o = {};
  1742. o[newKey] = {"configurable": true, "enumerable": true, "get": getter.apply(this, [data, callback, newKey, this]),"set": setter.apply(this, [data, callback, newKey, this])};
  1743. MWF.defineProperties(this, o);
  1744. }
  1745. this[newKey] = newValue;
  1746. }else if (type==="object"){
  1747. if (!this.hasOwnProperty(newKey)){
  1748. data[newKey] = newValue;
  1749. if (flag){
  1750. var o = {};
  1751. o[newKey] = {"configurable": true, "enumerable": true, "get": getter.apply(this, [data, callback, newKey, this]),"set": setter.apply(this, [data, callback, newKey, this])};
  1752. MWF.defineProperties(this, o);
  1753. }
  1754. this[newKey] = newValue;
  1755. }else{
  1756. if (overwrite) this[newKey] = newValue;
  1757. }
  1758. }
  1759. return this[newKey];
  1760. }},
  1761. "del": {"value": function(delKey){
  1762. if (!this.hasOwnProperty(delKey)) return null;
  1763. delete data[delKey];
  1764. delete this[delKey];
  1765. return this;
  1766. }}
  1767. };
  1768. MWF.defineProperties(this, methods);
  1769. };
  1770. var type = typeOf(data);
  1771. if (type==="object" || type==="array") define.apply(this);
  1772. };
  1773. if( !MWF.xScript.dictLoaded )MWF.xScript.dictLoaded = {};
  1774. MWF.xScript.addDictToCache = function ( options, path, json ) {
  1775. if( !path )path = "root";
  1776. if( path.indexOf("root") !== 0 )path = "root." + path ;
  1777. var type = options.appType || "process";
  1778. var enableAnonymous = options.enableAnonymous || false;
  1779. var appFlagList = [];
  1780. if( options.application )appFlagList.push( options.application );
  1781. if( options.appId )appFlagList.push( options.appId );
  1782. if( options.appName )appFlagList.push( options.appName );
  1783. if( options.appAlias )appFlagList.push( options.appAlias );
  1784. var dictFlagList = [];
  1785. if( options.id )dictFlagList.push( options.id );
  1786. if( options.name )dictFlagList.push( options.name );
  1787. if( options.alias )dictFlagList.push( options.alias );
  1788. var cache = {};
  1789. cache[path] = json;
  1790. for( var i=0; i<appFlagList.length; i++ ){
  1791. for( var j=0; j<dictFlagList.length; j++ ){
  1792. var k = dictFlagList[j] + type + appFlagList[i] + enableAnonymous;
  1793. if( !MWF.xScript.dictLoaded[k] ){
  1794. MWF.xScript.dictLoaded[k] = cache; //指向同一个对象
  1795. // MWF.xScript.dictLoaded[k][path] = json; //指向不同的对象
  1796. }else if( i===0 && j===0 ){
  1797. MWF.xScript.setDictToCache( k, path ,json );
  1798. var arr = path.split(/\./g);
  1799. var p;
  1800. var cache = MWF.xScript.dictLoaded[k];
  1801. for( var l=0 ; l<arr.length; l++ ){
  1802. p = l === 0 ? arr[0] : ( p + "." + arr[l] );
  1803. if( cache[ p ] )break;
  1804. }
  1805. if( p ){
  1806. var mathP = p+".";
  1807. Object.keys( cache ).each( function( path, idx){
  1808. if( path.indexOf( mathP ) === 0 )delete cache[path];
  1809. })
  1810. }
  1811. }
  1812. }
  1813. }
  1814. };
  1815. MWF.xScript.getMatchedDict = function(key, path){
  1816. if( !path )path = "root";
  1817. if( path.indexOf("root") !== 0 )path = "root." + path ;
  1818. var arr = path.split(/\./g);
  1819. if( MWF.xScript.dictLoaded[key] ){
  1820. var dicts = MWF.xScript.dictLoaded[key];
  1821. var list = Array.clone(arr);
  1822. var p;
  1823. var dict;
  1824. for( var i=0 ; i<arr.length; i++ ){
  1825. p = i === 0 ? arr[0] : ( p + "." + arr[i] );
  1826. list.shift();
  1827. if( dicts[ p ] ){
  1828. dict = dicts[ p ];
  1829. break;
  1830. }
  1831. }
  1832. return {
  1833. dict : dict,
  1834. unmatchedPathList : list
  1835. }
  1836. }
  1837. return {
  1838. dict : null,
  1839. unmatchedPathList : list
  1840. }
  1841. };
  1842. MWF.xScript.insertDictToCache = function(key, path, json){
  1843. if( MWF.xScript.dictLoaded[key] ){
  1844. var matchedDict = MWF.xScript.getMatchedDict( key, path );
  1845. var dict = matchedDict.dict;
  1846. var list = matchedDict.unmatchedPathList;
  1847. if( !dict ){
  1848. MWF.xScript.dictLoaded[key][path] = json;
  1849. }else{
  1850. for( var j=0; j<list.length-1; j++ ){
  1851. if( !dict[ list[j] ] ){
  1852. dict[ list[j] ] = {};
  1853. }
  1854. dict = dict[ list[j] ];
  1855. }
  1856. var lastPath = list[list.length-1];
  1857. if( !dict[lastPath] ){
  1858. dict[lastPath] = json;
  1859. }else if( typeOf( dict[lastPath] ) === "array" ){
  1860. dict[lastPath].push( json );
  1861. }
  1862. }
  1863. }else{
  1864. MWF.xScript.dictLoaded[key] = {};
  1865. MWF.xScript.dictLoaded[key][path] = json;
  1866. }
  1867. };
  1868. MWF.xScript.setDictToCache = function(key, path, json){
  1869. if( MWF.xScript.dictLoaded[key] ){
  1870. var matchedDict = MWF.xScript.getMatchedDict( key, path );
  1871. var dict = matchedDict.dict;
  1872. var list = matchedDict.unmatchedPathList;
  1873. if( !dict ){
  1874. MWF.xScript.dictLoaded[key][path] = json;
  1875. }else{
  1876. for( var j=0; j<list.length-1; j++ ){
  1877. if( !dict[ list[j] ] ){
  1878. dict[ list[j] ] = {};
  1879. }
  1880. dict = dict[ list[j] ];
  1881. }
  1882. dict[list[list.length-1]] = json;
  1883. }
  1884. }else{
  1885. MWF.xScript.dictLoaded[key] = {};
  1886. MWF.xScript.dictLoaded[key][path] = json;
  1887. }
  1888. };
  1889. MWF.xScript.getDictFromCache = function( key, path ){
  1890. var matchedDict = MWF.xScript.getMatchedDict( key, path );
  1891. var dict = matchedDict.dict;
  1892. var list = matchedDict.unmatchedPathList;
  1893. if( dict ){
  1894. for( var j=0; j<list.length; j++ ){
  1895. dict = dict[ list[j] ];
  1896. if( !dict )return null;
  1897. }
  1898. return dict;
  1899. }
  1900. return null;
  1901. };
  1902. MWF.xScript.deleteDictToCache = function(key, path){
  1903. var matchedDict = MWF.xScript.getMatchedDict( key, path );
  1904. var dict = matchedDict.dict;
  1905. var list = matchedDict.unmatchedPathList;
  1906. if( dict){
  1907. for( var j=0; j<list.length-1; j++ ){
  1908. dict = dict[ list[j] ];
  1909. if( !dict )return;
  1910. }
  1911. delete dict[list[list.length-1]];
  1912. }
  1913. };
  1914. MWF.xScript.createDict = function(application){
  1915. //optionsOrName : {
  1916. // type : "", //默认为process, 可以为 process cms
  1917. // application : "", //流程/CMS的名称/别名/id, 默认为当前应用
  1918. // name : "", // 数据字典名称/别名/id
  1919. // enableAnonymous : false //允许在未登录的情况下读取CMS的数据字典
  1920. //}
  1921. //或者name: "" // 数据字典名称/别名/id
  1922. return function(optionsOrName){
  1923. var options = optionsOrName;
  1924. if( typeOf( options ) == "string" ){
  1925. options = { name : options };
  1926. }
  1927. var name = this.name = options.name;
  1928. var type = ( options.type && options.application ) ? options.type : "process";
  1929. var applicationId = options.application || application;
  1930. var enableAnonymous = options.enableAnonymous || false;
  1931. var opt = {
  1932. "appType" : type,
  1933. "name" : name,
  1934. "appId" : applicationId,
  1935. "enableAnonymous" : enableAnonymous
  1936. };
  1937. var key = name+type+applicationId+enableAnonymous;
  1938. // if (!dictLoaded[key]) dictLoaded[key] = {};
  1939. // this.dictData = dictLoaded[key];
  1940. //MWF.require("MWF.xScript.Actions.DictActions", null, false);
  1941. if( type == "cms" ){
  1942. var action = MWF.Actions.get("x_cms_assemble_control");
  1943. }else{
  1944. var action = MWF.Actions.get("x_processplatform_assemble_surface");
  1945. }
  1946. var encodePath = function( path ){
  1947. var arr = path.split(/\./g);
  1948. var ar = arr.map(function(v){
  1949. return encodeURIComponent(v);
  1950. });
  1951. return ar.join("/");
  1952. };
  1953. this.get = function(path, success, failure, async, refresh){
  1954. var value = null;
  1955. if (!refresh ){
  1956. var data = MWF.xScript.getDictFromCache( key, path );
  1957. if( data ){
  1958. if (success && o2.typeOf(success)=="function") success( data );
  1959. return data;
  1960. }
  1961. }
  1962. if (success===true) async=true;
  1963. if (failure===true) async=true;
  1964. // var cb = function(json){
  1965. // value = json.data;
  1966. // MWF.xScript.addDictToCache(opt, path, value);
  1967. // if (success && o2.typeOf(success)=="function") value = success(json.data);
  1968. // return value;
  1969. // }.ag().catch(function(xhr, text, error){ if (failure && o2.typeOf(failure)=="function") return failure(xhr, text, error); });
  1970. var cb = function(json){
  1971. value = json.data;
  1972. MWF.xScript.addDictToCache(opt, path, value);
  1973. if (success && o2.typeOf(success)=="function") value = success(json.data);
  1974. return value;
  1975. };
  1976. var promise;
  1977. if (path){
  1978. var p = encodePath( path );
  1979. //var p = path.replace(/\./g, "/");
  1980. promise = action[ ( (enableAnonymous && type == "cms") ? "getDictDataAnonymous" : "getDictData" ) ](encodeURIComponent(this.name), applicationId, p, cb, null, !!async, false);
  1981. }else{
  1982. promise = action[ ( (enableAnonymous && type == "cms") ? "getDictRootAnonymous" : "getDictRoot" ) ](this.name, applicationId, cb, null, !!async, false);
  1983. }
  1984. return (!!async) ? promise : value;
  1985. // if (path){
  1986. // var p = encodePath( path );
  1987. // //var p = path.replace(/\./g, "/");
  1988. // action[ ( (enableAnonymous && type == "cms") ? "getDictDataAnonymous" : "getDictData" ) ](encodeURIComponent(this.name), applicationId, p, function(json){
  1989. // value = json.data;
  1990. // // this.dictData[path] = value;
  1991. // MWF.xScript.addDictToCache(opt, path, value);
  1992. // if (success) success(json.data);
  1993. // }.bind(this), function(xhr, text, error){
  1994. // if (failure) failure(xhr, text, error);
  1995. // }, !!async);
  1996. // }else{
  1997. // action[ ( (enableAnonymous && type == "cms") ? "getDictRootAnonymous" : "getDictRoot" ) ](this.name, applicationId, function(json){
  1998. // value = json.data;
  1999. // // this.dictData["root"] = value;
  2000. // MWF.xScript.addDictToCache(opt, path, value);
  2001. // if (success) success(json.data);
  2002. // }.bind(this), function(xhr, text, error){
  2003. // if (failure) failure(xhr, text, error);
  2004. // }, !!async);
  2005. // }
  2006. //return value;
  2007. };
  2008. this.set = function(path, value, success, failure){
  2009. var p = encodePath( path );
  2010. //var p = path.replace(/\./g, "/");
  2011. return action.setDictData(encodeURIComponent(this.name), applicationId, p, value, function(json){
  2012. MWF.xScript.setDictToCache(key, path, value);
  2013. if (success) return success(json.data);
  2014. }, function(xhr, text, error){
  2015. if (failure) return failure(xhr, text, error);
  2016. }, false, false);
  2017. };
  2018. this.add = function(path, value, success, failure){
  2019. var p = encodePath( path );
  2020. //var p = path.replace(/\./g, "/");
  2021. return action.addDictData(encodeURIComponent(this.name), applicationId, p, value, function(json){
  2022. MWF.xScript.insertDictToCache(key, path, value);
  2023. if (success) return success(json.data);
  2024. }, function(xhr, text, error){
  2025. if (failure) return failure(xhr, text, error);
  2026. }, false, false);
  2027. };
  2028. this["delete"] = function(path, success, failure){
  2029. var p = encodePath( path );
  2030. //var p = path.replace(/\./g, "/");
  2031. return action.deleteDictData(encodeURIComponent(this.name), applicationId, p, function(json){
  2032. MWF.xScript.deleteDictToCache(key, path);
  2033. if (success) return success(json.data);
  2034. }, function(xhr, text, error){
  2035. if (failure) return failure(xhr, text, error);
  2036. }, false, false);
  2037. };
  2038. this.destory = this["delete"];
  2039. }
  2040. };