PageEnvironment.js 101 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394
  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. /**
  1308. * page对象可在门户页面中可用。它的很多方法与form类似。<b>(仅前端脚本可用)</b><br/>
  1309. * @module page
  1310. * @example
  1311. * //您可以在门户表单中,通过this来获取page对象,如下:
  1312. * var page = this.page;
  1313. */
  1314. this.page = this.form = {
  1315. /** 跳转到当前门户的指定页面。<b>(仅门户脚本可用)</b>
  1316. * @method toPage
  1317. * @static
  1318. * @param {String} name - 要跳转的页面名称
  1319. * @param {Object} [par] - 要传入被打开页面的数据。在被打开的页面可以用this.page.parameters获取
  1320. * @param {Boolean} [par] - 页面条件的时候,不往History里增加历史状态,默认为false
  1321. * @example
  1322. * //跳转到当前门户的指定页面。
  1323. * this.page.toPage( name, par );
  1324. * @example
  1325. * this.page.toPage("列表页面", {"key": "发文列表"});//打开“列表页面”,并传入一个json数据。
  1326. *
  1327. * //在列表页面中,通过this.page.parameters获取传入的数据。
  1328. * var key = this.page.parameters.key; //key="发文列表"
  1329. */
  1330. "toPage": function (name, par, nohis) {
  1331. _form.app.toPage(name, par, nohis);
  1332. },
  1333. /** 跳转到指定门户页面。<b>(仅门户脚本可用)</b>
  1334. * @method toPortal
  1335. * @static
  1336. * @param {String} portal - 要跳转的门户名称。
  1337. * @param {String} [page] - 要打开的门户的页面名称。为空则打开指定门户的默认首页。
  1338. * @param {String} [par] - 在被打开的页面可以用this.page.parameters获取。
  1339. * @example
  1340. * this.page.toPortal( portal, page, par );
  1341. * @example
  1342. * this.page.toPortal("公文门户", "列表页面", {"key": "发文列表"});//打开“公文门户”的“列表页面”,并传入一个json数据。
  1343. *
  1344. * //在列表页面中,通过this.page.parameters获取传入的数据。
  1345. * var key = this.page.parameters.key; //key="发文列表"
  1346. */
  1347. "toPortal": function (portal, page, par) {
  1348. _form.app.toPortal(portal, page, par);
  1349. },
  1350. /**获取当前页面的基本信息
  1351. * @method getInfor
  1352. * @static
  1353. * @see module:form.getInfor
  1354. */
  1355. "getInfor": function () { return ev.pageInfor; },
  1356. "infor": ev.pageInfor,
  1357. /**获取打开当前页面的component对象。
  1358. * @method getApp
  1359. * @static
  1360. * @see module:form.getApp
  1361. */
  1362. "getApp": function () { return _form.app; },
  1363. "app": _form.app,
  1364. /**获取page对应的DOM对象。
  1365. * @method node
  1366. * @static
  1367. * @see module:form.node
  1368. */
  1369. "node": function () { return _form.node; },
  1370. //"readonly": _form.options.readonly,
  1371. /**获取页面元素对象。
  1372. * @method get
  1373. * @static
  1374. * @see module:form.get
  1375. */
  1376. "get": function (name) { return (_form.all) ? _form.all[name] : null; },
  1377. /**获取指定部件元素对象。<br/>
  1378. * @method getWidgetModule
  1379. * @static
  1380. * @param {String} widget - 在主页面嵌入部件时用的标识。
  1381. * @param {String} moduleName - 部件元素标识。
  1382. * @return {FormComponent} 请查看本文档的Classes导航下的FormComponents。
  1383. * @see module:form.get
  1384. * @example
  1385. * <caption>
  1386. * 1、设计了一个部件,包含一个设计元素subject。<br/>
  1387. * 2、在主页面里两次嵌入1步骤创建的部件,一个标识是widget_1, widget_2。
  1388. * </caption>
  1389. * var module = this.page.getWidgetModule( "widget_1", "subject"); //部件widget_1的subject组件
  1390. * var data2 = this.page.getWidgetModule( "widget_2", "subject").getData(); //部件widget_2的subject组件的值
  1391. */
  1392. "getWidgetModule": function (widget, moduleName) {
  1393. if (!_form.widgetModules || !_form.widgetModules[widget]) return null;
  1394. var module = _form.widgetModules[widget][moduleName];
  1395. return module || null;
  1396. },
  1397. /**获取页面中可输入的字段元素对象
  1398. * @method getField
  1399. * @static
  1400. * @see module:form.getField
  1401. */
  1402. "getField": function (name) { return _forms[name]; },
  1403. "getAction": function () { return _form.workAction },
  1404. "getDesktop": function () { return _form.app.desktop },
  1405. "getData": function () { return new MWF.xScript.JSONData(_form.getData()); },
  1406. //"save": function(callback){_form.saveWork(callback);},
  1407. /**关闭当前页面
  1408. * @method close
  1409. * @static
  1410. * @see module:form.close
  1411. */
  1412. "close": function () { _form.closeWork(); },
  1413. "print": function (application, form) {
  1414. _form.printWork(application, form);
  1415. },
  1416. /**弹出一个确认框
  1417. * @method confirm
  1418. * @static
  1419. * @see module:form.confirm
  1420. */
  1421. "confirm": function (type, title, text, width, height, ok, cancel, callback, mask, style) {
  1422. // var p = MWF.getCenter({"x": width, "y": height});
  1423. // e = {"event": {"clientX": p.x,"x": p.x,"clientY": p.y,"y": p.y}};
  1424. // _form.confirm(type, e, title, text, width, height, ok, cancel, callback, mask, style);
  1425. if ((arguments.length <= 1) || o2.typeOf(arguments[1]) === "string") {
  1426. var p = MWF.getCenter({ "x": width, "y": height });
  1427. e = { "event": { "clientX": p.x, "x": p.x, "clientY": p.y, "y": p.y } };
  1428. _form.confirm(type, e, title, text, width, height, ok, cancel, callback, mask, style);
  1429. } else {
  1430. e = (arguments.length > 1) ? arguments[1] : null;
  1431. title = (arguments.length > 2) ? arguments[2] : null;
  1432. text = (arguments.length > 3) ? arguments[3] : null;
  1433. width = (arguments.length > 4) ? arguments[4] : null;
  1434. height = (arguments.length > 5) ? arguments[5] : null;
  1435. ok = (arguments.length > 6) ? arguments[6] : null;
  1436. cancel = (arguments.length > 7) ? arguments[7] : null;
  1437. callback = (arguments.length > 8) ? arguments[8] : null;
  1438. mask = (arguments.length > 9) ? arguments[9] : null;
  1439. style = (arguments.length > 10) ? arguments[10] : null;
  1440. _form.confirm(type, e, title, text, width, height, ok, cancel, callback, mask, style);
  1441. }
  1442. },
  1443. /**显示一个带关闭按钮的信息框
  1444. * @method alert
  1445. * @static
  1446. * @see module:form.alert
  1447. */
  1448. "alert": function(type, title, text, width, height){
  1449. _form.alert(type, title, text, width, height);
  1450. },
  1451. /**显示一个信息框
  1452. * @method notice
  1453. * @static
  1454. * @see module:form.notice
  1455. */
  1456. "notice": function (content, type, target, where, offset, option) {
  1457. _form.notice(content, type, target, where, offset, option);
  1458. },
  1459. /**给页面添加事件。
  1460. * @method addEvent
  1461. * @static
  1462. * @see module:form.addEvent
  1463. */
  1464. "addEvent": function (e, f) { _form.addEvent(e, f); },
  1465. "openWindow": function (form, app) {
  1466. _form.openWindow(form, app);
  1467. },
  1468. /**打开一个在流转或已完成的流程实例
  1469. * @method openWork
  1470. * @static
  1471. * @see module:form.openWork
  1472. */
  1473. "openWork": function (id, completedId, title, options) {
  1474. var op = options || {};
  1475. op.workId = id;
  1476. op.workCompletedId = completedId;
  1477. op.docTitle = title;
  1478. op.appId = "process.Work" + (op.workId || op.workCompletedId);
  1479. return layout.desktop.openApplication(this.event, "process.Work", op);
  1480. },
  1481. /**使用流程的jobId打开工作
  1482. * @method openJob
  1483. * @static
  1484. * @see module:form.openJob
  1485. */
  1486. "openJob": function (id, choice, options) {
  1487. var workData = null;
  1488. o2.Actions.get("x_processplatform_assemble_surface").listWorkByJob(id, function (json) {
  1489. if (json.data) workData = json.data;
  1490. }.bind(this), null, false);
  1491. if (workData) {
  1492. var len = workData.workList.length + workData.workCompletedList.length;
  1493. if (len) {
  1494. if (len > 1 && choice) {
  1495. var node = new Element("div", { "styles": { "padding": "20px", "width": "500px" } }).inject(_form.node);
  1496. workData.workList.each(function (work) {
  1497. var workNode = new Element("div", {
  1498. "styles": {
  1499. "background": "#ffffff",
  1500. "border-radius": "10px",
  1501. "clear": "both",
  1502. "margin-bottom": "10px",
  1503. "height": "40px",
  1504. "padding": "10px 10px"
  1505. }
  1506. }).inject(node);
  1507. 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>" +
  1508. "<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>" +
  1509. "<div style='height: 20px; line-height: 20px; margin: 0px 40px'>" + work.title + "</div>" +
  1510. "<div style='margin: 0px 40px'><div style='color:#999999; float: left; margin-right: 10px'>" + work.activityName + "</div>" +
  1511. "<div style='color:#999999; float: left; margin-right: 10px'>" + work.activityArrivedTime + "</div>" +
  1512. "<div style='color:#999999; float: left; margin-right: 10px'>" + (work.manualTaskIdentityText || "") + "</div></div>";
  1513. workNode.set("html", html);
  1514. var action = workNode.getElement(".MWFAction");
  1515. action.store("work", work);
  1516. action.addEvent("click", function (e) {
  1517. var work = e.target.retrieve("work");
  1518. if (work) this.openWork(work.id, null, work.title, options);
  1519. dlg.close();
  1520. }.bind(this));
  1521. }.bind(this));
  1522. workData.workCompletedList.each(function (work) {
  1523. var workNode = new Element("div", {
  1524. "styles": {
  1525. "background": "#ffffff",
  1526. "border-radius": "10px",
  1527. "clear": "both",
  1528. "margin-bottom": "10px",
  1529. "height": "40px",
  1530. "padding": "10px 10px"
  1531. }
  1532. }).inject(node);
  1533. 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>" +
  1534. "<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>" +
  1535. "<div style='height: 20px; line-height: 20px; margin: 0px 40px'>" + work.title + "</div>" +
  1536. "<div style='margin: 0px 40px'><div style='color:#999999; float: left; margin-right: 10px'>" + o2.LP.widget.workcompleted + "</div>" +
  1537. "<div style='color:#999999; float: left; margin-right: 10px'>" + work.completedTime + "</div>";
  1538. workNode.set("html", html);
  1539. var action = workNode.getElement(".MWFAction");
  1540. action.store("work", work);
  1541. action.addEvent("click", function (e) {
  1542. var work = e.target.retrieve("work");
  1543. if (work) this.openWork(null, work.id, work.title, options);
  1544. dlg.close();
  1545. }.bind(this));
  1546. }.bind(this));
  1547. var height = node.getSize().y + 20;
  1548. if (height > 600) height = 600;
  1549. var dlg = o2.DL.open({
  1550. "title": o2.LP.widget.choiceWork,
  1551. "style": "user",
  1552. "isResize": false,
  1553. "content": node,
  1554. "buttonList": [
  1555. {
  1556. "type": "cancel",
  1557. "text": o2.LP.widget.close,
  1558. "action": function () { dlg.close(); }
  1559. }
  1560. ]
  1561. });
  1562. } else {
  1563. if (workData.workList.length) {
  1564. var work = workData.workList[0];
  1565. return this.openWork(work.id, null, work.title, options);
  1566. } else {
  1567. var work = workData.workCompletedList[0];
  1568. return this.openWork(null, work.id, work.title, options);
  1569. }
  1570. }
  1571. }
  1572. }
  1573. },
  1574. /**打开一个内容管理文档
  1575. * @method openDocument
  1576. * @static
  1577. * @see module:form.openDocument
  1578. */
  1579. "openDocument": function (id, title, options) {
  1580. var op = options || {};
  1581. op.documentId = id;
  1582. op.docTitle = title || "";
  1583. layout.desktop.openApplication(this.event, "cms.Document", op);
  1584. },
  1585. /**打开一个门户页面
  1586. * @method openPortal
  1587. * @static
  1588. * @see module:form.openPortal
  1589. */
  1590. "openPortal": function (name, page, par) {
  1591. var action = MWF.Actions.get("x_portal_assemble_surface");
  1592. action.getApplication(name, function (json) {
  1593. if (json.data) {
  1594. if (page) {
  1595. action.getPageByName(page, json.data.id, function (pageJson) {
  1596. var pageId = (pageJson.data) ? pageJson.data.id : "";
  1597. layout.desktop.openApplication(null, "portal.Portal", {
  1598. "portalId": json.data.id,
  1599. "pageId": pageId,
  1600. "parameters": par,
  1601. "appId": (par && par.appId) || ("portal.Portal" + json.data.id + pageId)
  1602. })
  1603. });
  1604. } else {
  1605. layout.desktop.openApplication(null, "portal.Portal", {
  1606. "portalId": json.data.id,
  1607. "parameters": par,
  1608. "appId": (par && par.appId) || ("portal.Portal" + json.data.id)
  1609. })
  1610. }
  1611. }
  1612. });
  1613. },
  1614. /**打开一个内容管理栏目(应用)
  1615. * @method openCMS
  1616. * @static
  1617. * @see module:form.openCMS
  1618. */
  1619. "openCMS": function (name) {
  1620. var action = MWF.Actions.get("x_cms_assemble_control");
  1621. action.getColumn(name, function (json) {
  1622. if (json.data) {
  1623. layout.desktop.openApplication(null, "cms.Module", {
  1624. "columnId": json.data.id,
  1625. "appId": "cms.Module" + json.data.id
  1626. });
  1627. }
  1628. });
  1629. },
  1630. /**打开一个流程应用
  1631. * @method openProcess
  1632. * @static
  1633. * @see module:form.openProcess
  1634. */
  1635. "openProcess": function (name) {
  1636. var action = MWF.Actions.get("x_processplatform_assemble_surface");
  1637. action.getApplication(name, function (json) {
  1638. if (json.data) {
  1639. layout.desktop.openApplication(null, "process.Application", {
  1640. "id": json.data.id,
  1641. "appId": "process.Application" + json.data.id
  1642. });
  1643. }
  1644. });
  1645. },
  1646. /**打开一个任意一个component应用
  1647. * @method openApplication
  1648. * @static
  1649. * @see module:form.openApplication
  1650. */
  1651. "openApplication": function (name, options) {
  1652. layout.desktop.openApplication(null, name, options);
  1653. },
  1654. /**创建一个内容管理文档
  1655. * @method createDocument
  1656. * @static
  1657. * @see module:form.createDocument
  1658. */
  1659. "createDocument": function (columnOrOptions, category, data, identity, callback, target, latest, selectColumnEnable, ignoreTitle) {
  1660. var column = columnOrOptions;
  1661. var onAfterPublish, onPostPublish;
  1662. if (typeOf(columnOrOptions) == "object") {
  1663. column = columnOrOptions.column;
  1664. category = columnOrOptions.category;
  1665. data = columnOrOptions.data;
  1666. identity = columnOrOptions.identity;
  1667. callback = columnOrOptions.callback;
  1668. target = columnOrOptions.target;
  1669. latest = columnOrOptions.latest;
  1670. selectColumnEnable = columnOrOptions.selectColumnEnable;
  1671. ignoreTitle = columnOrOptions.ignoreTitle;
  1672. onAfterPublish = columnOrOptions.onAfterPublish;
  1673. onPostPublish = columnOrOptions.onPostPublish;
  1674. }
  1675. if (target) {
  1676. if (layout.app && layout.app.inBrowser) {
  1677. layout.app.content.empty();
  1678. layout.app = null;
  1679. }
  1680. }
  1681. MWF.xDesktop.requireApp("cms.Index", "Newer", function () {
  1682. var starter = new MWF.xApplication.cms.Index.Newer(null, null, _form.app, null, {
  1683. "documentData": data,
  1684. "identity": identity,
  1685. "ignoreTitle": ignoreTitle === true,
  1686. "ignoreDrafted": latest === false,
  1687. "selectColumnEnable": !category || selectColumnEnable === true,
  1688. "restrictToColumn": !!category && selectColumnEnable !== true,
  1689. "categoryFlag": category, //category id or name
  1690. "columnFlag": column, //column id or name,
  1691. "onStarted": function (documentId, data) {
  1692. if (callback) callback();
  1693. },
  1694. "onPostPublish": function () {
  1695. if(onPostPublish)onPostPublish();
  1696. },
  1697. "onAfterPublish": function () {
  1698. if(onAfterPublish)onAfterPublish();
  1699. }
  1700. });
  1701. starter.load();
  1702. })
  1703. },
  1704. /**启动一个流程实例
  1705. * @method startProcess
  1706. * @static
  1707. * @see module:form.startProcess
  1708. */
  1709. "startProcess": function (app, process, data, identity, callback, target, latest) {
  1710. if (arguments.length > 2) {
  1711. for (var i = 2; i < arguments.length; i++) {
  1712. if (typeOf(arguments[i]) == "boolean") {
  1713. target = arguments[i];
  1714. break;
  1715. }
  1716. }
  1717. }
  1718. if (target) {
  1719. if (layout.app && layout.app.inBrowser) {
  1720. //layout.app.content.empty();
  1721. layout.app.$openWithSelf = true;
  1722. }
  1723. }
  1724. var action = MWF.Actions.get("x_processplatform_assemble_surface").getProcessByName(process, app, function (json) {
  1725. if (json.data) {
  1726. MWF.xDesktop.requireApp("process.TaskCenter", "ProcessStarter", function () {
  1727. var starter = new MWF.xApplication.process.TaskCenter.ProcessStarter(json.data, _form.app, {
  1728. "workData": data,
  1729. "identity": identity,
  1730. "latest": latest,
  1731. "onStarted": function (data, title, processName) {
  1732. if (data.work){
  1733. var work = data.work;
  1734. var options = {"draft": work, "appId": "process.Work"+(new o2.widget.UUID).toString(), "desktopReload": false};
  1735. layout.desktop.openApplication(null, "process.Work", options);
  1736. }else{
  1737. var currentTask = [];
  1738. data.each(function(work){
  1739. if (work.currentTaskIndex != -1) currentTask.push(work.taskList[work.currentTaskIndex].work);
  1740. }.bind(this));
  1741. if (currentTask.length==1){
  1742. var options = {"workId": currentTask[0], "appId": currentTask[0]};
  1743. layout.desktop.openApplication(null, "process.Work", options);
  1744. }else{}
  1745. }
  1746. // var currentTask = [];
  1747. // data.each(function (work) {
  1748. // if (work.currentTaskIndex != -1) currentTask.push(work.taskList[work.currentTaskIndex].work);
  1749. // }.bind(this));
  1750. //
  1751. // if (currentTask.length == 1) {
  1752. // var options = { "workId": currentTask[0], "appId": currentTask[0] };
  1753. // layout.desktop.openApplication(null, "process.Work", options);
  1754. // } else { }
  1755. if (callback) callback(data);
  1756. }.bind(this)
  1757. });
  1758. starter.load();
  1759. }.bind(this));
  1760. }
  1761. });
  1762. },
  1763. /**
  1764. * 在打开的页面的任意脚本中,获取传入的参数。
  1765. * @member parameters
  1766. * @static
  1767. * @return {Boolean} 任意数据类型,根据传入的参数决定。
  1768. * @example
  1769. * //打开页面时传入参数:
  1770. * this.form.openPortal(id, "", {"type": "my type"});
  1771. *
  1772. * //在打开的页面的任意脚本中,可以获取parameters:
  1773. * var par = this.page.parameters;
  1774. * //par的内容:{"type": "my type"}
  1775. */
  1776. "parameters": _form.options.parameters,
  1777. /**
  1778. * 在嵌入部件的时候,可以在主页面上传入参数。通过本方法,可以在对应部件或者部件元素的脚本中获取传入的参数。
  1779. * @method getWidgetPrameters
  1780. * @static
  1781. * @return {Object} 任意数据类型,根据传入的参数决定。
  1782. * @example
  1783. * var par = this.page.getWidgetPrameters();
  1784. * @example
  1785. * //在主页面嵌入部件的地方传入参数:
  1786. * return {"type": "my type"};
  1787. *
  1788. * //在对应部件脚本中,可以获取parameters:
  1789. * var par = this.page.getWidgetPrameters();
  1790. * //par的内容:{"type": "my type"}
  1791. */
  1792. "getWidgetPrameters": function () {
  1793. if (!this.target) return null;
  1794. if (!this.target.widget) return null;
  1795. if (!this.widgetParameters) return null;
  1796. var pageId = this.target.widget.json.id;
  1797. return this.widgetParameters[pageId];
  1798. }.bind(this)
  1799. //"app": _form.app
  1800. };
  1801. this.form.currentRouteName = _form.json.currentRouteName;
  1802. this.form.opinion = _form.json.opinion;
  1803. this.target = ev.target;
  1804. this.event = ev.event;
  1805. this.status = ev.status;
  1806. this.session = layout.desktop.session;
  1807. this.Actions = o2.Actions;
  1808. this.query = function (option) {
  1809. // options = {
  1810. // "name": "statementName",
  1811. // "data": "json data",
  1812. // "firstResult": 1,
  1813. // "maxResults": 100,
  1814. // "success": function(){},
  1815. // "error": function(){},
  1816. // "async": true or false, default is true
  1817. // }
  1818. if (option) {
  1819. var json = (option.data) || {};
  1820. if (option.firstResult) json.firstResult = option.firstResult.toInt();
  1821. if (option.maxResults) json.maxResults = option.maxResults.toInt();
  1822. o2.Actions.get("x_query_assemble_surface").executeStatement(option.name, json, success, error, options.async);
  1823. }
  1824. };
  1825. this.Table = MWF.xScript.createTable();
  1826. };
  1827. MWF.xScript.createTable = function(){
  1828. return function(name){
  1829. this.name = name;
  1830. this.action = o2.Actions.get("x_query_assemble_surface");
  1831. this.listRowNext = function(id, count, success, error, async){
  1832. this.action.listRowNext(this.name, id, count, success, error, async);
  1833. };
  1834. this.listRowPrev = function(id, count, success, error, async){
  1835. this.action.listRowPrev(this.name, id, count, success, error, async);
  1836. };
  1837. this.listRowPrev = function(id, count, success, error, async){
  1838. this.action.listRowPrev(this.name, id, count, success, error, async);
  1839. };
  1840. this.listRowSelectWhere = function(where, success, error, async){
  1841. this.action.listRowSelectWhere(this.name, where, success, error, async);
  1842. };
  1843. this.listRowCountWhere = function(where, success, error, async){
  1844. this.action.listRowCountWhere(this.name, where, success, error, async);
  1845. };
  1846. this.deleteRow = function(id, success, error, async){
  1847. this.action.deleteRow(this.name, id, success, error, async);
  1848. };
  1849. this.deleteAllRow = function(success, error, async){
  1850. this.action.deleteAllRow(this.name, success, error, async);
  1851. };
  1852. this.getRow = function(id, success, error, async){
  1853. this.action.getRow(this.name, id, success, error, async);
  1854. };
  1855. this.insertRow = function(data, success, error, async){
  1856. this.action.insertRow(this.name, data, success, error, async);
  1857. };
  1858. this.updateRow = function(id, data, success, error, async){
  1859. this.action.updateRow(this.name, id, data, success, error, async);
  1860. };
  1861. }
  1862. };
  1863. MWF.xScript.JSONData = function(data, callback, key, parent, _form){
  1864. var getter = function(data, callback, k, _self){
  1865. return function(){return (["array","object"].indexOf(typeOf(data[k]))===-1) ? data[k] : new MWF.xScript.JSONData(data[k], callback, k, _self, _form);};
  1866. };
  1867. var setter = function(data, callback, k, _self){
  1868. return function(v){
  1869. data[k] = v;
  1870. //debugger;
  1871. //this.add(k, v, true);
  1872. if (callback) callback(data, k, _self);
  1873. }
  1874. };
  1875. var define = function(){
  1876. var o = {};
  1877. 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])};
  1878. o["length"] = {"get": function(){return Object.keys(data).length;}};
  1879. o["some"] = {"get": function(){return data.some;}};
  1880. MWF.defineProperties(this, o);
  1881. var methods = {
  1882. "getKey": {"value": function(){ return key; }},
  1883. "getParent": {"value": function(){ return parent; }},
  1884. "toString": {"value": function() { return data.toString();}},
  1885. "setSection": {"value": function(newKey, newValue){
  1886. this.add(newKey, newValue, true);
  1887. try {
  1888. var path = [this.getKey()];
  1889. p = this.getParent();
  1890. while (p && p.getKey()){
  1891. path.unshift(p.getKey());
  1892. p = p.getParent();
  1893. }
  1894. if (path.length) _form.sectionListObj[path.join(".")] = newKey;
  1895. }catch(e){
  1896. }
  1897. }},
  1898. "add": {"value": function(newKey, newValue, overwrite){
  1899. var flag = true;
  1900. var type = typeOf(data);
  1901. if (type==="array"){
  1902. if (arguments.length<2){
  1903. data.push(newKey);
  1904. newValue = newKey;
  1905. newKey = data.length-1;
  1906. }else{
  1907. if (!newKey && newKey!==0){
  1908. data.push(newValue);
  1909. newKey = data.length-1;
  1910. }else{
  1911. flag = false;
  1912. }
  1913. }
  1914. if (flag){
  1915. var o = {};
  1916. o[newKey] = {"configurable": true, "enumerable": true, "get": getter.apply(this, [data, callback, newKey, this]),"set": setter.apply(this, [data, callback, newKey, this])};
  1917. MWF.defineProperties(this, o);
  1918. }
  1919. this[newKey] = newValue;
  1920. }else if (type==="object"){
  1921. if (!this.hasOwnProperty(newKey)){
  1922. data[newKey] = newValue;
  1923. if (flag){
  1924. var o = {};
  1925. o[newKey] = {"configurable": true, "enumerable": true, "get": getter.apply(this, [data, callback, newKey, this]),"set": setter.apply(this, [data, callback, newKey, this])};
  1926. MWF.defineProperties(this, o);
  1927. }
  1928. this[newKey] = newValue;
  1929. }else{
  1930. if (overwrite) this[newKey] = newValue;
  1931. }
  1932. }
  1933. return this[newKey];
  1934. }},
  1935. "del": {"value": function(delKey){
  1936. if (!this.hasOwnProperty(delKey)) return null;
  1937. delete data[delKey];
  1938. delete this[delKey];
  1939. return this;
  1940. }}
  1941. };
  1942. MWF.defineProperties(this, methods);
  1943. };
  1944. var type = typeOf(data);
  1945. if (type==="object" || type==="array") define.apply(this);
  1946. };
  1947. if( !MWF.xScript.dictLoaded )MWF.xScript.dictLoaded = {};
  1948. MWF.xScript.addDictToCache = function ( options, path, json ) {
  1949. if( !path )path = "root";
  1950. if( path.indexOf("root") !== 0 )path = "root." + path ;
  1951. var type = options.appType || "process";
  1952. var enableAnonymous = options.enableAnonymous || false;
  1953. var appFlagList = [];
  1954. if( options.application )appFlagList.push( options.application );
  1955. if( options.appId )appFlagList.push( options.appId );
  1956. if( options.appName )appFlagList.push( options.appName );
  1957. if( options.appAlias )appFlagList.push( options.appAlias );
  1958. var dictFlagList = [];
  1959. if( options.id )dictFlagList.push( options.id );
  1960. if( options.name )dictFlagList.push( options.name );
  1961. if( options.alias )dictFlagList.push( options.alias );
  1962. var cache = {};
  1963. cache[path] = json;
  1964. for( var i=0; i<appFlagList.length; i++ ){
  1965. for( var j=0; j<dictFlagList.length; j++ ){
  1966. var k = dictFlagList[j] + type + appFlagList[i] + enableAnonymous;
  1967. if( !MWF.xScript.dictLoaded[k] ){
  1968. MWF.xScript.dictLoaded[k] = cache; //指向同一个对象
  1969. // MWF.xScript.dictLoaded[k][path] = json; //指向不同的对象
  1970. }else if( i===0 && j===0 ){
  1971. MWF.xScript.setDictToCache( k, path ,json );
  1972. var arr = path.split(/\./g);
  1973. var p;
  1974. var cache = MWF.xScript.dictLoaded[k];
  1975. for( var l=0 ; l<arr.length; l++ ){
  1976. p = l === 0 ? arr[0] : ( p + "." + arr[l] );
  1977. if( cache[ p ] )break;
  1978. }
  1979. if( p ){
  1980. var mathP = p+".";
  1981. Object.keys( cache ).each( function( path, idx){
  1982. if( path.indexOf( mathP ) === 0 )delete cache[path];
  1983. })
  1984. }
  1985. }
  1986. }
  1987. }
  1988. };
  1989. MWF.xScript.getMatchedDict = function(key, path){
  1990. if( !path )path = "root";
  1991. if( path.indexOf("root") !== 0 )path = "root." + path ;
  1992. var arr = path.split(/\./g);
  1993. if( MWF.xScript.dictLoaded[key] ){
  1994. var dicts = MWF.xScript.dictLoaded[key];
  1995. var list = Array.clone(arr);
  1996. var p;
  1997. var dict;
  1998. for( var i=0 ; i<arr.length; i++ ){
  1999. p = i === 0 ? arr[0] : ( p + "." + arr[i] );
  2000. list.shift();
  2001. if( dicts[ p ] ){
  2002. dict = dicts[ p ];
  2003. break;
  2004. }
  2005. }
  2006. return {
  2007. dict : dict,
  2008. unmatchedPathList : list
  2009. }
  2010. }
  2011. return {
  2012. dict : null,
  2013. unmatchedPathList : list
  2014. }
  2015. };
  2016. MWF.xScript.insertDictToCache = function(key, path, json){
  2017. if( MWF.xScript.dictLoaded[key] ){
  2018. var matchedDict = MWF.xScript.getMatchedDict( key, path );
  2019. var dict = matchedDict.dict;
  2020. var list = matchedDict.unmatchedPathList;
  2021. if( !dict ){
  2022. MWF.xScript.dictLoaded[key][path] = json;
  2023. }else{
  2024. for( var j=0; j<list.length-1; j++ ){
  2025. if( !dict[ list[j] ] ){
  2026. dict[ list[j] ] = {};
  2027. }
  2028. dict = dict[ list[j] ];
  2029. }
  2030. var lastPath = list[list.length-1];
  2031. if( !dict[lastPath] ){
  2032. dict[lastPath] = json;
  2033. }else if( typeOf( dict[lastPath] ) === "array" ){
  2034. dict[lastPath].push( json );
  2035. }
  2036. }
  2037. }else{
  2038. MWF.xScript.dictLoaded[key] = {};
  2039. MWF.xScript.dictLoaded[key][path] = json;
  2040. }
  2041. };
  2042. MWF.xScript.setDictToCache = function(key, path, json){
  2043. if( MWF.xScript.dictLoaded[key] ){
  2044. var matchedDict = MWF.xScript.getMatchedDict( key, path );
  2045. var dict = matchedDict.dict;
  2046. var list = matchedDict.unmatchedPathList;
  2047. if( !dict ){
  2048. MWF.xScript.dictLoaded[key][path] = json;
  2049. }else{
  2050. for( var j=0; j<list.length-1; j++ ){
  2051. if( !dict[ list[j] ] ){
  2052. dict[ list[j] ] = {};
  2053. }
  2054. dict = dict[ list[j] ];
  2055. }
  2056. dict[list[list.length-1]] = json;
  2057. }
  2058. }else{
  2059. MWF.xScript.dictLoaded[key] = {};
  2060. MWF.xScript.dictLoaded[key][path] = json;
  2061. }
  2062. };
  2063. MWF.xScript.getDictFromCache = function( key, path ){
  2064. var matchedDict = MWF.xScript.getMatchedDict( key, path );
  2065. var dict = matchedDict.dict;
  2066. var list = matchedDict.unmatchedPathList;
  2067. if( dict ){
  2068. for( var j=0; j<list.length; j++ ){
  2069. dict = dict[ list[j] ];
  2070. if( !dict )return null;
  2071. }
  2072. return dict;
  2073. }
  2074. return null;
  2075. };
  2076. MWF.xScript.deleteDictToCache = function(key, path){
  2077. var matchedDict = MWF.xScript.getMatchedDict( key, path );
  2078. var dict = matchedDict.dict;
  2079. var list = matchedDict.unmatchedPathList;
  2080. if( dict){
  2081. for( var j=0; j<list.length-1; j++ ){
  2082. dict = dict[ list[j] ];
  2083. if( !dict )return;
  2084. }
  2085. delete dict[list[list.length-1]];
  2086. }
  2087. };
  2088. MWF.xScript.createDict = function(application){
  2089. //optionsOrName : {
  2090. // type : "", //默认为process, 可以为 process cms
  2091. // application : "", //流程/CMS的名称/别名/id, 默认为当前应用
  2092. // name : "", // 数据字典名称/别名/id
  2093. // enableAnonymous : false //允许在未登录的情况下读取CMS的数据字典
  2094. //}
  2095. //或者name: "" // 数据字典名称/别名/id
  2096. return function(optionsOrName){
  2097. var options = optionsOrName;
  2098. if( typeOf( options ) == "string" ){
  2099. options = { name : options };
  2100. }
  2101. var name = this.name = options.name;
  2102. var type = ( options.type && options.application ) ? options.type : "process";
  2103. var applicationId = options.application || application;
  2104. var enableAnonymous = options.enableAnonymous || false;
  2105. var opt = {
  2106. "appType" : type,
  2107. "name" : name,
  2108. "appId" : applicationId,
  2109. "enableAnonymous" : enableAnonymous
  2110. };
  2111. var key = name+type+applicationId+enableAnonymous;
  2112. // if (!dictLoaded[key]) dictLoaded[key] = {};
  2113. // this.dictData = dictLoaded[key];
  2114. //MWF.require("MWF.xScript.Actions.DictActions", null, false);
  2115. if( type == "cms" ){
  2116. var action = MWF.Actions.get("x_cms_assemble_control");
  2117. }else{
  2118. var action = MWF.Actions.get("x_processplatform_assemble_surface");
  2119. }
  2120. var encodePath = function( path ){
  2121. var arr = path.split(/\./g);
  2122. var ar = arr.map(function(v){
  2123. return encodeURIComponent(v);
  2124. });
  2125. return ar.join("/");
  2126. };
  2127. this.get = function(path, success, failure, async, refresh){
  2128. var value = null;
  2129. if (!refresh ){
  2130. var data = MWF.xScript.getDictFromCache( key, path );
  2131. if( data ){
  2132. if (success && o2.typeOf(success)=="function") success( data );
  2133. return data;
  2134. }
  2135. }
  2136. if (success===true) async=true;
  2137. if (failure===true) async=true;
  2138. // var cb = function(json){
  2139. // value = json.data;
  2140. // MWF.xScript.addDictToCache(opt, path, value);
  2141. // if (success && o2.typeOf(success)=="function") value = success(json.data);
  2142. // return value;
  2143. // }.ag().catch(function(xhr, text, error){ if (failure && o2.typeOf(failure)=="function") return failure(xhr, text, error); });
  2144. var cb = function(json){
  2145. value = json.data;
  2146. MWF.xScript.addDictToCache(opt, path, value);
  2147. if (success && o2.typeOf(success)=="function") value = success(json.data);
  2148. return value;
  2149. };
  2150. var promise;
  2151. if (path){
  2152. var p = encodePath( path );
  2153. //var p = path.replace(/\./g, "/");
  2154. promise = action[ ( (enableAnonymous && type == "cms") ? "getDictDataAnonymous" : "getDictData" ) ](encodeURIComponent(this.name), applicationId, p, cb, null, !!async, false);
  2155. }else{
  2156. promise = action[ ( (enableAnonymous && type == "cms") ? "getDictRootAnonymous" : "getDictRoot" ) ](this.name, applicationId, cb, null, !!async, false);
  2157. }
  2158. return (!!async) ? promise : value;
  2159. // if (path){
  2160. // var p = encodePath( path );
  2161. // //var p = path.replace(/\./g, "/");
  2162. // action[ ( (enableAnonymous && type == "cms") ? "getDictDataAnonymous" : "getDictData" ) ](encodeURIComponent(this.name), applicationId, p, function(json){
  2163. // value = json.data;
  2164. // // this.dictData[path] = value;
  2165. // MWF.xScript.addDictToCache(opt, path, value);
  2166. // if (success) success(json.data);
  2167. // }.bind(this), function(xhr, text, error){
  2168. // if (failure) failure(xhr, text, error);
  2169. // }, !!async);
  2170. // }else{
  2171. // action[ ( (enableAnonymous && type == "cms") ? "getDictRootAnonymous" : "getDictRoot" ) ](this.name, applicationId, function(json){
  2172. // value = json.data;
  2173. // // this.dictData["root"] = value;
  2174. // MWF.xScript.addDictToCache(opt, path, value);
  2175. // if (success) success(json.data);
  2176. // }.bind(this), function(xhr, text, error){
  2177. // if (failure) failure(xhr, text, error);
  2178. // }, !!async);
  2179. // }
  2180. //return value;
  2181. };
  2182. this.set = function(path, value, success, failure){
  2183. var p = encodePath( path );
  2184. //var p = path.replace(/\./g, "/");
  2185. return action.setDictData(encodeURIComponent(this.name), applicationId, p, value, function(json){
  2186. MWF.xScript.setDictToCache(key, path, value);
  2187. if (success) return success(json.data);
  2188. }, function(xhr, text, error){
  2189. if (failure) return failure(xhr, text, error);
  2190. }, false, false);
  2191. };
  2192. this.add = function(path, value, success, failure){
  2193. var p = encodePath( path );
  2194. //var p = path.replace(/\./g, "/");
  2195. return action.addDictData(encodeURIComponent(this.name), applicationId, p, value, function(json){
  2196. MWF.xScript.insertDictToCache(key, path, value);
  2197. if (success) return success(json.data);
  2198. }, function(xhr, text, error){
  2199. if (failure) return failure(xhr, text, error);
  2200. }, false, false);
  2201. };
  2202. this["delete"] = function(path, success, failure){
  2203. var p = encodePath( path );
  2204. //var p = path.replace(/\./g, "/");
  2205. return action.deleteDictData(encodeURIComponent(this.name), applicationId, p, function(json){
  2206. MWF.xScript.deleteDictToCache(key, path);
  2207. if (success) return success(json.data);
  2208. }, function(xhr, text, error){
  2209. if (failure) return failure(xhr, text, error);
  2210. }, false, false);
  2211. };
  2212. this.destory = this["delete"];
  2213. }
  2214. };