Form.js 185 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050
  1. //MWF.require(["MWF.widget.Common", "MWF.widget.Identity", "MWF.widget.O2Identity"], null, false);
  2. MWF.require(["MWF.widget.Common", "MWF.widget.O2Identity"], null, false);
  3. MWF.xApplication.process = MWF.xApplication.process || {};
  4. MWF.xApplication.process.Xform = MWF.xApplication.process.Xform || {};
  5. MWF.xDesktop.requireApp("process.Xform", "lp." + MWF.language, null, false);
  6. //MWF.xDesktop.requireApp("process.Xform", "Package", null, false);
  7. MWF.xApplication.process.Xform.Form = MWF.APPForm = new Class({
  8. Implements: [Options, Events],
  9. Extends: MWF.widget.Common,
  10. options: {
  11. "style": "default",
  12. "readonly": false,
  13. "cssPath": "",
  14. "macro": "FormContext",
  15. "parameters": null,
  16. "moduleEvents": ["queryLoad",
  17. "beforeLoad",
  18. "postLoad",
  19. "afterLoad",
  20. "beforeSave",
  21. "afterSave",
  22. "beforeClose",
  23. "beforeProcess",
  24. "beforeProcessWork",
  25. "afterProcess",
  26. "beforeReset",
  27. "afterReset",
  28. "beforeRetract",
  29. "afterRetract",
  30. "beforeReroute",
  31. "afterReroute",
  32. "beforeDelete",
  33. "afterDelete",
  34. "beforeModulesLoad",
  35. "resize",
  36. "afterModulesLoad",
  37. "beforeReaded",
  38. "afterReaded"]
  39. },
  40. initialize: function (node, data, options) {
  41. this.setOptions(options);
  42. this.container = $(node);
  43. this.container.setStyle("-webkit-user-select", "text");
  44. if (Browser.firefox) this.container.setStyle("opacity", 0);
  45. this.data = data;
  46. this.json = data.json;
  47. this.html = data.html;
  48. this.path = "../x_component_process_Xform/$Form/";
  49. this.cssPath = this.options.cssPath || "../x_component_process_Xform/$Form/" + this.options.style + "/css.wcss";
  50. this._loadCss();
  51. this.sectionListObj = {};
  52. this.modules = [];
  53. this.all = {};
  54. this.allForName = {};
  55. this.forms = {};
  56. //if (!this.personActions) this.personActions = new MWF.xAction.org.express.RestActions();
  57. },
  58. parseCSS: function (css) {
  59. var rex = /(url\(.*\))/g;
  60. var match;
  61. while ((match = rex.exec(css)) !== null) {
  62. var pic = match[0];
  63. var len = pic.length;
  64. var s = pic.substring(pic.length - 2, pic.length - 1);
  65. var n0 = (s === "'" || s === "\"") ? 5 : 4;
  66. var n1 = (s === "'" || s === "\"") ? 2 : 1;
  67. pic = pic.substring(n0, pic.length - n1);
  68. if ((pic.indexOf("x_processplatform_assemble_surface") != -1 || pic.indexOf("x_portal_assemble_surface") != -1)) {
  69. var host1 = MWF.Actions.getHost("x_processplatform_assemble_surface");
  70. var host2 = MWF.Actions.getHost("x_portal_assemble_surface");
  71. if (pic.indexOf("/x_processplatform_assemble_surface") !== -1) {
  72. pic = pic.replace("/x_processplatform_assemble_surface", pic + "/x_processplatform_assemble_surface");
  73. } else if (pic.indexOf("x_processplatform_assemble_surface") !== -1) {
  74. pic = pic.replace("x_processplatform_assemble_surface", pic + "/x_processplatform_assemble_surface");
  75. }
  76. if (pic.indexOf("/x_portal_assemble_surface") !== -1) {
  77. pic = pic.replace("/x_portal_assemble_surface", host2 + "/x_portal_assemble_surface");
  78. } else if (pic.indexOf("x_portal_assemble_surface") !== -1) {
  79. pic = pic.replace("x_portal_assemble_surface", host2 + "/x_portal_assemble_surface");
  80. }
  81. pic = o2.filterUrl(pic);
  82. }
  83. pic = "url('" + pic + "')";
  84. var len2 = pic.length;
  85. css = css.substring(0, match.index) + pic + css.substring(rex.lastIndex, css.length);
  86. rex.lastIndex = rex.lastIndex + (len2 - len);
  87. }
  88. return css;
  89. },
  90. loadCss: function () {
  91. cssText = (this.json.css) ? this.json.css.code : "";
  92. //var head = (document.head || document.getElementsByTagName("head")[0] || document.documentElement);
  93. var styleNode = $("style" + this.json.id);
  94. if (styleNode) styleNode.destroy();
  95. if (cssText) {
  96. cssText = this.parseCSS(cssText);
  97. var rex = new RegExp("(.+)(?=\\{)", "g");
  98. var match;
  99. var id = this.json.id.replace(/\-/g, "");
  100. var prefix = ".css" + id + " ";
  101. while ((match = rex.exec(cssText)) !== null) {
  102. var rulesStr = match[0];
  103. if (rulesStr.indexOf(",") != -1) {
  104. var rules = rulesStr.split(/\s*,\s*/g);
  105. rules = rules.map(function (r) {
  106. return prefix + r;
  107. });
  108. var rule = rules.join(", ");
  109. cssText = cssText.substring(0, match.index) + rule + cssText.substring(rex.lastIndex, cssText.length);
  110. rex.lastIndex = rex.lastIndex + (prefix.length * rules.length);
  111. } else {
  112. var rule = prefix + match[0];
  113. cssText = cssText.substring(0, match.index) + rule + cssText.substring(rex.lastIndex, cssText.length);
  114. rex.lastIndex = rex.lastIndex + prefix.length;
  115. }
  116. }
  117. var styleNode = document.createElement("style");
  118. styleNode.setAttribute("type", "text/css");
  119. styleNode.id = "style" + this.json.id;
  120. styleNode.inject(this.container, "before");
  121. if (styleNode.styleSheet) {
  122. var setFunc = function () {
  123. styleNode.styleSheet.cssText = cssText;
  124. };
  125. if (styleNode.styleSheet.disabled) {
  126. setTimeout(setFunc, 10);
  127. } else {
  128. setFunc();
  129. }
  130. } else {
  131. var cssTextNode = document.createTextNode(cssText);
  132. styleNode.appendChild(cssTextNode);
  133. }
  134. return "css" + id;
  135. }
  136. return "";
  137. },
  138. keyLock: function (async) {
  139. var lockData = null;
  140. var key = this.businessData.work.id + "-" + this.businessData.work.activityToken;
  141. o2.Actions.load("x_processplatform_assemble_surface").KeyLockAction.lock({ "key": key }, function (json) {
  142. flagData = json.data;
  143. if (async && flagData.success) this.keyLockTimeoutId = window.setTimeout(function () { this.keyLock(true) }.bind(this), 90000);
  144. if (async && !flagData.success) this.app.reload();
  145. }.bind(this), null, !!async);
  146. return flagData;
  147. },
  148. checkLock: function () {
  149. if (this.businessData.control.allowProcessing && this.businessData.activity.manualMode == "grab") {
  150. this.app.addEvent("queryClose", function () {
  151. if (this.keyLockTimeoutId) window.clearTimeout(this.keyLockTimeoutId);
  152. }.bind(this));
  153. var lockData = this.keyLock();
  154. if (lockData.success) {
  155. this.keyLock(true);
  156. } else {
  157. this.businessData.control.allowProcessing = false;
  158. this.businessData.control.allowSave = false;
  159. this.businessData.control.allowReset = false;
  160. this.businessData.control.allowReroute = false;
  161. this.businessData.control.allowDelete = false;
  162. this.businessData.control.allowAddSplit = false;
  163. this.businessData.control.allowRetract = false;
  164. this.businessData.control.allowRollback = false;
  165. this.lockDataPerson = lockData.person;
  166. // var text = MWF.xApplication.process.Xform.LP.keyLockInfor;
  167. // text = text.replace("{name}", o2.name.cn(lockData.person));
  168. // var title = MWF.xApplication.process.Xform.LP.keyLockTitle;
  169. // this.app.alert("info", "center", title, text, 400, 160);
  170. // o2.DL.open({
  171. // "title": title,
  172. // "text": text,
  173. // "width": 400
  174. // })
  175. }
  176. }
  177. },
  178. load: function (callback) {
  179. this.checkLock();
  180. this.loadExtendStyle(function () {
  181. if (this.app) {
  182. if (this.app.formNode) this.app.formNode.setStyles(this.json.styles);
  183. if (this.app.addEvent) {
  184. this.app.addEvent("resize", function () {
  185. this.fireEvent("resize");
  186. }.bind(this));
  187. this.app.addEvent("queryClose", function () {
  188. this.beforeCloseWork();
  189. }.bind(this));
  190. }
  191. }
  192. if (!this.businessData.control.allowSave) this.setOptions({ "readonly": true });
  193. var cssClass = "";
  194. if (this.json.css && this.json.css.code) cssClass = this.loadCss();
  195. this.loadMacro(function () {
  196. //this.container.setStyle("opacity", 0);
  197. this.container.set("html", this.html);
  198. this.node = this.container.getFirst();
  199. if (cssClass) this.node.addClass(cssClass);
  200. this._loadEvents();
  201. this.loadRelatedScript();
  202. //this.loadResource( function () {
  203. // this.loadDictionaryList(function () {
  204. this.fireEvent("queryLoad");
  205. if (this.event_resolve) {
  206. this.event_resolve(function () {
  207. this.loadForm(callback)
  208. }.bind(this));
  209. } else {
  210. this.loadForm(callback);
  211. }
  212. // }.bind(this));
  213. //}.bind(this));
  214. }.bind(this));
  215. }.bind(this));
  216. },
  217. loadRelatedScript: function () {
  218. if (this.json.includeScripts && this.json.includeScripts.length) {
  219. var includeScriptText = "";
  220. var includedIds = [];
  221. this.json.includeScripts.each(function (s) {
  222. if (this.app.relatedScriptMap && this.app.relatedScriptMap[s.id]) {
  223. includeScriptText += "\n" + this.app.relatedScriptMap[s.id].text;
  224. includedIds.push(s.id);
  225. }
  226. }.bind(this));
  227. if (includeScriptText) this.Macro.exec(includeScriptText, this);
  228. }
  229. },
  230. //@todo 载入脚本和数据字典
  231. // loadResource : function( callback ){
  232. // var cb = function () {
  233. // if( this.syncScriptLoaded && this.asyncScriptLoaded && this.dictionaryLoaded ){
  234. // if(callback)callback();
  235. // }
  236. // }.bind(this);
  237. // // this.loadScriptList( cb );
  238. // this.loadDictionaryList( cb );
  239. // },
  240. // loadDictionaryList: function (callback) {
  241. // this.dictionaryLoaded = false;
  242. // var loadedCount = 0;
  243. // if (this.json.includeDictionaries && this.json.includeDictionaries.length) {
  244. // var fun = function () {
  245. // loadedCount++;
  246. // if (this.json.includeDictionaries.length <= loadedCount) {
  247. // this.dictionaryLoaded = true;
  248. // if (callback) callback();
  249. // }
  250. // }.bind(this);
  251. //
  252. // this.json.includeDictionaries.map(function (d) {
  253. // var action = MWF.Actions.get(d.dictionary.appType === "cms" ? "x_cms_assemble_control" : "x_processplatform_assemble_surface");
  254. // if (d.path && d.path !== "root") {
  255. // action["getDictData"](d.dictionary.id, d.dictionary.appId, d.path, function (json) {
  256. // MWF.xScript.addDictToCache(d.dictionary, d.path, json.data);
  257. // fun();
  258. // }.bind(this), function () {
  259. // fun();
  260. // }.bind(this), true);
  261. // } else {
  262. // action["getDictRoot"](d.dictionary.id, d.dictionary.appId, function (json) {
  263. // MWF.xScript.addDictToCache(d.dictionary, d.path, json.data);
  264. // fun();
  265. // }.bind(this), function () {
  266. // fun();
  267. // }.bind(this), true);
  268. // }
  269. // }.bind(this));
  270. // } else {
  271. // this.dictionaryLoaded = true;
  272. // if (callback) callback();
  273. // }
  274. // },
  275. // loadScriptList : function( callback ){
  276. // var asyncList = [];
  277. // var syncList = [];
  278. //
  279. // this.syncScriptLoaded = false;
  280. // this.asyncScriptLoaded = false;
  281. //
  282. // if( this.json.scripts && this.json.scripts.length ){
  283. // for( var i=0; i<this.json.scripts.length; i++ ){
  284. // var script = this.json.scripts[i];
  285. // script.scriptList.map( function ( s ) {
  286. // s.type = s.appType;
  287. // s.application = s.application || s.appId || s.appName;
  288. // });
  289. // if( script.async ){
  290. // asyncList = asyncList.concat( script.scriptList );
  291. // }else{
  292. // syncList = syncList.concat( script.scriptList );
  293. // }
  294. // }
  295. // }
  296. //
  297. // var loadSyncList = function () {
  298. // if( syncList.length === 0 ){
  299. // this.syncScriptLoaded = true;
  300. // if(callback)callback();
  301. // }else{
  302. // this.Macro.environment.include(syncList, function(){
  303. // this.syncScriptLoaded = true;
  304. // if(callback)callback();
  305. // }.bind(this), false);
  306. // }
  307. // }.bind(this);
  308. //
  309. // var loadAsyncList = function () {
  310. // if( asyncList.length === 0 ){
  311. // this.asyncScriptLoaded = true;
  312. // if(callback)callback();
  313. // }else{
  314. // this.Macro.environment.include(asyncList, function(){
  315. // this.asyncScriptLoaded = true;
  316. // if(callback)callback();
  317. // }.bind(this), true);
  318. // }
  319. // }.bind(this);
  320. //
  321. // loadAsyncList();
  322. // loadSyncList();
  323. // },
  324. loadForm: function (callback) {
  325. if (this.lockDataPerson) {
  326. var text = MWF.xApplication.process.Xform.LP.keyLockInfor;
  327. text = text.replace("{name}", o2.name.cn(this.lockDataPerson));
  328. var title = MWF.xApplication.process.Xform.LP.keyLockTitle;
  329. this.app.alert("info", "center", title, text, 400, 160);
  330. }
  331. if (this.app) if (this.app.fireEvent) this.app.fireEvent("queryLoad");
  332. this._loadBusinessData();
  333. this.fireEvent("beforeLoad");
  334. if (this.app) if (this.app.fireEvent) this.app.fireEvent("beforeLoad");
  335. this.loadContent(callback);
  336. },
  337. loadExtendStyle: function (callback) {
  338. if (!this.json.styleConfig || !this.json.styleConfig.extendFile) {
  339. if (callback) callback();
  340. return;
  341. }
  342. if (this.json["$version"] == "5.2") {
  343. if (callback) callback();
  344. return;
  345. }
  346. var stylesUrl = "../x_component_process_FormDesigner/Module/Form/skin/" + this.json.styleConfig.extendFile;
  347. MWF.getJSON(stylesUrl, {
  348. "onSuccess": function (responseJSON) {
  349. if (responseJSON && responseJSON.form) {
  350. this.json = Object.merge(this.json, responseJSON.form);
  351. }
  352. if (callback) callback();
  353. }.bind(this),
  354. "onRequestFailure": function () {
  355. if (callback) callback();
  356. }.bind(this),
  357. "onError": function () {
  358. if (callback) callback();
  359. }.bind(this)
  360. }
  361. );
  362. },
  363. loadMacro: function (callback) {
  364. //if (!MWF.Macro[this.options.macro || "FormContext"]){
  365. MWF.require("MWF.xScript.Macro", function () {
  366. this.Macro = new MWF.Macro[this.options.macro || "FormContext"](this);
  367. if (callback) callback();
  368. }.bind(this));
  369. // }else{
  370. // this.Macro = new MWF.Macro[this.options.macro || "FormContext"](this);
  371. // if (callback) callback();
  372. // }
  373. },
  374. loadContent: function (callback) {
  375. this.subformCount = 0;
  376. this.subformLoadedCount = 0;
  377. this.subformLoaded = [this.json.id];
  378. this.subpageCount = 0;
  379. this.subpageLoadedCount = 0;
  380. this.subpageLoaded = [];
  381. this.widgetCount = 0;
  382. this.widgetLoadedCount = 0;
  383. this.widgetLoaded = [];
  384. this._loadHtml();
  385. this._loadForm();
  386. this.fireEvent("beforeModulesLoad");
  387. if (this.app && this.app.fireEvent) this.app.fireEvent("beforeModulesLoad");
  388. this._loadModules(this.node);
  389. if (Browser.firefox) this.container.setStyle("opacity", 1);
  390. if (this.json.mode === "Mobile") {
  391. var node = document.body.getElement(".o2_form_mobile_actions");
  392. if (node) {
  393. node.empty();
  394. this._loadMobileActions(node, callback);
  395. } else {
  396. console.log("没有找到移动端底部操作栏!")
  397. }
  398. } else {
  399. if (callback) callback();
  400. }
  401. this.fireEvent("postLoad");
  402. if (this.app && this.app.fireEvent) this.app.fireEvent("postLoad");
  403. this.checkSubformLoaded(true);
  404. },
  405. checkSubformLoaded: function (isAllSubformLoaded) {
  406. if (isAllSubformLoaded) {
  407. this.isAllSubformLoaded = true;
  408. }
  409. if (!this.isAllSubformLoaded) return;
  410. //console.log( "checkSubformLoaded this.subformCount="+ this.subformCount + " this.subformLoadedCount="+this.subformLoadedCount );
  411. if ((!this.subformCount || this.subformCount === this.subformLoadedCount) &&
  412. (!this.subpageCount || this.subpageCount === this.subpageLoadedCount) &&
  413. (!this.widgetCount || this.widgetCount === this.widgetLoadedCount)
  414. ) {
  415. //this.container.setStyle("opacity", 1);
  416. this.fireEvent("afterModulesLoad");
  417. if (this.app && this.app.fireEvent) this.app.fireEvent("afterModulesLoad");
  418. this.fireEvent("afterLoad");
  419. if (this.app && this.app.fireEvent) this.app.fireEvent("afterLoad");
  420. this.isLoaded = true;
  421. }
  422. },
  423. _loadMobileDefaultTools: function (callback) {
  424. if (this.json.defaultTools) {
  425. if (callback) callback();
  426. } else {
  427. this.json.defaultTools = o2.JSON.get("../x_component_process_FormDesigner/Module/Form/toolbars.json", function (json) {
  428. this.json.defaultTools = json;
  429. if (callback) callback();
  430. }.bind(this));
  431. }
  432. },
  433. _loadMobileActions: function (node, callback) {
  434. var tools = [];
  435. this._loadMobileDefaultTools(function () {
  436. if (this.json.defaultTools) {
  437. this.json.defaultTools.each(function (tool) {
  438. var flag = this._checkDefaultMobileActionItem(tool, this.options.readonly);
  439. if (flag) tools.push(tool);
  440. }.bind(this));
  441. }
  442. if (this.json.tools) {
  443. this.json.tools.each(function (tool) {
  444. var flag = this._checkCustomMobileActionItem(tool, this.options.readonly);
  445. if (flag) tools.push(tool);
  446. }.bind(this));
  447. }
  448. this.mobileTools = tools;
  449. //app上用原来的按钮样式
  450. if (window.o2android) {
  451. if (tools.length) if (node) this._createMobileActions(node, tools);
  452. } else if (window.webkit && window.webkit.messageHandlers && window.webkit.messageHandlers.o2mLog) {
  453. if (tools.length) if (node) this._createMobileActions(node, tools);
  454. } else {
  455. //钉钉 企业微信用新的样式
  456. if (tools.length) if (node) this._createMobileActionsDingdingStyle(node, tools);
  457. }
  458. if (callback) callback();
  459. }.bind(this));
  460. },
  461. // 修改成钉钉 button
  462. _createMobileActionsDingdingStyle: function (node, tools) {
  463. node.show();
  464. var count = tools.length;
  465. if (count <= 2) {
  466. //左边 间隔
  467. var dingdingSplitLeft = new Element("div", { "styles": this.css.html5ActionButtonDingdingSplit, "text": " " }).inject(node);
  468. var splitSize = dingdingSplitLeft.getSize();
  469. var size = document.body.getSize();
  470. var buttonWidth = (size.x - splitSize.x * (count + 1) - (count * 2)) / count;
  471. tools.each(function (tool) {
  472. var actionStyle = this.css.html5ActionButtonDingdingNormal;
  473. if (tool.text === "继续流转" || tool.text === "撤回" || tool.id === "action_processWork" || tool.id === "action_retract") {
  474. actionStyle = this.css.html5ActionButtonDingdingPrimary;
  475. } else if (tool.text === "删除文件" || tool.id === "action_delete") {
  476. actionStyle = this.css.html5ActionButtonDingdingDanger;
  477. }
  478. actionStyle.width = buttonWidth + "px";
  479. var action = new Element("div", { "styles": actionStyle, "text": tool.text }).inject(node);
  480. action.store("tool", tool);
  481. action.addEvent("click", function (e) {
  482. var clickFun = function () {
  483. var t = e.target.retrieve("tool");
  484. e.setDisable = function () { };
  485. if (t.actionScript) {
  486. this._runCustomAction(t.actionScript);
  487. } else {
  488. if (this[t.action]) this[t.action](e);
  489. }
  490. }.bind(this);
  491. if (tool.text === "继续流转" || tool.id === "action_processWork") {
  492. //输入法激活的时候,需要一段时间等待输入法关闭
  493. window.setTimeout(clickFun, 100)
  494. } else {
  495. clickFun();
  496. }
  497. }.bind(this));
  498. new Element("div", { "styles": this.css.html5ActionButtonDingdingSplit, "text": " " }).inject(node);
  499. }.bind(this));
  500. } else {
  501. //左边 间隔
  502. var dingdingSplitLeft = new Element("div", { "styles": this.css.html5ActionButtonDingdingSplit, "text": " " }).inject(node);
  503. var splitSize = dingdingSplitLeft.getSize();
  504. var size = document.body.getSize();
  505. var buttonWidth = (size.x - splitSize.x * 4 - 6) / 5;
  506. for (var i = 0; i < 3; i++) {
  507. tool = tools[i];
  508. var actionStyle = this.css.html5ActionButtonDingdingNormal;
  509. if (tool.text === "继续流转" || tool.text === "撤回") {
  510. actionStyle = this.css.html5ActionButtonDingdingPrimary;
  511. } else if (tool.text === "删除文件") {
  512. actionStyle = this.css.html5ActionButtonDingdingDanger;
  513. }
  514. if (i == 2) {
  515. this.css.html5ActionButtonDingdingMore.width = buttonWidth + "px";
  516. var action = new Element("div", { "styles": this.css.html5ActionButtonDingdingMore, "text": "…" }).inject(node);
  517. action.addEvent("click", function (e) {
  518. this._loadMoreMobileActionsDingdingStyle(tools, 2, node);
  519. }.bind(this));
  520. } else {
  521. actionStyle.width = (buttonWidth * 2) + "px";
  522. var action = new Element("div", { "styles": actionStyle, "text": tool.text }).inject(node);
  523. action.store("tool", tool);
  524. action.addEvent("click", function (e) {
  525. var t = e.target.retrieve("tool");
  526. e.setDisable = function () { }
  527. if (t.actionScript) {
  528. this._runCustomAction(t.actionScript);
  529. } else {
  530. if (this[t.action]) this[t.action](e);
  531. }
  532. }.bind(this));
  533. }
  534. new Element("div", { "styles": this.css.html5ActionButtonDingdingSplit, "text": " " }).inject(node);
  535. }
  536. }
  537. },
  538. _loadMoreMobileActionsDingdingStyle: function (tools, n, node) {
  539. document.body.mask({
  540. "style": {
  541. "background-color": "#cccccc",
  542. "opacity": 0.6
  543. },
  544. "hideOnClick": true,
  545. "onHide": function () {
  546. this.actionMoreArea.setStyle("display", "none");
  547. }.bind(this)
  548. });
  549. if (this.actionMoreArea) {
  550. this.actionMoreArea.setStyle("display", "block");
  551. } else {
  552. var size = document.body.getSize();
  553. this.actionMoreArea = new Element("div", { "styles": this.css.html5ActionOtherArea }).inject(document.body);
  554. var pl = this.actionMoreArea.getStyle("padding-left").toInt();
  555. var pr = this.actionMoreArea.getStyle("padding-right").toInt();
  556. var w = size.x - pl - pr;
  557. this.actionMoreArea.setStyle("width", "" + w + "px");
  558. for (var i = n; i < tools.length; i++) {
  559. tool = tools[i];
  560. var actionStyle = this.css.html5ActionButtonDingdingNormal;
  561. if (tool.text === "继续流转" || tool.text === "撤回") {
  562. actionStyle = this.css.html5ActionButtonDingdingPrimary;
  563. } else if (tool.text === "删除文件") {
  564. actionStyle = this.css.html5ActionButtonDingdingDanger;
  565. }
  566. actionStyle.width = "100%";
  567. var action = new Element("div", { "styles": actionStyle, "text": tool.text }).inject(this.actionMoreArea);
  568. action.store("tool", tool);
  569. action.addEvent("click", function (e) {
  570. var t = e.target.retrieve("tool");
  571. e.setDisable = function () { }
  572. if (t.actionScript) {
  573. this._runCustomAction(t.actionScript);
  574. } else {
  575. if (this[t.action]) this[t.action](e);
  576. }
  577. }.bind(this));
  578. }
  579. }
  580. },
  581. _createMobileActions: function (node, tools) {
  582. node.show();
  583. var count = tools.length;
  584. if (count <= 2) {
  585. this.css.html5ActionButton.width = "100%";
  586. if (count == 2) this.css.html5ActionButton.width = "49%";
  587. tools.each(function (tool) {
  588. var action = new Element("div", { "styles": this.css.html5ActionButton, "text": tool.text }).inject(node);
  589. action.store("tool", tool);
  590. action.addEvent("click", function (e) {
  591. var t = e.target.retrieve("tool");
  592. e.setDisable = function () { }
  593. if (t.actionScript) {
  594. this._runCustomAction(t.actionScript);
  595. } else {
  596. if (this[t.action]) this[t.action](e);
  597. }
  598. }.bind(this));
  599. this._setMobileBottonStyle(action);
  600. }.bind(this));
  601. if (count == 2) new Element("div", { "styles": this.css.html5ActionButtonSplit }).inject(node.getLast(), "before");
  602. } else {
  603. this.css.html5ActionButton.width = "38%"
  604. for (var i = 0; i < 2; i++) {
  605. tool = tools[i];
  606. var action = new Element("div", { "styles": this.css.html5ActionButton, "text": tool.text }).inject(node);
  607. action.store("tool", tool);
  608. action.addEvent("click", function (e) {
  609. var t = e.target.retrieve("tool");
  610. e.setDisable = function () { }
  611. if (t.actionScript) {
  612. this._runCustomAction(t.actionScript);
  613. } else {
  614. if (this[t.action]) this[t.action](e);
  615. }
  616. }.bind(this));
  617. this._setMobileBottonStyle(action);
  618. }
  619. new Element("div", { "styles": this.css.html5ActionButtonSplit }).inject(node.getLast(), "before");
  620. new Element("div", { "styles": this.css.html5ActionButtonSplit }).inject(node);
  621. this.css.html5ActionButton.width = "23%"
  622. var action = new Element("div", { "styles": this.css.html5ActionButton, "text": "…" }).inject(node);
  623. action.addEvent("click", function (e) {
  624. this._loadMoreMobileActions(tools, 2, node);
  625. }.bind(this));
  626. this._setMobileBottonStyle(action);
  627. }
  628. },
  629. _loadMoreMobileActions: function (tools, n, node) {
  630. document.body.mask({
  631. "style": {
  632. "background-color": "#cccccc",
  633. "opacity": 0.6
  634. },
  635. "hideOnClick": true,
  636. "onHide": function () {
  637. this.actionMoreArea.setStyle("display", "none");
  638. }.bind(this)
  639. });
  640. if (this.actionMoreArea) {
  641. this.actionMoreArea.setStyle("display", "block");
  642. } else {
  643. var size = document.body.getSize();
  644. this.actionMoreArea = new Element("div", { "styles": this.css.html5ActionOtherArea }).inject(document.body);
  645. var pl = this.actionMoreArea.getStyle("padding-left").toInt();
  646. var pr = this.actionMoreArea.getStyle("padding-right").toInt();
  647. var w = size.x - pl - pr;
  648. this.actionMoreArea.setStyle("width", "" + w + "px");
  649. for (var i = n; i < tools.length; i++) {
  650. tool = tools[i];
  651. var action = new Element("div", { "styles": this.css.html5ActionOtherButton, "text": tool.text }).inject(this.actionMoreArea);
  652. action.store("tool", tool);
  653. action.addEvent("click", function (e) {
  654. var t = e.target.retrieve("tool");
  655. e.setDisable = function () { }
  656. if (t.actionScript) {
  657. this._runCustomAction(t.actionScript);
  658. } else {
  659. if (this[t.action]) this[t.action](e);
  660. }
  661. }.bind(this));
  662. this._setMobileBottonStyle(action);
  663. }
  664. }
  665. // actionArea.position({
  666. // relativeTo: node,
  667. // position: 'topCenter',
  668. // edge: 'bottomCenter'
  669. // });
  670. },
  671. _setMobileBottonStyle: function (action) {
  672. var _self = this;
  673. action.addEvents({
  674. "mouseover": function (e) { this.setStyles(_self.css.html5ActionButton_over) },
  675. "mouseout": function (e) { this.setStyles(_self.css.html5ActionButton_up) },
  676. "mousedown": function (e) { this.setStyles(_self.css.html5ActionButton_over) },
  677. "mouseup": function (e) { this.setStyles(_self.css.html5ActionButton_up) },
  678. "touchstart": function (e) { this.setStyles(_self.css.html5ActionButton_over) },
  679. "touchcancel": function (e) { this.setStyles(_self.css.html5ActionButton_up) },
  680. "touchend": function (e) { this.setStyles(_self.css.html5ActionButton_up) },
  681. "touchmove": function (e) { this.setStyles(_self.css.html5ActionButton_over) }
  682. });
  683. },
  684. _runCustomAction: function (actionScript) {
  685. //var script = bt.node.retrieve("script");
  686. this.Macro.exec(actionScript, this);
  687. },
  688. _checkCustomMobileActionItem: function (tool, readonly) {
  689. var flag = true;
  690. if (readonly) {
  691. flag = tool.readShow;
  692. } else {
  693. flag = tool.editShow;
  694. }
  695. if (flag) {
  696. flag = true;
  697. if (tool.control) {
  698. flag = this.form.businessData.control[tool.control]
  699. }
  700. if (tool.condition) {
  701. var hideFlag = this.Macro.exec(tool.condition, this);
  702. flag = !hideFlag;
  703. }
  704. }
  705. return flag;
  706. },
  707. _checkDefaultMobileActionItem: function (tool, readonly, noCondition) {
  708. var flag = true;
  709. if (tool.control) {
  710. flag = this.businessData.control[tool.control]
  711. }
  712. if (!noCondition) if (tool.condition) {
  713. var hideFlag = this.Macro.exec(tool.condition, this);
  714. flag = flag && (!hideFlag);
  715. }
  716. if (tool.id == "action_processWork") {
  717. if (!this.businessData.task && this.businessData.work.startTime) {
  718. flag = false;
  719. }
  720. }
  721. if (tool.id == "action_rollback") tool.read = true;
  722. if (readonly) if (!tool.read) flag = false;
  723. return flag;
  724. },
  725. _loadBusinessData: function () {
  726. if (!this.businessData) {
  727. this.businessData = {};
  728. // this.businessData = {
  729. // "data": {
  730. // "select": "222",
  731. // "radio": "bbb",
  732. // "checkbox": ["check1", "check3"],
  733. // "orderData": [
  734. // {
  735. // "orderName": {"namefield": "电脑"},
  736. // "orderCount": {"countField": "3"},
  737. // "priceCount": {"priceField": "9000"}
  738. // },
  739. // {
  740. // "orderName": {"namefield": "路由器"},
  741. // "orderCount": {"countField": "2"},
  742. // "priceCount": {"priceField": "1000"}
  743. // },
  744. // {
  745. // "orderName": {"namefield": "网线"},
  746. // "orderCount": {"countField": "10"},
  747. // "priceCount": {"priceField": "200"}
  748. // }
  749. // ]
  750. //
  751. // }
  752. // };
  753. }
  754. },
  755. _loadHtml: function () {
  756. // this.container.set("html", this.html);
  757. // this.node = this.container.getFirst();
  758. //this.node.setStyle("overflow", "hidden");
  759. this.node.addEvent("selectstart", function (e) {
  760. var select = "text";
  761. if (e.target.getStyle("-webkit-user-select")) {
  762. select = e.target.getStyle("-webkit-user-select").toString().toLowerCase();
  763. }
  764. if (select !== "text" && select !== "auto") e.preventDefault();
  765. });
  766. },
  767. _loadForm: function () {
  768. this._loadStyles();
  769. this._loadCssLinks();
  770. this._loadScriptSrc();
  771. this._loadJsheader();
  772. //this._loadEvents();
  773. },
  774. _loadStyles: function () {
  775. if (this.json.styles) Object.each(this.json.styles, function (value, key) {
  776. if ((value.indexOf("x_processplatform_assemble_surface") != -1 || value.indexOf("x_portal_assemble_surface") != -1)) {
  777. var host1 = MWF.Actions.getHost("x_processplatform_assemble_surface");
  778. var host2 = MWF.Actions.getHost("x_portal_assemble_surface");
  779. if (value.indexOf("/x_processplatform_assemble_surface") !== -1) {
  780. value = value.replace("/x_processplatform_assemble_surface", host1 + "/x_processplatform_assemble_surface");
  781. } else if (value.indexOf("x_processplatform_assemble_surface") !== -1) {
  782. value = value.replace("x_processplatform_assemble_surface", host1 + "/x_processplatform_assemble_surface");
  783. }
  784. if (value.indexOf("/x_portal_assemble_surface") !== -1) {
  785. value = value.replace("/x_portal_assemble_surface", host2 + "/x_portal_assemble_surface");
  786. } else if (value.indexOf("x_portal_assemble_surface") !== -1) {
  787. value = value.replace("x_portal_assemble_surface", host2 + "/x_portal_assemble_surface");
  788. }
  789. }
  790. value = o2.filterUrl(value);
  791. this.node.setStyle(key, value);
  792. }.bind(this));
  793. //this.node.setStyles(this.json.styles);
  794. },
  795. _loadCssLinks: function () {
  796. var urls = this.json.cssLinks;
  797. urls.each(function (url) {
  798. new Element("link", {
  799. "rel": "stylesheet",
  800. "type": "text/css",
  801. "href": url
  802. }).inject($(document.head));
  803. });
  804. },
  805. _loadScriptSrc: function () {
  806. var urls = this.json.scriptSrc;
  807. urls.each(function (url) {
  808. new Element("script", {
  809. "src": url
  810. }).inject($(document.head));
  811. });
  812. },
  813. _loadJsheader: function () {
  814. var code = (this.json.jsheader) ? this.json.jsheader.code : "";
  815. if (code) Browser.exec(code);
  816. },
  817. _loadEvents: function () {
  818. Object.each(this.json.events, function (e, key) {
  819. if (e.code) {
  820. if (this.options.moduleEvents.indexOf(key) !== -1) {
  821. this.addEvent(key, function (event) {
  822. return this.Macro.fire(e.code, this, event);
  823. }.bind(this));
  824. } else {
  825. if (key === "load") {
  826. this.addEvent("postLoad", function () {
  827. return this.Macro.fire(e.code, this);
  828. }.bind(this));
  829. } else if (key === "submit") {
  830. this.addEvent("beforeProcess", function () {
  831. return this.Macro.fire(e.code, this);
  832. }.bind(this));
  833. } else {
  834. this.node.addEvent(key, function (event) {
  835. return this.Macro.fire(e.code, this, event);
  836. }.bind(this));
  837. }
  838. }
  839. }
  840. }.bind(this));
  841. },
  842. addModuleEvent: function (key, fun) {
  843. if (this.options.moduleEvents.indexOf(key) !== -1) {
  844. this.addEvent(key, function (event) {
  845. return (fun) ? fun(this, event) : null;
  846. }.bind(this));
  847. } else {
  848. if (key === "load") {
  849. this.addEvent("postLoad", function (event) {
  850. return (fun) ? fun(this, event) : null;
  851. }.bind(this));
  852. } else if (key === "submit") {
  853. this.addEvent("beforeProcess", function (event) {
  854. return (fun) ? fun(this, event) : null;
  855. }.bind(this));
  856. } else {
  857. this.node.addEvent(key, function (event) {
  858. return (fun) ? fun(this, event) : null;
  859. }.bind(this));
  860. }
  861. }
  862. },
  863. _getDomjson: function (dom) {
  864. var mwfType = dom.get("MWFtype") || dom.get("mwftype");
  865. switch (mwfType) {
  866. case "form":
  867. return this.json;
  868. case "":
  869. return null;
  870. default:
  871. var id = dom.get("id");
  872. if (!id) id = dom.get("MWFId");
  873. if (id) {
  874. return this.json.moduleList[id];
  875. } else {
  876. return null;
  877. }
  878. }
  879. },
  880. _getModuleNodes: function (dom) {
  881. var moduleNodes = [];
  882. var subDom = dom.getFirst();
  883. while (subDom) {
  884. var mwftype = subDom.get("MWFtype") || subDom.get("mwftype");
  885. if (mwftype) {
  886. var type = mwftype;
  887. if (type.indexOf("$") === -1) {
  888. moduleNodes.push(subDom);
  889. }
  890. // && mwftype !== "tab$Content"
  891. if (mwftype !== "datagrid" && mwftype !== "subSource" && mwftype !== "tab$Content") {
  892. moduleNodes = moduleNodes.concat(this._getModuleNodes(subDom));
  893. }
  894. } else {
  895. moduleNodes = moduleNodes.concat(this._getModuleNodes(subDom));
  896. }
  897. subDom = subDom.getNext();
  898. }
  899. return moduleNodes;
  900. },
  901. _loadModules: function (dom) {
  902. //var subDom = this.node.getFirst();
  903. //while (subDom){
  904. // if (subDom.get("MWFtype")){
  905. // var json = this._getDomjson(subDom);
  906. // var module = this._loadModule(json, subDom);
  907. // this.modules.push(module);
  908. // }
  909. // subDom = subDom.getNext();
  910. //}
  911. var moduleNodes = this._getModuleNodes(dom);
  912. //alert(moduleNodes.length);
  913. moduleNodes.each(function (node) {
  914. var json = this._getDomjson(node);
  915. //if( json.type === "Subform" || json.moduleName === "subform" )this.subformCount++;
  916. //if( json.type === "Subpage" || json.moduleName === "subpage" )this.subpageCount++;
  917. var module = this._loadModule(json, node);
  918. this.modules.push(module);
  919. }.bind(this));
  920. },
  921. _loadModule: function (json, node, beforeLoad) {
  922. //console.log( json.id );
  923. if (json.type === "Subform" || json.moduleName === "subform") this.subformCount++;
  924. //if( json.type === "Subform" || json.moduleName === "subform" ){
  925. // console.log( "add subformcount , this.subformCount = " + this.subformCount );
  926. //}
  927. if (json.type === "Subpage" || json.moduleName === "subpage") this.subpageCount++;
  928. if (json.type === "Widget" || json.moduleName === "widget") this.widgetCount++;
  929. if (!MWF["APP" + json.type]) {
  930. MWF.xDesktop.requireApp("process.Xform", json.type, null, false);
  931. }
  932. var module = new MWF["APP" + json.type](node, json, this);
  933. if (beforeLoad) beforeLoad.apply(module);
  934. if (!this.all[json.id]) this.all[json.id] = module;
  935. if (json.name) {
  936. if (this.allForName[json.name]) {
  937. var item = this.allForName[json.name];
  938. typeOf(item) === "array" ? item.push(module) : this.allForName[json.name] = [item, module];
  939. } else {
  940. this.allForName[json.name] = module;
  941. }
  942. }
  943. if (module.field) {
  944. if (!this.forms[json.id]) this.forms[json.id] = module;
  945. }
  946. module.readonly = this.options.readonly;
  947. module.load();
  948. return module;
  949. },
  950. saveOpinion: function (module) {
  951. var op = module._getBusinessSectionDataByPerson();
  952. MWF.UD.getDataJson("userOpinion", function (json) {
  953. if (!json) json = [];
  954. var idx = json.indexOf(op);
  955. if (idx == -1) {
  956. if (json.length >= 50) json.shift();
  957. } else {
  958. json.splice(idx, 1);
  959. }
  960. json.push(op);
  961. MWF.UD.putData("userOpinion", json);
  962. }.bind(this), false);
  963. },
  964. loadPathData: function (path) {
  965. var data = null;
  966. this.workAction.getJobDataByPath(this.businessData.work.job, path, function (json) {
  967. data = json.data || null;
  968. }, null, false);
  969. return data;
  970. },
  971. getData: function (issubmit) {
  972. //var data = Object.clone(this.businessData.data);
  973. var data = this.businessData.data;
  974. Object.each(this.forms, function (module, id) {
  975. if (module.json.type === "Opinion") {
  976. if (issubmit) {
  977. this.saveOpinion(module);
  978. var key = layout.desktop.session.user.id;
  979. if (typeOf(data[id]) === "object" && typeOf(data[id][key]) === "string") {
  980. data[id][key] = "";
  981. } else if (typeOf(data[id]) === "string") {
  982. data[id] = "";
  983. }
  984. // delete data[id];
  985. } else {
  986. var v = module.getData();
  987. // var d = this.loadPathData(id);
  988. // if (d) data[id] = d;
  989. data[id] = this.getSectionDataByPerson(v, data[id]);
  990. }
  991. } else {
  992. if (module.json.section === "yes") {
  993. // var d = this.loadPathData(id);
  994. // if (d) data[id] = d;
  995. data[id] = this.getSectionData(module, data[id]);
  996. } else {
  997. data[id] = module.getData();
  998. }
  999. }
  1000. }.bind(this));
  1001. this.businessData.data = data;
  1002. this.Macro.environment.setData(this.businessData.data);
  1003. return data;
  1004. },
  1005. getSectionData: function (module, obj) {
  1006. var v = module.getData();
  1007. switch (module.json.sectionBy) {
  1008. case "person":
  1009. return this.getSectionDataByPerson(v, obj);
  1010. case "unit":
  1011. return this.getSectionDataByUnit(v, obj);
  1012. case "activity":
  1013. return this.getSectionDataByPActivity(v, obj);
  1014. case "splitValue":
  1015. return this.getSectionDataBySplitValue(v, obj);
  1016. case "script":
  1017. return this.getSectionDataByScript(module.json.sectionByScript.code, v, obj);
  1018. default:
  1019. return v;
  1020. }
  1021. },
  1022. getSectionDataByPerson: function (v, obj) {
  1023. var key = layout.desktop.session.user.id;
  1024. if (!obj || (typeOf(obj) !== "object")) obj = {};
  1025. obj[key] = v;
  1026. return obj;
  1027. },
  1028. getSectionDataByUnit: function (v, obj) {
  1029. var key = (this.businessData.task) ? this.businessData.task.unit : "";
  1030. if (!obj || (typeOf(obj) !== "object")) obj = {};
  1031. if (key) obj[key] = v;
  1032. return obj;
  1033. },
  1034. getSectionDataByPActivity: function (v, obj) {
  1035. var key = (this.businessData.work) ? this.businessData.work.activity : "";
  1036. if (!obj || (typeOf(obj) !== "object")) obj = {};
  1037. if (key) obj[key] = v;
  1038. return obj;
  1039. },
  1040. getSectionDataBySplitValue: function (v, obj) {
  1041. var key = (this.businessData.work) ? this.businessData.work.splitValue : "";
  1042. if (!obj || (typeOf(obj) !== "object")) obj = {};
  1043. if (key) obj[key] = v;
  1044. return obj;
  1045. },
  1046. getSectionDataByScript: function (code, v, obj) {
  1047. var key = this.Macro.exec(code, this);
  1048. if (!obj || (typeOf(obj) !== "object")) obj = {};
  1049. if (key) obj[key] = v;
  1050. return obj;
  1051. },
  1052. setSection: function (json, data) {
  1053. var obj = data[json.name];
  1054. switch (json.sectionBy) {
  1055. case "person":
  1056. return this.setSectionByPerson(obj, json.name);
  1057. case "unit":
  1058. return this.setSectionByUnit(obj, json.name);
  1059. case "activity":
  1060. return this.setSectionByPActivity(obj, json.name);
  1061. case "splitValue":
  1062. return this.setSectionBySplitValue(obj, json.name);
  1063. case "script":
  1064. return this.setSectionByScript(json.sectionByScript.code, obj, json.name);
  1065. default:
  1066. return v;
  1067. }
  1068. },
  1069. setSectionByPerson: function (obj, name) {
  1070. var key = layout.desktop.session.user.id;
  1071. if (!obj || (typeOf(obj) !== "object")) obj = {};
  1072. //obj[key] = v;
  1073. this.sectionListObj[name] = key;
  1074. return obj;
  1075. },
  1076. setSectionByUnit: function (obj, name) {
  1077. var key = (this.businessData.task) ? this.businessData.task.unit : "";
  1078. if (!obj || (typeOf(obj) !== "object")) obj = {};
  1079. this.sectionListObj[name] = key || "";
  1080. //if (key) obj[key] = v;
  1081. return obj;
  1082. },
  1083. setSectionByPActivity: function (obj, name) {
  1084. var key = (this.businessData.work) ? this.businessData.work.activity : "";
  1085. if (!obj || (typeOf(obj) !== "object")) obj = {};
  1086. this.sectionListObj[name] = key || "";
  1087. //if (key) obj[key] = v;
  1088. return obj;
  1089. },
  1090. setSectionBySplitValue: function (obj, name) {
  1091. var key = (this.businessData.work) ? this.businessData.work.splitValue : "";
  1092. if (!obj || (typeOf(obj) !== "object")) obj = {};
  1093. this.sectionListObj[name] = key || "";
  1094. //if (key) obj[key] = v;
  1095. return obj;
  1096. },
  1097. setSectionByScript: function (code, obj, name) {
  1098. var key = this.Macro.exec(code, this);
  1099. if (!obj || (typeOf(obj) !== "object")) obj = {};
  1100. this.sectionListObj[name] = key || "";
  1101. //if (key) obj[key] = v;
  1102. return obj;
  1103. },
  1104. saveWork: function (callback, silent) {
  1105. if (this.businessData.control["allowSave"]) {
  1106. this.fireEvent("beforeSave");
  1107. this.fireEvent("beforeSaveWork");
  1108. if (this.app && this.app.fireEvent) this.app.fireEvent("beforeSave");
  1109. this.saveFormData(function (json) {
  1110. if (this.app && !silent) this.app.notice(MWF.xApplication.process.Xform.LP.dataSaved, "success");
  1111. if (callback && typeOf(callback) === "function") callback();
  1112. this.fireEvent("afterSave");
  1113. this.fireEvent("afterSaveWork");
  1114. if (this.app && this.app.fireEvent) this.app.fireEvent("afterSave");
  1115. }.bind(this));
  1116. } else {
  1117. MWF.xDesktop.notice("error", { x: "right", y: "top" }, "Permission Denied");
  1118. //if (failure) failure(null, "Permission Denied", "");
  1119. }
  1120. },
  1121. getSectionList: function () {
  1122. return Object.keys(this.sectionListObj).map(function (p) {
  1123. var o = { "path": p };
  1124. if (this.sectionListObj[p]) o.key = this.sectionListObj[p];
  1125. return o;
  1126. }.bind(this));
  1127. },
  1128. setModifedDataByPathList: function (data, pathList) {
  1129. var d = this.modifedData;
  1130. for (var i = 0; i < pathList.length; i++) {
  1131. if (i === pathList.length - 1) {
  1132. d[pathList[i]] = data;
  1133. } else {
  1134. if (typeOf(d[pathList[i]]) === "object" || typeOf(d[pathList[i]]) === "array") {
  1135. d = d[pathList[i]]
  1136. } else if (typeOf(pathList[i]) === "number") {
  1137. d = d[pathList[i]] = [];
  1138. } else {
  1139. d = d[pathList[i]] = {};
  1140. }
  1141. }
  1142. }
  1143. },
  1144. getOrigianlPathData: function (pathList) {
  1145. var d = this.businessData.originalData;
  1146. for (var i = 0; i < pathList.length; i++) {
  1147. if (i === pathList.length - 1) {
  1148. d = d[pathList[i]];
  1149. } else {
  1150. if (typeOf(d[pathList[i]]) === "object" || typeOf(d[pathList[i]]) === "array") {
  1151. d = d[pathList[i]];
  1152. } else {
  1153. return null;
  1154. }
  1155. }
  1156. }
  1157. return d;
  1158. },
  1159. setModifedData: function (data, pathList) {
  1160. pathList = pathList || [];
  1161. if (typeOf(data) === "object") {
  1162. for (var key in data) {
  1163. var pList = Array.clone(pathList);
  1164. pList.push(key);
  1165. this.setModifedData(data[key], pList);
  1166. }
  1167. } else if (typeOf(data) === "array") {
  1168. var od = this.getOrigianlPathData(pathList);
  1169. // if (typeOf(od) !== "array" || od.length !== data.length || JSON.stringify(od) !== JSON.stringify(data)) {
  1170. if (typeOf(od) !== "array" || od.length !== data.length || !this.compareObjects( od, data ) ) {
  1171. this.setModifedDataByPathList(data, pathList);
  1172. }
  1173. //}else{
  1174. // for( var i=0; i<data.length; i++ ){
  1175. // this.setModifedData(data[i], pathList.push(i));
  1176. // }
  1177. //}
  1178. } else if (typeOf(data) !== "null") { //后台对null是忽略处理的,认为值没有变化
  1179. var od = this.getOrigianlPathData(pathList);
  1180. if (typeOf(data) !== typeOf(od) || data !== od) {
  1181. this.setModifedDataByPathList(data, pathList);
  1182. }
  1183. }
  1184. },
  1185. compareObjects: function(o, p, deep){
  1186. if( !deep )deep = 0;
  1187. if( deep > 15 )return false; //最大层数,避免相互嵌套
  1188. var type1 = typeOf( o ), type2 = typeOf( p );
  1189. if( type1 !== type2 )return false;
  1190. if( type1 === "object" ){
  1191. for( var k in o ){
  1192. if( o[k] === null || o[k] === undefined )delete o[k]
  1193. }
  1194. for( var k in p ){
  1195. if( p[k] === null || p[k] === undefined )delete p[k]
  1196. }
  1197. }
  1198. switch (type1) {
  1199. case "object":
  1200. case "array":
  1201. var i, keysO = Object.keys(o), keysP = Object.keys(p);
  1202. if (keysO.length !== keysP.length){
  1203. return false;
  1204. }
  1205. keysO.sort();
  1206. keysP.sort();
  1207. for ( i=0; i<keysO.length; i++ ){
  1208. var key = keysO[i];
  1209. if( type1 === "array" )key = key.toInt();
  1210. var valueO = o[key], valueP = p[key];
  1211. if( this.compareObjects( valueO, valueP, deep++ ) === false ){
  1212. return false;
  1213. }
  1214. }
  1215. break;
  1216. case "function":
  1217. break;
  1218. default:
  1219. if (o!==p){
  1220. return false;
  1221. }
  1222. }
  1223. return true;
  1224. },
  1225. saveFormData: function (callback, failure, history, data, issubmit, isstart) {
  1226. if (this.businessData.work.startTime) {
  1227. this.saveFormDataInstance(callback, failure, history, data, issubmit);
  1228. } else {
  1229. this.saveFormDataDraft(callback, failure, history, data, issubmit, isstart);
  1230. }
  1231. },
  1232. saveFormDataInstance: function (callback, failure, history, data, issubmit) {
  1233. if (this.officeList) {
  1234. this.officeList.each(function (module) {
  1235. module.save(history);
  1236. });
  1237. }
  1238. var data = data || this.getData(issubmit);
  1239. this.modifedData = {};
  1240. this.setModifedData(data);
  1241. this.workAction.saveData(callback || function () { }, failure, this.businessData.work.id, this.modifedData);
  1242. this.businessData.originalData = null;
  1243. this.businessData.originalData = Object.clone(data);
  1244. },
  1245. saveFormDataDraft: function (callback, failure, history, data, issubmit, isstart) {
  1246. if (this.officeList) {
  1247. this.officeList.each(function (module) {
  1248. module.save(history);
  1249. });
  1250. }
  1251. var data = data || this.getData(issubmit);
  1252. var draft = {
  1253. "data": data,
  1254. "work": this.businessData.work,
  1255. "identity": this.businessData.work.creatorIdentityDn
  1256. }
  1257. this.workAction.saveDraft(draft, function (json) {
  1258. this.workAction.getDraft(json.data.id, function (json) {
  1259. this.businessData.work = json.data.work;
  1260. this.app.options.draftId = json.data.work.id;
  1261. if (layout.app && layout.app.inBrowser){
  1262. if (layout.app) layout.app.$openWithSelf = true;
  1263. if (callback) callback();
  1264. if (!isstart) layout.desktop.openApplication(null, "process.Work", {"draftId": this.app.options.draftId});
  1265. }else{
  1266. this.app.options.desktopReload = true;
  1267. this.app.appId = "process.Work" + json.data.work.id;
  1268. if (layout.desktop.apps) {
  1269. delete layout.desktop.apps[this.app.options.appId];
  1270. } else {
  1271. layout.desktop.apps = {};
  1272. }
  1273. layout.desktop.apps[this.app.appId] = this.app;
  1274. if (callback) callback();
  1275. if (!isstart) this.app.reload();
  1276. }
  1277. }.bind(this));
  1278. }.bind(this), failure);
  1279. this.businessData.originalData = null;
  1280. this.businessData.originalData = Object.clone(data);
  1281. },
  1282. setProcessorSectionOrgList: function (data) {
  1283. if (!this.routeDataList) this.getRouteDataList();
  1284. var routeList = this.routeDataList;
  1285. //var processorSectionOrg = [];
  1286. for (var i = 0; i < routeList.length; i++) {
  1287. (routeList[i].selectConfigList || []).each(function (config, j) {
  1288. if (config.section == "yes") {
  1289. this.setSection(config, data);
  1290. }
  1291. }.bind(this))
  1292. }
  1293. },
  1294. getRouteDataList: function () {
  1295. if (!this.routeDataList) {
  1296. o2.Actions.get("x_processplatform_assemble_surface").listRoute({ "valueList": this.businessData.task.routeList }, function (json) {
  1297. json.data.each(function (d) {
  1298. d.selectConfigList = JSON.parse(d.selectConfig || "[]");
  1299. }.bind(this));
  1300. this.routeDataList = json.data;
  1301. }.bind(this), null, false);
  1302. }
  1303. return this.routeDataList;
  1304. },
  1305. beforeCloseWork: function () {
  1306. this.fireEvent("beforeClose");
  1307. if (this.app && this.app.fireEvent) {
  1308. this.app.fireEvent("beforeClose");
  1309. // this.fireEvent("afterClose");
  1310. }
  1311. if (!this.options.readonly) {
  1312. if (this.businessData.work && this.businessData.work.id) {
  1313. if (!this.isSendBeacon) {
  1314. if (this.app.inBrowser && navigator.sendBeacon) {
  1315. var obj = this.workAction.action.actions["checkDraft"];
  1316. var url = this.workAction.action.address + obj.uri;
  1317. url = url.replace("{id}", this.businessData.work.id);
  1318. navigator.sendBeacon(url);
  1319. } else {
  1320. this.workAction.checkDraft(this.businessData.work.id, function () {
  1321. if (layout.desktop.apps) {
  1322. if (layout.desktop.apps["TaskCenter"] && layout.desktop.apps["TaskCenter"].window) {
  1323. layout.desktop.apps["TaskCenter"].content.unmask();
  1324. layout.desktop.apps["TaskCenter"].refreshAll();
  1325. }
  1326. }
  1327. }.bind(this), null, false);
  1328. }
  1329. this.isSendBeacon = true;
  1330. }
  1331. }
  1332. } else {
  1333. this.app.refreshTaskCenter();
  1334. }
  1335. },
  1336. closeWork: function () {
  1337. // this.fireEvent("beforeClose");
  1338. // if (this.app && this.app.fireEvent){
  1339. // this.app.fireEvent("beforeClose");
  1340. // // this.fireEvent("afterClose");
  1341. // }
  1342. // debugger;
  1343. // if (!this.options.readonly)
  1344. // if (this.businessData.work) this.workAction.checkDraft(this.businessData.work.id);
  1345. this.app.close();
  1346. },
  1347. getMessageContent: function (data, maxLength, titlelp) {
  1348. var content = "";
  1349. if (data.completed) {
  1350. content += MWF.xApplication.process.Xform.LP.workCompleted;
  1351. } else {
  1352. if (data.occurSignalStack) {
  1353. if (data.signalStack && data.signalStack.length) {
  1354. var activityUsers = [];
  1355. data.signalStack.each(function (stack) {
  1356. var idList = [];
  1357. if (stack.splitExecute) {
  1358. idList = stack.splitExecute.splitValueList || [];
  1359. }
  1360. if (stack.manualExecute) {
  1361. idList = stack.manualExecute.identities || [];
  1362. }
  1363. var count = 0;
  1364. var ids = [];
  1365. idList.each( function(i){
  1366. var cn = o2.name.cn(i);
  1367. if( !ids.contains( cn ) ){
  1368. ids.push(cn)
  1369. }
  1370. });
  1371. if (ids.length > 8) {
  1372. count = ids.length;
  1373. ids = ids.slice(0, 8);
  1374. }
  1375. ids = o2.name.cns(ids);
  1376. var lp = MWF.xApplication.process.Xform.LP;
  1377. var t = "<b>" + lp.nextActivity + "</b><span style='color: #ea621f'>" + stack.name + "</span>;<b>" + lp.nextUser + "</b><span style='color: #ea621f'>" + ids.join(",") + "</span> <b>" + ((count) ? "," + lp.next_etc.replace("{count}", count) : "") + "</b>";
  1378. activityUsers.push(t);
  1379. }.bind(this));
  1380. content += activityUsers.join("<br>");
  1381. } else {
  1382. content += MWF.xApplication.process.Xform.LP.taskCompleted;
  1383. }
  1384. } else {
  1385. if (data.properties.nextManualList && data.properties.nextManualList.length) {
  1386. var activityUsers = [];
  1387. data.properties.nextManualList.each(function (a) {
  1388. var ids = [];
  1389. a.taskIdentityList.each(function (i) {
  1390. var cn = o2.name.cn(i);
  1391. if( !ids.contains( cn ) ){
  1392. ids.push(cn)
  1393. }
  1394. });
  1395. var t = "<b>" + MWF.xApplication.process.Xform.LP.nextActivity + "</b><span style='color: #ea621f'>" + a.activityName + "</span>;<b>" + MWF.xApplication.process.Xform.LP.nextUser + "</b><span style='color: #ea621f'>" + ids.join(",") + "</span>";
  1396. activityUsers.push(t);
  1397. });
  1398. content += activityUsers.join("<br>");
  1399. } else {
  1400. if (data.arrivedActivityName) {
  1401. content += MWF.xApplication.process.Xform.LP.arrivedActivity + data.arrivedActivityName;
  1402. } else {
  1403. content += MWF.xApplication.process.Xform.LP.taskCompleted;
  1404. }
  1405. }
  1406. }
  1407. }
  1408. var title = this.businessData.data.title || this.businessData.data.subject || this.businessData.work.title
  1409. if (maxLength && title.length > maxLength) {
  1410. title = title.substr(0, maxLength) + "..."
  1411. }
  1412. return "<div>" + (titlelp || MWF.xApplication.process.Xform.LP.taskProcessedMessage) + "“" + title + "”</div>" + content;
  1413. },
  1414. addMessage: function (data, notShowBrowserDkg) {
  1415. if (layout.desktop.message) {
  1416. var msg = {
  1417. "subject": MWF.xApplication.process.Xform.LP.taskProcessed,
  1418. "content": this.getMessageContent(data, 0, MWF.xApplication.process.Xform.LP.taskProcessedMessage)
  1419. };
  1420. layout.desktop.message.addTooltip(msg);
  1421. return layout.desktop.message.addMessage(msg);
  1422. } else {
  1423. if (this.app.inBrowser && !notShowBrowserDkg) {
  1424. this.inBrowserDkg(this.getMessageContent(data, 0, MWF.xApplication.process.Xform.LP.taskProcessedMessage));
  1425. }
  1426. }
  1427. },
  1428. formValidation: function (routeName, opinion, medias) {
  1429. if (this.options.readonly) return true;
  1430. this.Macro.environment.form.currentRouteName = routeName;
  1431. this.Macro.environment.form.opinion = opinion;
  1432. this.Macro.environment.form.medias = medias;
  1433. var flag = true;
  1434. //flag = this.validation();
  1435. Object.each(this.forms, function (field, key) {
  1436. field.validationMode();
  1437. if (!field.validation(routeName, opinion, medias)) flag = false;
  1438. }.bind(this));
  1439. return flag;
  1440. },
  1441. validation: function (routeName, opinion, processor, medias) {
  1442. this.Macro.environment.form.currentRouteName = routeName;
  1443. this.Macro.environment.form.opinion = opinion;
  1444. this.Macro.environment.form.medias = medias;
  1445. var routeFlag = this.validationRoute(processor);
  1446. var opinionFlag = this.validationOpinion(processor);
  1447. return routeFlag && opinionFlag;
  1448. },
  1449. validationRoute: function (processor) {
  1450. if (!this.json.validationRoute) return true;
  1451. if (!this.json.validationRoute.code) return true;
  1452. var flag = this.Macro.exec(this.json.validationRoute.code, this);
  1453. if (!flag) flag = MWF.xApplication.process.Xform.LP.notValidation;
  1454. if (flag.toString() != "true") {
  1455. this.notValidationRouteMode(flag, processor);
  1456. return false;
  1457. }
  1458. return true;
  1459. },
  1460. validationOpinion: function (processor) {
  1461. if (!this.json.validationOpinion) return true;
  1462. if (!this.json.validationOpinion.code) return true;
  1463. var flag = this.Macro.exec(this.json.validationOpinion.code, this);
  1464. if (!flag) flag = MWF.xApplication.process.Xform.LP.notValidation;
  1465. if (flag.toString() != "true") {
  1466. this.notValidationOpinionMode(flag, processor);
  1467. return false;
  1468. }
  1469. return true;
  1470. },
  1471. formCustomValidation: function () {
  1472. if (!this.json.validationFormCustom) return true;
  1473. if (!this.json.validationFormCustom.code) return true;
  1474. var flag = this.Macro.exec(this.json.validationFormCustom.code, this);
  1475. if (!flag) flag = MWF.xApplication.process.Xform.LP.notValidation;
  1476. if (flag.toString() != "true") {
  1477. this.notValidationOpinionMode(flag);
  1478. return false;
  1479. }
  1480. return true;
  1481. },
  1482. notValidationRouteMode: function (flag, processor) {
  1483. if (processor) processor.routeSelectorArea.setStyle("background-color", "#ffe9e9");
  1484. MWF.xDesktop.notice(
  1485. "error",
  1486. { "x": "center", "y": "top" },
  1487. flag,
  1488. (processor) ? processor.routeSelectorArea : this.app.content,
  1489. null, //{"x": 0, "y": 30}
  1490. { "closeOnBoxClick": true, "closeOnBodyClick": true, "fixed": true, "delayClose": 6000 }
  1491. );
  1492. //new mBox.Notice({
  1493. // type: "error",
  1494. // position: {"x": "center", "y": "top"},
  1495. // move: false,
  1496. // target: (processor) ? processor.routeSelectorArea : this.app.content,
  1497. // delayClose: 6000,
  1498. // content: flag
  1499. //});
  1500. },
  1501. notValidationOpinionMode: function (flag, processor) {
  1502. if (processor) processor.inputTextarea.setStyle("background-color", "#ffe9e9");
  1503. MWF.xDesktop.notice(
  1504. "error",
  1505. (processor) ? { "x": "center", "y": "top" } : { "x": "right", "y": "top" },
  1506. flag,
  1507. (processor) ? processor.inputTextarea : this.app.content,
  1508. null, //{"x": 0, "y": 30}
  1509. { "closeOnBoxClick": true, "closeOnBodyClick": true, "fixed": true, "delayClose": 6000 }
  1510. );
  1511. //new mBox.Notice({
  1512. // type: "error",
  1513. // position: (processor) ? {"x": "center", "y": "top"} : {"x": "right", "y": "top"},
  1514. // move: false,
  1515. // target: (processor) ? processor.inputTextarea : this.app.content,
  1516. // delayClose: 6000,
  1517. // content: flag
  1518. //});
  1519. },
  1520. //fireRtEvent: function(type, args, delay){
  1521. // type = removeOn(type);
  1522. // var events = this.$events[type];
  1523. // if (!events) return this;
  1524. // if (!events.length) return this;
  1525. // var event = events[events.length-1];
  1526. // args = Array.from(args);
  1527. // if (delay) fn.delay(delay, this, args);
  1528. // else return fn.apply(this, args);
  1529. // return this;
  1530. //},
  1531. getIgnoreImpowerIdentity: function (processorOrgList) {
  1532. var list = [];
  1533. var check = function (org, isProcessOrg) {
  1534. var moduleData = isProcessOrg ? org.getValue() : org.getData();
  1535. var flag = false;
  1536. if (typeOf(moduleData) === "array" && moduleData.length) {
  1537. moduleData.each(function (d) {
  1538. if (d.ignoreEmpower) {
  1539. list.push(d.distinguishedName || d.unique || d.id);
  1540. d.ignoredEmpower = true;
  1541. delete d.ignoreEmpower;
  1542. flag = true;
  1543. }
  1544. })
  1545. }
  1546. if (flag) org.setData(moduleData);
  1547. }
  1548. var modules = this.modules;
  1549. for (var i = 0; i < modules.length; i++) {
  1550. var module = modules[i];
  1551. var moduleName = module.json.moduleName;
  1552. if (!moduleName) moduleName = typeOf(module.json.type) === "string" ? module.json.type.toLowerCase() : "";
  1553. if (moduleName === "org") {
  1554. check(module)
  1555. }
  1556. }
  1557. if (processorOrgList && processorOrgList.length > 0) {
  1558. for (var i = 0; i < processorOrgList.length; i++) {
  1559. check(processorOrgList[i], true)
  1560. }
  1561. }
  1562. return list;
  1563. },
  1564. //saveDocumentEditor
  1565. submitWork: function (routeName, opinion, medias, callback, processor, data, appendTaskIdentityList, processorOrgList, callbackBeforeSave) {
  1566. if (!this.businessData.control["allowProcessing"]) {
  1567. MWF.xDesktop.notice("error", { x: "right", y: "top" }, "Permission Denied");
  1568. this.app.content.unmask();
  1569. if (processor && processor.node) processor.node.unmask();
  1570. return false;
  1571. }
  1572. if (!this.formValidation(routeName, opinion, medias)) {
  1573. this.app.content.unmask();
  1574. //this.app.notice("", "error", target, where, offset);
  1575. if (callback) callback();
  1576. return false;
  1577. }
  1578. if (!this.validation(routeName, opinion, processor, medias)) {
  1579. //this.app.content.unmask();
  1580. if (processor && processor.node) processor.node.unmask();
  1581. //if (callback) callback();
  1582. return false;
  1583. }
  1584. if (!opinion) {
  1585. var idx = this.businessData.task.routeNameList.indexOf(routeName);
  1586. if (this.businessData.task.routeOpinionList[idx]) {
  1587. opinion = this.businessData.task.routeOpinionList[idx];
  1588. }
  1589. // else{
  1590. // opinion = routeName;
  1591. // }
  1592. }
  1593. this.fireEvent("beforeProcess");
  1594. if (this.app && this.app.fireEvent) this.app.fireEvent("beforeProcess");
  1595. // if (this.documenteditorList) {
  1596. // this.documenteditorList.each(function (module) {
  1597. // module.save(history);
  1598. // });
  1599. // }
  1600. //处理忽略授权
  1601. var ignoreEmpowerIdentityList = this.getIgnoreImpowerIdentity(processorOrgList);
  1602. var _self = this;
  1603. MWF.require("MWF.widget.Mask", function () {
  1604. this.mask = new MWF.widget.Mask({ "style": "desktop", "zIndex": 50000 });
  1605. this.mask.loadNode(this.app.content);
  1606. if (callbackBeforeSave) callbackBeforeSave();
  1607. this.fireEvent("beforeSave");
  1608. if (this.app && this.app.fireEvent) this.app.fireEvent("beforeSave");
  1609. this.saveFormData(function (json) {
  1610. this.businessData.task.routeName = routeName;
  1611. this.businessData.task.opinion = opinion || "";
  1612. var mediaIds = [];
  1613. if (medias && medias.length) {
  1614. medias.each(function (file) {
  1615. var formData = new FormData();
  1616. formData.append("file", file);
  1617. formData.append("site", "$mediaOpinion");
  1618. this.workAction.uploadAttachment(this.businessData.work.id, formData, file, function (json) {
  1619. mediaIds.push(json.data.id);
  1620. }.bind(this), null, false);
  1621. }.bind(this));
  1622. }
  1623. if (mediaIds.length) this.businessData.task.mediaOpinion = mediaIds.join(",");
  1624. if (appendTaskIdentityList && appendTaskIdentityList.length) {
  1625. var list = [];
  1626. appendTaskIdentityList.each(function (identity) {
  1627. if (typeOf(identity) === "object") {
  1628. list.push(identity.distinguishedName || identity.unique || identity.id)
  1629. } else {
  1630. list.push(identity);
  1631. }
  1632. }.bind(this));
  1633. this.businessData.task.appendTaskIdentityList = list;
  1634. }
  1635. this.businessData.task.ignoreEmpowerIdentityList = ignoreEmpowerIdentityList;
  1636. this.fireEvent("afterSave");
  1637. if (this.app && this.app.fireEvent) this.app.fireEvent("afterSave");
  1638. this.workAction.processTask(function (json) {
  1639. //if (processor) processor.destroy();
  1640. //if (processNode) processNode.destroy();
  1641. if (callback) callback(json);
  1642. this.taskList = json.data;
  1643. this.fireEvent("afterProcess");
  1644. if (this.app && this.app.fireEvent) this.app.fireEvent("afterProcess");
  1645. // this.notice(MWF.xApplication.process.Xform.LP.taskProcessed, "success");
  1646. this.addMessage(json.data, true);
  1647. if (this.app.taskObject) this.app.taskObject.destroy();
  1648. if (this.closeImmediatelyOnProcess) {
  1649. this.app.close();
  1650. } else if (typeOf(this.showCustomSubmitedDialog) === "function") {
  1651. this.showCustomSubmitedDialog(json.data);
  1652. } else if (layout.mobile) {
  1653. //移动端页面关闭
  1654. _self.finishOnMobile()
  1655. } else {
  1656. if (this.app.inBrowser) {
  1657. if (this.mask) this.mask.hide();
  1658. if (this.json.isPrompt !== false) {
  1659. this.showSubmitedDialog(json.data);
  1660. } else {
  1661. if (this.json.afterProcessAction == "redirect" && this.json.afterProcessRedirectScript && this.json.afterProcessRedirectScript.code) {
  1662. var url = this.Macro.exec(this.json.afterProcessRedirectScript.code, this);
  1663. (new URI(url)).go();
  1664. } else {
  1665. this.app.close();
  1666. }
  1667. }
  1668. //}
  1669. } else {
  1670. this.app.close();
  1671. }
  1672. }
  1673. //window.setTimeout(function(){this.app.close();}.bind(this), 2000);
  1674. }.bind(this), null, this.businessData.task.id, this.businessData.task);
  1675. }.bind(this), null, true, data, true);
  1676. }.bind(this));
  1677. },
  1678. showSubmitedDialog: function (data) {
  1679. var content = this.getMessageContent(data, this.json.submitedDlgStyle ? this.json.submitedDlgStyle.maxTitleLength : 60);
  1680. //if( this.json.submitedDlgUseNotice ){
  1681. // MWF.xDesktop.notice("success", {x: "right", y:"top"}, content);
  1682. // if (this.json.isPrompt!==false){
  1683. // if (this.json.promptCloseTime!=0){
  1684. // var t = this.json.promptCloseTime || 2;
  1685. // t = t.toInt()*1000;
  1686. // var _work = this;
  1687. // window.setTimeout(function(){ _work.app.close();}, t);
  1688. // }
  1689. // }else{
  1690. // this.app.close();
  1691. // }
  1692. //}else{
  1693. var div = new Element("div", { "styles": { "margin": "10px 10px 0px 10px", "padding": "5px", "overflow": "hidden", "width": "270px" } }).inject(this.app.content);
  1694. div.set("html", content);
  1695. var timerNode = new Element("div", { "styles": { "margin-top": "5px" } }).inject(div);
  1696. var options = {
  1697. "content": div,
  1698. "isTitle": false,
  1699. "width": 350,
  1700. "height": 180,
  1701. "buttonList": [
  1702. {
  1703. "text": this.app.lp.closePage,
  1704. "action": function () {
  1705. dlg.close();
  1706. if (this.json.afterProcessAction == "redirect" && this.json.afterProcessRedirectScript && this.json.afterProcessRedirectScript.code) {
  1707. var url = this.Macro.exec(this.json.afterProcessRedirectScript.code, this);
  1708. (new URI(url)).go();
  1709. } else {
  1710. this.app.close();
  1711. }
  1712. }.bind(this)
  1713. }
  1714. ]
  1715. };
  1716. if (this.json.submitedDlgStyle) {
  1717. options = Object.merge(options, this.json.submitedDlgStyle);
  1718. if (this.json.submitedDlgStyle.contentStyle) {
  1719. div.setStyles(this.json.submitedDlgStyle.contentStyle);
  1720. delete options.contentStyle;
  1721. }
  1722. }
  1723. var size = this.app.content.getSize();
  1724. switch (options.promptPosition || this.json.promptPosition || "righttop") {
  1725. case "lefttop":
  1726. options.top = 10;
  1727. options.left = 10;
  1728. options.fromTop = 10;
  1729. options.fromLeft = 10;
  1730. break;
  1731. case "righttop":
  1732. options.top = 10;
  1733. options.left = size.x - options.width - 10;
  1734. options.fromTop = 10;
  1735. options.fromLeft = size.x - 10;
  1736. break;
  1737. case "leftbottom":
  1738. options.top = size.y - options.height - 10;
  1739. options.left = 10;
  1740. options.fromTop = size.y - 10;
  1741. options.fromLeft = 10;
  1742. break;
  1743. case "rightbottom":
  1744. options.top = size.y - options.height - 10;
  1745. options.left = size.x - options.width - 10;
  1746. options.fromTop = size.y - 10;
  1747. options.fromLeft = size.x - 10;
  1748. break;
  1749. default:
  1750. delete options.top;
  1751. delete options.left;
  1752. delete options.fromTop;
  1753. delete options.fromLeft;
  1754. }
  1755. var _work = this;
  1756. options.onPostLoad = function () {
  1757. var dialog = this;
  1758. dialog.node.setStyle("display", "block");
  1759. var nodeSize = div.getSize();
  1760. dialog.content.setStyles({
  1761. //"width" : nodeSize.x,
  1762. "height": nodeSize.y
  1763. });
  1764. dialog.setContentSize();
  1765. if ((options.promptCloseTime || _work.json.promptCloseTime) != 0) {
  1766. var t = options.promptCloseTime || _work.json.promptCloseTime || 2;
  1767. t = t.toInt() * 1000;
  1768. if (options.isCountDown) {
  1769. timerNode.set("text", _work.app.lp.closePageCountDownText.replace("{second}", Math.ceil(t / 1000).toString()));
  1770. t = t - 1000;
  1771. var countDown = function () {
  1772. if (t > 0) {
  1773. timerNode.set("text", _work.app.lp.closePageCountDownText.replace("{second}", Math.ceil(t / 1000).toString()));
  1774. t = t - 1000;
  1775. window.setTimeout(countDown, 1000);
  1776. } else {
  1777. dlg.close();
  1778. if (_work.json.afterProcessAction == "redirect" && _work.json.afterProcessRedirectScript && _work.json.afterProcessRedirectScript.code) {
  1779. var url = _work.Macro.exec(_work.json.afterProcessRedirectScript.code, _work);
  1780. (new URI(url)).go();
  1781. } else {
  1782. _work.app.close();
  1783. }
  1784. }
  1785. };
  1786. window.setTimeout(countDown, 1000);
  1787. } else {
  1788. window.setTimeout(function () {
  1789. if (_work.json.afterProcessAction == "redirect" && _work.json.afterProcessRedirectScript && _work.json.afterProcessRedirectScript.code) {
  1790. var url = _work.Macro.exec(_work.json.afterProcessRedirectScript.code, _work);
  1791. (new URI(url)).go();
  1792. } else {
  1793. _work.app.close();
  1794. }
  1795. }, t);
  1796. }
  1797. }
  1798. };
  1799. var dlg = o2.DL.open(options);
  1800. },
  1801. startDraftProcess: function () {
  1802. if (!this.formCustomValidation("", "")) {
  1803. this.app.content.unmask();
  1804. // if (callback) callback();
  1805. return false;
  1806. }
  1807. if (!this.formValidation("", "")) {
  1808. this.app.content.unmask();
  1809. // if (callback) callback();
  1810. return false;
  1811. }
  1812. this.saveFormData(function () {
  1813. this.workAction.startDraft(this.businessData.work.id, function (json) {
  1814. this.app.options.workId = json.data[0].work;
  1815. if (layout.mobile || !layout.desktop.message) {
  1816. if (layout.notice) {
  1817. layout.notice(MWF.xApplication.process.Xform.LP.processStartedMessage + "“[" + json.data[0].processName + "]" + (this.businessData.data.title || this.businessData.data.subject));
  1818. }
  1819. } else {
  1820. if (layout.desktop.message){
  1821. var msg = {
  1822. "subject": MWF.xApplication.process.Xform.LP.processStarted,
  1823. "content": "<div>" + MWF.xApplication.process.Xform.LP.processStartedMessage + "“[" + json.data[0].processName + "]" + (this.businessData.data.title || this.businessData.data.subject) + "”</div>"
  1824. };
  1825. var tooltip = layout.desktop.message.addTooltip(msg);
  1826. var item = layout.desktop.message.addMessage(msg);
  1827. }
  1828. }
  1829. if (layout.app && layout.app.inBrowser){
  1830. if (layout.app) layout.app.$openWithSelf = true;
  1831. layout.desktop.openApplication(null, "process.Work", {"workId": this.app.options.workId, "action": "processTask"});
  1832. }
  1833. this.app.options.action = "processTask";
  1834. this.app.reload();
  1835. //this.app.notice(MWF.xApplication.process.Xform.LP.dataSaved, "success");
  1836. //草稿模式暂时不能上传附件,不能直接流转文件
  1837. // o2.Actions.invokeAsync([
  1838. // {"action": this.workAction, "name": "loadWork"},
  1839. // {"action": this.workAction, "name": "getWorkControl"},
  1840. // {"action": this.workAction, "name": "getWorkLog"},
  1841. // {"action": this.workAction, "name": "getRecordLog"},
  1842. // {"action": this.workAction, "name": "listAttachments"}
  1843. // ], {"success": function(json_work, json_control, json_log, json_record, json_att){
  1844. // if (json_work && json_control && json_log && json_att){
  1845. // this.app.parseData(json_work.data, json_control.data, null, json_log.data, json_record.data, json_att.data);
  1846. // var workData = json_work.data;
  1847. // this.businessData.activity = workData.activity;
  1848. // this.businessData.originalData = Object.clone( this.businessData.data );
  1849. // this.businessData.taskList = workData.taskList;
  1850. // this.businessData.task = this.getCurrentTaskData(workData);
  1851. // this.businessData.taskList = workData.taskList;
  1852. // this.businessData.readList = workData.readList;
  1853. // this.businessData.work = workData.work;
  1854. // this.businessData.workCompleted = (workData.work.completedTime) ? workData.work : null;
  1855. //
  1856. // this.businessData.workLogList = json_log.data;
  1857. // this.businessData.recordList = json_record.data;
  1858. // this.businessData.attachmentList = json_att.data;
  1859. // this.businessData.control = json_control.data;
  1860. //
  1861. // if (this.businessData.task){
  1862. // this.processWork();
  1863. // }else{
  1864. // this.app.options.workId = json.data[0].work;
  1865. // this.app.reload();
  1866. // }
  1867. // }
  1868. // }.bind(this), "failure": function(){}}, json.data[0].work);
  1869. }.bind(this));
  1870. }.bind(this), null, false, null, false, true)
  1871. },
  1872. getCurrentTaskData: function (data) {
  1873. if ((data.currentTaskIndex || data.currentTaskIndex === 0) && data.currentTaskIndex != -1) {
  1874. this.app.options.taskId = this.businessData.taskList[data.currentTaskIndex].id;
  1875. return this.businessData.taskList[data.currentTaskIndex];
  1876. }
  1877. return null;
  1878. },
  1879. processWork: function () {
  1880. var _self = this;
  1881. if (!this.businessData.work.startTime) {
  1882. this.startDraftProcess();
  1883. } else if (this.json.submitFormType === "select") {
  1884. this.processWork_custom();
  1885. } else if (this.json.submitFormType === "script") {
  1886. this.processWork_custom();
  1887. } else {
  1888. if (this.json.mode == "Mobile") {
  1889. setTimeout(function () {
  1890. this.processWork_mobile();
  1891. }.bind(this), 100);
  1892. } else {
  1893. this.processWork_pc();
  1894. }
  1895. }
  1896. },
  1897. processWork_custom: function () {
  1898. this.fireEvent("beforeProcessWork");
  1899. if (this.app && this.app.fireEvent) this.app.fireEvent("beforeProcessWork");
  1900. if (!this.formCustomValidation("", "")) {
  1901. this.app.content.unmask();
  1902. // if (callback) callback();
  1903. return false;
  1904. }
  1905. if (!this.formValidation("", "")) {
  1906. this.app.content.unmask();
  1907. // if (callback) callback();
  1908. return false;
  1909. }
  1910. if (!this.submitFormModule) {
  1911. if (!MWF["APPSubmitform"]) {
  1912. MWF.xDesktop.requireApp("process.Xform", "Subform", null, false);
  1913. }
  1914. var submitFormContainer = new Element("div").inject(layout.mobile ? $(document.body) : this.app.content);
  1915. this.submitFormModule = new MWF["APPSubmitform"](submitFormContainer, this.json, this);
  1916. this.submitFormModule.addEvent("afterModulesLoad", function () {
  1917. this.submitFormModule.show();
  1918. }.bind(this))
  1919. this.submitFormModule.load();
  1920. } else {
  1921. this.submitFormModule.show();
  1922. }
  1923. },
  1924. processWork_pc: function () {
  1925. var _self = this;
  1926. this.fireEvent("beforeProcessWork");
  1927. if (this.app && this.app.fireEvent) this.app.fireEvent("beforeProcessWork");
  1928. if (!this.formCustomValidation("", "")) {
  1929. this.app.content.unmask();
  1930. // if (callback) callback();
  1931. return false;
  1932. }
  1933. // MWF.require("MWF.widget.Mask", function() {
  1934. // this.mask = new MWF.widget.Mask({"style": "desktop", "zIndex": 50000});
  1935. // this.mask.loadNode(this.app.content);
  1936. if (!this.formValidation("", "")) {
  1937. this.app.content.unmask();
  1938. // if (callback) callback();
  1939. return false;
  1940. }
  1941. var setSize = function (notRecenter) {
  1942. var dlg = this;
  1943. if (!dlg || !dlg.node) return;
  1944. dlg.node.setStyle("display", "block");
  1945. var size = processNode.getSize();
  1946. dlg.content.setStyles({
  1947. "height": size.y,
  1948. "width": size.x
  1949. });
  1950. var s = dlg.setContentSize();
  1951. // if ( dlg.content.getStyle("overflow-y") === "auto" && dlg.content.getStyle("overflow-x") !== "auto" ) {
  1952. // var paddingRight = (dlg.content.getStyle("padding-right").toInt() || 0 );
  1953. // if( paddingRight < 20 ){
  1954. // dlg.node.setStyle("width", dlg.node.getStyle("width").toInt() + 20 + "px");
  1955. // dlg.content.setStyle("width", dlg.content.getStyle("width").toInt() + 20 + "px");
  1956. // }
  1957. // }
  1958. if (!notRecenter) dlg.reCenter();
  1959. }
  1960. //var node = new Element("div", {"styles": this.css.rollbackAreaNode});
  1961. var processNode = new Element("div", { "styles": this.app.css.processNode_Area }).inject(this.node);
  1962. this.setProcessNode(processNode, "process", function (processor) {
  1963. this.processDlg = o2.DL.open({
  1964. "title": this.app.lp.process,
  1965. "style": this.json.dialogStyle || "user",
  1966. "isResize": false,
  1967. "content": processNode,
  1968. "maskNode": this.app.content,
  1969. "positionHeight": 800,
  1970. "maxHeight": 800,
  1971. "maxHeightPercent": "98%",
  1972. "minTop": 5,
  1973. "width": "auto", //processNode.retrieve("width") || 1000, //600,
  1974. "height": "auto", //processNode.retrieve("height") || 401,
  1975. "buttonList": [
  1976. {
  1977. "type": "ok",
  1978. "text": MWF.LP.process.button.ok,
  1979. "action": function (d, e) {
  1980. if (this.processor) this.processor.okButton.click();
  1981. }.bind(this)
  1982. },
  1983. {
  1984. "type": "cancel",
  1985. "text": MWF.LP.process.button.cancel,
  1986. "action": function () {
  1987. this.processDlg.close();
  1988. if (this.processor) this.processor.destroy();
  1989. }.bind(this)
  1990. }
  1991. ],
  1992. "onPostLoad": function () {
  1993. processor.options.mediaNode = this.content;
  1994. setSize.call(this)
  1995. }
  1996. });
  1997. }.bind(this), function () {
  1998. if (this.processDlg) setSize.call(this.processDlg, true)
  1999. }.bind(this));
  2000. },
  2001. processWork_mobile: function () {
  2002. if (this.app.inBrowser) {
  2003. this.app.content.setStyle("height", document.body.getSize().y);
  2004. }
  2005. this.fireEvent("beforeProcessWork");
  2006. if (this.app && this.app.fireEvent) this.app.fireEvent("beforeProcessWork");
  2007. var position = this.app.content.getPosition(this.app.content.getOffsetParent());
  2008. if (this.json.mode != "Mobile") {
  2009. this.app.content.mask({
  2010. "destroyOnHide": true,
  2011. "style": this.app.css.maskNode,
  2012. "useIframeShim": true,
  2013. "iframeShimOptions": { "browsers": true },
  2014. "onShow": function () {
  2015. this.shim.shim.setStyles({
  2016. "opacity": 0,
  2017. "top": "" + position.y + "px",
  2018. "left": "" + position.x + "px"
  2019. });
  2020. }
  2021. });
  2022. }
  2023. if (!this.formCustomValidation("", "")) {
  2024. this.app.content.unmask();
  2025. // if (callback) callback();
  2026. return false;
  2027. }
  2028. // MWF.require("MWF.widget.Mask", function() {
  2029. // this.mask = new MWF.widget.Mask({"style": "desktop", "zIndex": 50000});
  2030. // this.mask.loadNode(this.app.content);
  2031. if (!this.formValidation("", "")) {
  2032. this.app.content.unmask();
  2033. // if (callback) callback();
  2034. return false;
  2035. }
  2036. var processNode = this.createProcessNode();
  2037. //this.setProcessNode(processNode);
  2038. this.setProcessNode(processNode);
  2039. this.showProcessNode(processNode);
  2040. processNode.setStyle("overflow", "auto");
  2041. //}.bind(this));
  2042. },
  2043. createProcessNode: function () {
  2044. var fromCss = this.app.css.processNode_from;
  2045. var css = this.app.css.processNode;
  2046. if (layout.mobile) {
  2047. fromCss = this.app.css.processNodeMobile_from;
  2048. css = this.app.css.processNodeMobile;
  2049. // var contentSize = this.app.content.getSize();
  2050. fromCss.width = "100%";
  2051. css.width = "100%";
  2052. fromCss.height = "100%";
  2053. css.height = "100%";
  2054. }
  2055. if (this.json.mode == "Mobile") {
  2056. var processNode = new Element("div", { "styles": fromCss }).inject(document.body);
  2057. } else {
  2058. var processNode = new Element("div", { "styles": fromCss }).inject(this.app.content);
  2059. }
  2060. processNode.position({
  2061. relativeTo: this.app.content,
  2062. position: "topcenter",
  2063. edge: "topcenter"
  2064. });
  2065. return processNode;
  2066. },
  2067. getOpinion: function () {
  2068. var opinion = "";
  2069. var medias = [];
  2070. Object.each(this.forms, function (m, id) {
  2071. if (m.json.type === "Opinion") if (this.businessData.data[id]) opinion += " " + m._getBusinessSectionDataByPerson();
  2072. if (m.handwritingFile) if (m.handwritingFile[layout.session.user.distinguishedName]) medias.push(m.handwritingFile[layout.session.user.distinguishedName]);
  2073. if (m.soundFile) if (m.soundFile[layout.session.user.distinguishedName]) medias.push(m.soundFile[layout.session.user.distinguishedName]);
  2074. if (m.videoFile) if (m.videoFile[layout.session.user.distinguishedName]) medias.push(m.videoFile[layout.session.user.distinguishedName]);
  2075. }.bind(this));
  2076. return { "opinion": opinion.trim(), "medias": medias };
  2077. },
  2078. setProcessNode: function (processNode, style, postLoadFun, resizeFun) {
  2079. var _self = this;
  2080. MWF.xDesktop.requireApp("process.Work", "Processor", function () {
  2081. var op = this.getOpinion();
  2082. var mds = op.medias;
  2083. var innerNode;
  2084. if (layout.mobile) {
  2085. innerNode = new Element("div").inject(processNode);
  2086. }
  2087. this.processor = new MWF.xApplication.process.Work.Processor(innerNode || processNode, this.businessData.task, {
  2088. "style": (layout.mobile) ? "mobile" : (style || "default"),
  2089. "opinion": op.opinion,
  2090. "tabletWidth": this.json.tabletWidth || 0,
  2091. "tabletHeight": this.json.tabletHeight || 0,
  2092. "onPostLoad": function () {
  2093. if (postLoadFun) postLoadFun(this);
  2094. },
  2095. "onResize": function () {
  2096. if (resizeFun) resizeFun();
  2097. },
  2098. "onCancel": function () {
  2099. processNode.destroy();
  2100. _self.app.content.unmask();
  2101. delete this;
  2102. },
  2103. "onSubmit": function (routeName, opinion, medias, appendTaskIdentityList, processorOrgList, callbackBeforeSave) {
  2104. if (!medias || !medias.length) {
  2105. medias = mds;
  2106. } else {
  2107. medias = medias.concat(mds)
  2108. }
  2109. _self.submitWork(routeName, opinion, medias, function () {
  2110. this.destroy();
  2111. processNode.destroy();
  2112. if (_self.processDlg) _self.processDlg.close();
  2113. delete this;
  2114. }.bind(this), this, null, appendTaskIdentityList, processorOrgList, callbackBeforeSave);
  2115. }
  2116. }, this);
  2117. }.bind(this));
  2118. },
  2119. showProcessNode: function (processNode) {
  2120. if (layout.mobile) {
  2121. processNode.setStyles(this.app.css.processNodeMobile)
  2122. } else {
  2123. var size = this.app.content.getSize();
  2124. var nodeSize = processNode.getSize();
  2125. var top = size.y / 2 - nodeSize.y / 2 - 20;
  2126. var left = size.x / 2 - nodeSize.x / 2;
  2127. if (top < 0) top = 0;
  2128. this.app.css.processNode.top = "" + top + "px";
  2129. this.app.css.processNode.left = "" + left + "px";
  2130. var morph = new Fx.Morph(processNode, {
  2131. "duration": 300,
  2132. "transition": Fx.Transitions.Expo.easeOut
  2133. });
  2134. morph.start(this.app.css.processNode);
  2135. }
  2136. },
  2137. confirm: function (type, e, title, text, width, height, ok, cancel, callback, mask, style) {
  2138. MWF.require("MWF.xDesktop.Dialog", function () {
  2139. var size = this.container.getSize();
  2140. var x = 0;
  2141. var y = 0;
  2142. if (typeOf(e) === "element") {
  2143. var position = e.getPosition(this.app.content);
  2144. x = position.x;
  2145. y = position.y;
  2146. } else {
  2147. if (Browser.name == "firefox") {
  2148. x = parseFloat(e.event.clientX || e.event.x);
  2149. y = parseFloat(e.event.clientY || e.event.y);
  2150. } else {
  2151. x = parseFloat(e.event.x);
  2152. y = parseFloat(e.event.y);
  2153. }
  2154. if (e.target) {
  2155. var position = e.target.getPosition(this.app.content);
  2156. //var position = e.target.getPosition();
  2157. x = position.x;
  2158. y = position.y;
  2159. }
  2160. }
  2161. // if (Browser.Platform.ios){
  2162. // $("textdiv").set("text", "$(document.body).getScroll().y: "+$(document.body).getScroll().y);
  2163. // y = y-$(document.body).getScroll().y;
  2164. // }
  2165. if (x + parseFloat(width) > size.x) {
  2166. x = x - parseFloat(width);
  2167. }
  2168. if (x < 0) x = 10;
  2169. if (y + parseFloat(height) > size.y) {
  2170. y = y - parseFloat(height);
  2171. }
  2172. if (y < 0) y = 10;
  2173. //var x = parseFloat((Browser.name==="firefox") ? e.event.clientX : e.event.x);
  2174. //var y = parseFloat((Browser.name==="firefox") ? e.event.clientY : e.event.y);
  2175. // if (x+parseFloat(width)>size.x){
  2176. // x = x-parseFloat(width);
  2177. // }
  2178. if (x < 0) x = 20;
  2179. var dlg = new MWF.xDesktop.Dialog({
  2180. "title": title,
  2181. "style": style || "o2",
  2182. "top": y,
  2183. "left": x - 20,
  2184. "fromTop": e.event.y,
  2185. "fromLeft": (Browser.name === "firefox") ? e.event.clientX - 20 : e.event.x - 20,
  2186. "width": width,
  2187. "height": height,
  2188. "text": text,
  2189. "container": this.app.content,
  2190. "maskNode": mask || this.app.content,
  2191. "buttonList": [
  2192. {
  2193. "type": "ok",
  2194. "text": MWF.LP.process.button.ok,
  2195. "action": ok
  2196. },
  2197. {
  2198. "type": "cancel",
  2199. "text": MWF.LP.process.button.cancel,
  2200. "action": cancel
  2201. }
  2202. ]
  2203. });
  2204. switch (type.toLowerCase()) {
  2205. case "success":
  2206. if (this.json.confirmIcon && this.json.confirmIcon.success) {
  2207. dlg.content.setStyle("background-image", "url(" + this.json.confirmIcon.success + ")");
  2208. } else {
  2209. dlg.content.setStyle("background-image", "url(data:image/png;base64,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)");
  2210. }
  2211. break;
  2212. case "error":
  2213. if (this.json.confirmIcon && this.json.confirmIcon.error) {
  2214. dlg.content.setStyle("background-image", "url(" + this.json.confirmIcon.error + ")");
  2215. } else {
  2216. dlg.content.setStyle("background-image", "url(data:image/png;base64,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)");
  2217. }
  2218. break;
  2219. case "info":
  2220. if (this.json.confirmIcon && this.json.confirmIcon.info) {
  2221. dlg.content.setStyle("background-image", "url(" + this.json.confirmIcon.info + ")");
  2222. } else {
  2223. dlg.content.setStyle("background-image", "url(data:image/png;base64,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)");
  2224. }
  2225. break;
  2226. case "warn":
  2227. if (this.json.confirmIcon && this.json.confirmIcon.warn) {
  2228. dlg.content.setStyle("background-image", "url(" + this.json.confirmIcon.warn + ")");
  2229. } else {
  2230. dlg.content.setStyle("background-image", "url(data:image/png;base64,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)");
  2231. }
  2232. break;
  2233. default:
  2234. if (this.json.confirmIcon && this.json.confirmIcon.warn) {
  2235. dlg.content.setStyle("background-image", "url(" + this.json.confirmIcon.warn + ")");
  2236. }
  2237. break;
  2238. }
  2239. dlg.show();
  2240. }.bind(this));
  2241. },
  2242. alert: function (type, title, text, width, height) {
  2243. this.app.alert(type, "center", title, text, width, height);
  2244. },
  2245. notice: function (content, type, target, where, offset, option) {
  2246. if (!where) where = { "x": "right", "y": "top" };
  2247. //if (!target) target = this.node;
  2248. if (!type) type = "ok";
  2249. var noticeTarget = target || this.app.window.content;
  2250. var off = offset;
  2251. if (!off) {
  2252. off = {
  2253. x: 10,
  2254. y: where.y.toString().toLowerCase() == "bottom" ? 10 : 10
  2255. };
  2256. }
  2257. var options = {
  2258. type: type,
  2259. position: where,
  2260. move: false,
  2261. target: noticeTarget,
  2262. delayClose: (type === "error") ? 10000 : 5000,
  2263. //delayClose: 20000000,
  2264. offset: off,
  2265. content: content
  2266. }
  2267. if (this.json.noticeStyle) {
  2268. options = Object.merge(options, this.json.noticeStyle);
  2269. }
  2270. if (this.json["notice" + type.capitalize() + "Style"]) {
  2271. options = Object.merge(options, this.json["notice" + type.capitalize() + "Style"]);
  2272. }
  2273. if (option && typeOf(option) === "object") {
  2274. options = Object.merge(options, option);
  2275. }
  2276. new mBox.Notice(options);
  2277. },
  2278. addSplit: function () {
  2279. if (!this.businessData.control["allowAddSplit"]) {
  2280. MWF.xDesktop.notice("error", { x: "right", y: "top" }, "Permission Denied");
  2281. return false;
  2282. }
  2283. MWF.require("MWF.xDesktop.Dialog", function () {
  2284. var width = 600;
  2285. var height = 230;
  2286. var p = MWF.getCenterPosition(this.app.content, width, height);
  2287. var _self = this;
  2288. var dlg = new MWF.xDesktop.Dialog({
  2289. "title": this.app.lp.addSplit,
  2290. //"style": "work","
  2291. "style": this.json.dialogStyle || "user",
  2292. "top": p.y - 100,
  2293. "left": p.x,
  2294. "fromTop": p.y - 100,
  2295. "fromLeft": p.x,
  2296. "width": width,
  2297. "height": height,
  2298. "url": this.app.path + "split.html",
  2299. "container": this.app.content,
  2300. "isClose": true,
  2301. "buttonList": [
  2302. {
  2303. "type": "ok",
  2304. "text": MWF.LP.process.button.ok,
  2305. "action": function (d, e) {
  2306. //this.doResetWork(dlg);
  2307. var input = dlg.content.getElement("input");
  2308. var checks = dlg.content.getElements(".o2_addSplit_radio");
  2309. var value = input.get("value");
  2310. var trimExist = true;
  2311. if (checks[1].checked) trimExist = false;
  2312. _self.doAddSplit(dlg, value, trimExist);
  2313. }.bind(this)
  2314. },
  2315. {
  2316. "type": "cancel",
  2317. "text": MWF.LP.process.button.cancel,
  2318. "action": function () { dlg.close(); }
  2319. }
  2320. ],
  2321. "onPostShow": function () {
  2322. //var okButton = dlg.content.getElement(".o2_addSplit_okButton");
  2323. //var cancelButton = dlg.content.getElement(".o2_addSplit_cancelButton");
  2324. var selectButton = dlg.content.getElement(".o2_addSplit_selector");
  2325. var input = dlg.content.getElement("input");
  2326. var checks = dlg.content.getElements(".o2_addSplit_radio");
  2327. //okButton.addEvent("click", function(){
  2328. // var value = input.get("value");
  2329. // var trimExist = true;
  2330. // if (checks[1].checked) trimExist = false;
  2331. // _self.doAddSplit(this, value, trimExist);
  2332. //}.bind(this));
  2333. //cancelButton.addEvent("click", function(){
  2334. // this.close();
  2335. //}.bind(this));
  2336. selectButton.addEvent("click", function () {
  2337. var value = input.get("value");
  2338. MWF.xDesktop.requireApp("Selector", "package", function () {
  2339. new o2.O2Selector(_self.app.content, {
  2340. "type": "",
  2341. "count": 0,
  2342. "values": (value) ? value.split(o2.splitStr) : [],
  2343. "types": ["unit", "identity", "group", "role"],
  2344. "onComplete": function (items) {
  2345. var v = [];
  2346. items.each(function (item) {
  2347. v.push(item.data.distinguishedName);
  2348. });
  2349. input.set("value", v.join(", "));
  2350. }
  2351. });
  2352. }.bind(this));
  2353. //_self.selectSplitUnit(this);
  2354. }.bind(this));
  2355. }
  2356. });
  2357. dlg.show();
  2358. }.bind(this));
  2359. },
  2360. doAddSplit: function (dlg, splitValues, trimExist) {
  2361. if (!splitValues) {
  2362. this.app.notice(MWF.xApplication.process.Xform.LP.inputSplitValue, "error", dlg.node);
  2363. return false;
  2364. }
  2365. MWF.require("MWF.widget.Mask", function () {
  2366. var splitValue = splitValues.split(o2.splitStr);
  2367. this.mask = new MWF.widget.Mask({ "style": "desktop", "zIndex": 50000 });
  2368. this.mask.loadNode(this.app.content);
  2369. this.fireEvent("beforeAddSplit");
  2370. if (this.app && this.app.fireEvent) this.app.fireEvent("beforeAddSplit");
  2371. this.addSplitWork(splitValue, trimExist, function (json) {
  2372. this.fireEvent("afterAddSplit");
  2373. if (this.app && this.app.fireEvent) this.app.fireEvent("afterAddSplit");
  2374. this.addAddSplitMessage(json.data);
  2375. // this.workAction.loadWork(function(workJson){
  2376. // this.fireEvent("afterAddSplit");
  2377. // if (this.app && this.app.fireEvent) this.app.fireEvent("afterAddSplit");
  2378. // this.addAddSplitMessage(workJson.data);
  2379. // }.bind(this), null, this.businessData.work.id);
  2380. dlg.close();
  2381. if (this.mask) { this.mask.hide(); this.mask = null; }
  2382. }.bind(this), function (xhr, text, error) {
  2383. var errorText = error + ":" + text;
  2384. if (xhr) errorText = xhr.responseText;
  2385. this.app.notice("request json error: " + errorText, "error", dlg.node);
  2386. if (this.mask) { this.mask.hide(); this.mask = null; }
  2387. }.bind(this));
  2388. }.bind(this));
  2389. },
  2390. addSplitWork: function (splitValue, trimExist, success, failure) {
  2391. var data = { "splitValueList": splitValue, "trimExist": trimExist };
  2392. if (this.options.readonly) {
  2393. o2.Actions.load("x_processplatform_assemble_surface").WorkAction.V2AddSplit(this.businessData.work.id, data, function (json) {
  2394. if (success) success(json);
  2395. }.bind(this),
  2396. function (xhr, text, error) {
  2397. if (failure) failure(xhr, text, error);
  2398. });
  2399. // this.workAction.addSplit(
  2400. // function (json) {
  2401. // if (success) success(json);
  2402. // }.bind(this),
  2403. // function (xhr, text, error) {
  2404. // if (failure) failure(xhr, text, error);
  2405. // },
  2406. // this.businessData.work.id, data
  2407. // );
  2408. } else {
  2409. this.saveFormData(
  2410. function (json) {
  2411. o2.Actions.load("x_processplatform_assemble_surface").WorkAction.V2AddSplit(this.businessData.work.id, data, function (json) {
  2412. if (success) success(json);
  2413. }.bind(this),
  2414. function (xhr, text, error) {
  2415. if (failure) failure(xhr, text, error);
  2416. });
  2417. // this.workAction.addSplit(
  2418. // function (json) {
  2419. // if (success) success(json);
  2420. // }.bind(this),
  2421. // function (xhr, text, error) {
  2422. // if (failure) failure(xhr, text, error);
  2423. // },
  2424. // this.businessData.work.id, data
  2425. // );
  2426. }.bind(this),
  2427. function (xhr, text, error) {
  2428. if (failure) failure(xhr, text, error);
  2429. }, true, null, true
  2430. );
  2431. }
  2432. },
  2433. setRollBackChecked: function (item) {
  2434. item.store("isSelected", true);
  2435. item.setStyles(this.css.rollbackItemNode_current);
  2436. item.getFirst().setStyles(this.css.rollbackItemIconNode_current);
  2437. var node = item.getLast().getFirst();
  2438. node.getFirst().setStyles(this.css.rollbackItemActivityNode_current);
  2439. node.getLast().setStyles(this.css.rollbackItemTimeNode_current);
  2440. node = item.getLast().getLast();
  2441. node.getFirst().setStyles(this.css.rollbackItemTaskTitleNode_current);
  2442. node.getLast().setStyles(this.css.rollbackItemTaskNode_current);
  2443. var checkeds = item.getElements("input");
  2444. if (checkeds) checkeds.set("checked", true);
  2445. },
  2446. setRollBackUnchecked: function (item) {
  2447. item.store("isSelected", false);
  2448. item.setStyles(this.css.rollbackItemNode);
  2449. item.getFirst().setStyles(this.css.rollbackItemIconNode);
  2450. var node = item.getLast().getFirst();
  2451. node.getFirst().setStyles(this.css.rollbackItemActivityNode);
  2452. node.getLast().setStyles(this.css.rollbackItemTimeNode);
  2453. node = item.getLast().getLast();
  2454. node.getFirst().setStyles(this.css.rollbackItemTaskTitleNode);
  2455. node.getLast().setStyles(this.css.rollbackItemTaskNode);
  2456. var checkeds = item.getElements("input");
  2457. if (checkeds) checkeds.set("checked", false);
  2458. },
  2459. getRollbackLogs: function (rollbackItemNode) {
  2460. var _self = this;
  2461. o2.Actions.load("x_processplatform_assemble_surface").WorkLogAction.listRollbackWithWorkOrWorkCompleted(this.businessData.work.id, function (json) {
  2462. json.data.each(function (log) {
  2463. //if (!log.splitting && log.connected && (log.taskCompletedList.length || log.readList.length || log.readCompletedList.length)) {
  2464. if (!log.splitting && log.connected) {
  2465. var node = new Element("div", { "styles": this.css.rollbackItemNode }).inject(rollbackItemNode);
  2466. node.store("log", log);
  2467. var iconNode = new Element("div", { "styles": this.css.rollbackItemIconNode }).inject(node);
  2468. var contentNode = new Element("div", { "styles": this.css.rollbackItemContentNode }).inject(node);
  2469. var div = new Element("div", { "styles": { "overflow": "hidden" } }).inject(contentNode);
  2470. var activityNode = new Element("div", { "styles": this.css.rollbackItemActivityNode, "text": log.fromActivityName }).inject(div);
  2471. var timeNode = new Element("div", { "styles": this.css.rollbackItemTimeNode, "text": log.arrivedTime }).inject(div);
  2472. div = new Element("div", { "styles": { "overflow": "hidden" } }).inject(contentNode);
  2473. var taskTitleNode = new Element("div", { "styles": this.css.rollbackItemTaskTitleNode, "text": this.app.lp.taskCompletedPerson + ": " }).inject(div);
  2474. if (log.taskCompletedList.length) {
  2475. log.taskCompletedList.each(function (o) {
  2476. var text = o2.name.cn(o.person) + "(" + o.completedTime + ")";
  2477. var check = new Element("input", {
  2478. "value": o.identity,
  2479. "type": "checkbox",
  2480. "styles": this.css.rollbackItemTaskCheckNode
  2481. }).inject(div);
  2482. check.addEvent("click", function (e) {
  2483. e.stopPropagation();
  2484. });
  2485. var taskNode = new Element("div", { "styles": this.css.rollbackItemTaskNode, "text": text }).inject(div);
  2486. }.bind(this));
  2487. } else {
  2488. var text = this.app.lp.systemFlow;
  2489. var taskNode = new Element("div", { "styles": this.css.rollbackItemTaskNode, "text": text }).inject(div);
  2490. }
  2491. node.addEvents({
  2492. "mouseover": function () {
  2493. var isSelected = this.retrieve("isSelected");
  2494. if (!isSelected) this.setStyles(_self.css.rollbackItemNode_over);
  2495. },
  2496. "mouseout": function () {
  2497. var isSelected = this.retrieve("isSelected");
  2498. if (!isSelected) this.setStyles(_self.css.rollbackItemNode)
  2499. },
  2500. "click": function () {
  2501. var isSelected = this.retrieve("isSelected");
  2502. if (isSelected) {
  2503. _self.setRollBackUnchecked(this);
  2504. } else {
  2505. var items = rollbackItemNode.getChildren();
  2506. items.each(function (item) {
  2507. _self.setRollBackUnchecked(item);
  2508. });
  2509. _self.setRollBackChecked(this);
  2510. }
  2511. }
  2512. });
  2513. }
  2514. }.bind(this));
  2515. }.bind(this), null, false);
  2516. },
  2517. rollback: function () {
  2518. if (!this.businessData.control["allowRollback"]) {
  2519. MWF.xDesktop.notice("error", { x: "right", y: "top" }, "Permission Denied");
  2520. return false;
  2521. }
  2522. var node = new Element("div", { "styles": this.css.rollbackAreaNode });
  2523. var html = "<div style=\"line-height: 30px; height: 30px; color: #333333; overflow: hidden;float:left;\">请选择文件要回溯到的位置:</div>";
  2524. html += "<div style=\"line-height: 30px; height: 30px; color: #333333; overflow: hidden;float:right;\"><input class='rollback_flowOption' checked type='checkbox' />并尝试继续流转</div>";
  2525. html += "<div style=\"clear:both; max-height: 300px; margin-bottom:10px; margin-top:10px; overflow-y:auto;\"></div>";
  2526. node.set("html", html);
  2527. var rollbackItemNode = node.getLast();
  2528. this.getRollbackLogs(rollbackItemNode);
  2529. node.inject(this.app.content);
  2530. var dlg = o2.DL.open({
  2531. "title": this.app.lp.rollback,
  2532. "style": this.json.dialogStyle || "user",
  2533. "isResize": false,
  2534. "content": node,
  2535. "width": 600,
  2536. "buttonList": [
  2537. {
  2538. "type": "ok",
  2539. "text": MWF.LP.process.button.ok,
  2540. "action": function (d, e) {
  2541. this.doRollback(node, e, dlg);
  2542. }.bind(this)
  2543. },
  2544. {
  2545. "type": "cancel",
  2546. "text": MWF.LP.process.button.cancel,
  2547. "action": function () { dlg.close(); }
  2548. }
  2549. ]
  2550. });
  2551. },
  2552. doRollback: function (node, e, dlg) {
  2553. var rollbackItemNode = node.getLast();
  2554. var items = rollbackItemNode.getChildren();
  2555. var flowOption = (node.getElement(".rollback_flowOption").checked);
  2556. var _self = this;
  2557. for (var i = 0; i < items.length; i++) {
  2558. if (items[i].retrieve("isSelected")) {
  2559. var text = this.app.lp.rollbackConfirmContent;
  2560. var log = items[i].retrieve("log");
  2561. var checks = items[i].getElements("input:checked");
  2562. var idList = [];
  2563. checks.each(function (check) {
  2564. var id = check.get("value");
  2565. if (idList.indexOf(id) == -1) idList.push(id);
  2566. });
  2567. text = text.replace("{log}", log.fromActivityName + "(" + log.arrivedTime + ")");
  2568. this.app.confirm("infor", e, this.app.lp.rollbackConfirmTitle, text, 450, 120, function () {
  2569. _self.doRollbackAction(log.id, flowOption, dlg, idList);
  2570. dlg.close();
  2571. this.close();
  2572. }, function () {
  2573. this.close();
  2574. }, null, null, this.json.confirmStyle);
  2575. break;
  2576. }
  2577. }
  2578. },
  2579. doRollbackAction: function (log, flowOption, dlg, idList) {
  2580. MWF.require("MWF.widget.Mask", function () {
  2581. this.mask = new MWF.widget.Mask({ "style": "desktop", "zIndex": 50000 });
  2582. this.mask.loadNode(this.app.content);
  2583. this.fireEvent("beforeRollback");
  2584. if (this.app && this.app.fireEvent) this.app.fireEvent("beforeRollback");
  2585. this.doRollbackActionInvoke(log, flowOption, idList, function (json) {
  2586. if (json.data.properties) {
  2587. if (this.app && this.app.fireEvent) this.app.fireEvent("afterRollback");
  2588. this.addRollbackMessage(json.data);
  2589. } else {
  2590. var id = json.data.id;
  2591. this.workAction.listTaskByWork(function (workJson) {
  2592. this.fireEvent("afterRollback");
  2593. if (this.app && this.app.fireEvent) this.app.fireEvent("afterRollback");
  2594. this.addRollbackMessage_old(workJson.data);
  2595. //this.app.notice(MWF.xApplication.process.Xform.LP.rollbackOk+": "+MWF.name.cns(names).join(", "), "success");
  2596. //if (!this.app.inBrowser) this.app.close();
  2597. }.bind(this), null, id);
  2598. }
  2599. if (!this.app.inBrowser) this.app.close();
  2600. if (this.mask) { this.mask.hide(); this.mask = null; }
  2601. }.bind(this), function (xhr, text, error) {
  2602. var errorText = error + ":" + text;
  2603. if (xhr) errorText = xhr.responseText;
  2604. this.app.notice("request json error: " + errorText, "error");
  2605. if (this.mask) { this.mask.hide(); this.mask = null; }
  2606. }.bind(this));
  2607. }.bind(this));
  2608. },
  2609. doRollbackActionInvoke: function (id, flowOption, idList, success, failure) {
  2610. if (this.businessData.work.completedTime) {
  2611. var method = "rollbackWorkcompleted";
  2612. o2.Actions.get("x_processplatform_assemble_surface")[method](this.businessData.work.id, { "workLog": id }, function (json) {
  2613. if (success) success(json);
  2614. }.bind(this), function (xhr, text, error) {
  2615. if (failure) failure(xhr, text, error)
  2616. }.bind(this));
  2617. } else {
  2618. var body = {
  2619. "workLog": id,
  2620. "taskCompletedIdentityList": idList,
  2621. "processing": !!flowOption
  2622. }
  2623. o2.Actions.load("x_processplatform_assemble_surface").WorkAction.V2Rollback(this.businessData.work.id, body, function (json) {
  2624. //o2.Actions.get("x_processplatform_assemble_surface")[method](this.businessData.work.id, { "workLog": id }, function (json) {
  2625. if (success) success(json);
  2626. }.bind(this), function (xhr, text, error) {
  2627. if (failure) failure(xhr, text, error)
  2628. }.bind(this));
  2629. }
  2630. },
  2631. inBrowserDkg: function (content) {
  2632. if (this.mask) this.mask.hide();
  2633. if (this.json.submitedDlgUseNotice) {
  2634. MWF.xDesktop.notice("success", { x: "right", y: "top" }, content);
  2635. if (this.json.isPrompt !== false) {
  2636. if (this.json.promptCloseTime != 0) {
  2637. var t = this.json.promptCloseTime || 2;
  2638. t = t.toInt() * 1000;
  2639. var _work = this;
  2640. window.setTimeout(function () { _work.app.close(); }, t);
  2641. }
  2642. } else {
  2643. this.app.close();
  2644. }
  2645. } else {
  2646. var div = new Element("div", { "styles": { "margin": "10px 10px 0px 10px", "padding": "5px", "overflow": "hidden" } }).inject(this.app.content);
  2647. div.set("html", content);
  2648. if (this.json.isPrompt !== false) {
  2649. var options = {
  2650. "content": div,
  2651. "isTitle": false,
  2652. "width": 350,
  2653. "height": 180,
  2654. "buttonList": [
  2655. {
  2656. "text": MWF.xApplication.process.Xform.LP.ok,
  2657. "action": function () { dlg.close(); this.app.close(); }.bind(this)
  2658. }
  2659. ]
  2660. }
  2661. var size = this.app.content.getSize();
  2662. switch (this.json.promptPosition || "righttop") {
  2663. case "lefttop":
  2664. options.top = 10;
  2665. options.left = 10;
  2666. options.fromTop = 10;
  2667. options.fromLeft = 10;
  2668. break;
  2669. case "righttop":
  2670. options.top = 10;
  2671. options.left = size.x - 360;
  2672. options.fromTop = 10;
  2673. options.fromLeft = size.x - 10;
  2674. break;
  2675. case "leftbottom":
  2676. options.top = size.y - 190;
  2677. options.left = 10;
  2678. options.fromTop = size.y - 10;
  2679. options.fromLeft = 10;
  2680. break;
  2681. case "rightbottom":
  2682. options.top = size.y - 190;
  2683. options.left = size.x - 360;
  2684. options.fromTop = size.y - 10;
  2685. options.fromLeft = size.x - 10;
  2686. break;
  2687. default:
  2688. delete options.top;
  2689. delete options.left;
  2690. delete options.fromTop;
  2691. delete options.fromLeft;
  2692. }
  2693. var dlg = o2.DL.open(options);
  2694. if (this.json.promptCloseTime != 0) {
  2695. var t = this.json.promptCloseTime || 2;
  2696. t = t.toInt() * 1000;
  2697. var _work = this;
  2698. window.setTimeout(function () { dlg.close(); _work.app.close(); }, t);
  2699. }
  2700. } else {
  2701. this.app.close();
  2702. }
  2703. }
  2704. },
  2705. addRollbackMessage_old: function (data) {
  2706. var users = [];
  2707. data.each(function (task) {
  2708. users.push(MWF.name.cn(task.person) + "(" + MWF.name.cn(task.unit) + ")");
  2709. }.bind(this));
  2710. var content = "<div><b>" + MWF.xApplication.process.Xform.LP.currentActivity + "<font style=\"color: #ea621f\">" + data[0].activityName + "</font>, " + MWF.xApplication.process.Xform.LP.nextUser + "<font style=\"color: #ea621f\">" + users.join(", ") + "</font></b></div>";
  2711. if (layout.desktop.message) {
  2712. var msg = {
  2713. "subject": MWF.xApplication.process.Xform.LP.workRollback,
  2714. "content": "<div>" + MWF.xApplication.process.Xform.LP.rollbackWorkInfor + "“" + this.businessData.work.title + "”</div>" + content
  2715. };
  2716. layout.desktop.message.addTooltip(msg);
  2717. return layout.desktop.message.addMessage(msg);
  2718. } else {
  2719. if (this.app.inBrowser) {
  2720. this.inBrowserDkg("<div>" + MWF.xApplication.process.Xform.LP.rollbackWorkInfor + "“" + this.businessData.work.title + "”</div>" + content);
  2721. }
  2722. }
  2723. },
  2724. addRollbackMessage: function (data) {
  2725. if (layout.desktop.message) {
  2726. var msg = {
  2727. "subject": MWF.xApplication.process.Xform.LP.workRollback,
  2728. "content": this.getMessageContent(data, 0, MWF.xApplication.process.Xform.LP.rollbackWorkInfor)
  2729. };
  2730. layout.desktop.message.addTooltip(msg);
  2731. return layout.desktop.message.addMessage(msg);
  2732. } else {
  2733. if (this.app.inBrowser) {
  2734. this.inBrowserDkg(this.getMessageContent(data, 0, MWF.xApplication.process.Xform.LP.rollbackWorkInfor));
  2735. }
  2736. }
  2737. },
  2738. pressWork: function (e) {
  2739. if (e && e.setDisable) e.setDisable(true);
  2740. o2.Actions.get("x_processplatform_assemble_surface").press(this.businessData.work.id, function (json) {
  2741. var users = o2.name.cns(json.data.valueList).join(", ");
  2742. this.app.notice("已经向待办人:" + users + ", 发送了提醒", "success");
  2743. if (e && e.setDisable) e.setDisable(false);
  2744. }.bind(this), function (xhr, text, error) {
  2745. //e.setDisable(false);
  2746. if (xhr.status != 0) {
  2747. var errorText = error;
  2748. if (xhr) {
  2749. var json = JSON.decode(xhr.responseText);
  2750. if (json) {
  2751. errorText = json.message.trim() || "request json error";
  2752. } else {
  2753. errorText = "request json error: " + xhr.responseText;
  2754. }
  2755. }
  2756. MWF.xDesktop.notice("error", { x: "right", y: "top" }, errorText);
  2757. }
  2758. });
  2759. },
  2760. downloadAll: function () {
  2761. var htmlFormId = "";
  2762. o2.Actions.load("x_processplatform_assemble_surface").AttachmentAction.uploadWorkInfo(this.businessData.work.id, "pdf", {
  2763. "workHtml": this.app.content.get("html"),
  2764. "pageWidth": 1000
  2765. }, function (json) {
  2766. htmlFormId = json.data.id;
  2767. }.bind(this), null, false);
  2768. htmlFormId = htmlFormId.replace("#", "%23");
  2769. var url = "/x_processplatform_assemble_surface/jaxrs/attachment/batch/download/work/" + this.businessData.work.id + "/site/(0)/stream";
  2770. url = o2.filterUrl(o2.Actions.getHost("x_processplatform_assemble_surface") + url);
  2771. window.open(o2.filterUrl(url + "?fileName=&flag=" + htmlFormId));
  2772. },
  2773. resetWork: function () {
  2774. if (!this.businessData.control["allowReset"]) {
  2775. MWF.xDesktop.notice("error", { x: "right", y: "top" }, "Permission Denied");
  2776. return false;
  2777. }
  2778. MWF.require("MWF.xDesktop.Dialog", function () {
  2779. var width = 680;
  2780. var height = 300;
  2781. var p = MWF.getCenterPosition(this.app.content, width, height);
  2782. var _self = this;
  2783. var dlg = new MWF.xDesktop.Dialog({
  2784. "title": this.app.lp.reset,
  2785. "style": this.json.dialogStyle || "user", //|| "work",
  2786. "top": p.y - 100,
  2787. "left": p.x,
  2788. "fromTop": p.y - 100,
  2789. "fromLeft": p.x,
  2790. "width": width,
  2791. "height": height,
  2792. "url": this.app.path + "reset.html",
  2793. "container": this.app.content,
  2794. "isClose": true,
  2795. "buttonList": [
  2796. {
  2797. "type": "ok",
  2798. "text": MWF.LP.process.button.ok,
  2799. "action": function (d, e) {
  2800. this.doResetWork(dlg);
  2801. }.bind(this)
  2802. },
  2803. {
  2804. "type": "cancel",
  2805. "text": MWF.LP.process.button.cancel,
  2806. "action": function () { dlg.close(); }
  2807. }
  2808. ],
  2809. "onPostShow": function () {
  2810. //$("resetWork_okButton").addEvent("click", function(){
  2811. // _self.doResetWork(this);
  2812. //}.bind(this));
  2813. //$("resetWork_cancelButton").addEvent("click", function(){
  2814. // this.close();
  2815. //}.bind(this));
  2816. $("resetWork_selPeopleButton").addEvent("click", function () {
  2817. _self.selectPeople(this);
  2818. }.bind(this));
  2819. }
  2820. });
  2821. dlg.show();
  2822. }.bind(this));
  2823. },
  2824. selectPeople: function (dlg) {
  2825. var range = this.businessData.activity.resetRange || "department";
  2826. var count = this.businessData.activity.resetCount || 0;
  2827. switch (range) {
  2828. case "unit":
  2829. this.selectPeopleUnit(dlg, this.businessData.task.unit, count);
  2830. // this.personActions.getDepartmentByIdentity(function(json){
  2831. // this.selectPeopleDepartment(dlg, json.data, count);
  2832. // }.bind(this), null, this.businessData.task.identity);
  2833. break;
  2834. case "topUnit":
  2835. MWF.require("MWF.xScript.Actions.UnitActions", function () {
  2836. orgActions = new MWF.xScript.Actions.UnitActions();
  2837. var data = { "unitList": [this.businessData.task.unit] };
  2838. orgActions.listUnitSupNested(data, function (json) {
  2839. v = json.data[0];
  2840. this.selectPeopleUnit(dlg, v, count);
  2841. }.bind(this));
  2842. }.bind(this));
  2843. // this.personActions.getCompanyByIdentity(function(json){
  2844. // this.selectPeopleCompany(dlg, json.data, count)
  2845. // }.bind(this), null, this.businessData.task.identity);
  2846. break;
  2847. case "script":
  2848. o2.Actions.load("x_processplatform_assemble_surface").ProcessAction.getActivity(this.businessData.work.activity, "manual", function (activityJson) {
  2849. var scriptText = activityJson.data.activity.resetRangeScriptText;
  2850. if (!scriptText) return;
  2851. var resetRange = this.Macro.exec(activityJson.data.activity.resetRangeScriptText, this);
  2852. this.selectPeopleUnit(dlg, "", count, resetRange);
  2853. }.bind(this))
  2854. break;
  2855. default:
  2856. this.selectPeopleAll(dlg, count);
  2857. }
  2858. },
  2859. selectPeopleUnit: function (dlg, unit, count, include) {
  2860. var names = dlg.identityList || [];
  2861. var areaNode = $("resetWork_selPeopleArea");
  2862. var options = {
  2863. "values": names,
  2864. "type": "identity",
  2865. "count": count,
  2866. "units": (unit) ? [unit] : [],
  2867. "title": this.app.lp.reset,
  2868. "onComplete": function (items) {
  2869. areaNode.empty();
  2870. var identityList = [];
  2871. items.each(function (item) {
  2872. new MWF.widget.O2Identity(item.data, areaNode, { "style": "reset" });
  2873. identityList.push(item.data.distinguishedName);
  2874. }.bind(this));
  2875. dlg.identityList = identityList;
  2876. }.bind(this)
  2877. };
  2878. if (include) {
  2879. options.noUnit = true;
  2880. options.include = typeOf(include) === "array" ? include : [include];
  2881. }
  2882. MWF.xDesktop.requireApp("Selector", "package", function () {
  2883. var selector = new MWF.O2Selector(this.app.content, options);
  2884. }.bind(this));
  2885. },
  2886. selectPeopleAll: function (dlg, count) {
  2887. var names = dlg.identityList || [];
  2888. var areaNode = $("resetWork_selPeopleArea");
  2889. var options = {
  2890. "values": names,
  2891. "type": "identity",
  2892. "count": count,
  2893. "title": this.app.lp.reset,
  2894. "onComplete": function (items) {
  2895. areaNode.empty();
  2896. var identityList = [];
  2897. items.each(function (item) {
  2898. new MWF.widget.O2Identity(item.data, areaNode, { "style": "reset" });
  2899. identityList.push(item.data.distinguishedName);
  2900. }.bind(this));
  2901. dlg.identityList = identityList;
  2902. }.bind(this)
  2903. };
  2904. MWF.xDesktop.requireApp("Selector", "package", function () {
  2905. var selector = new MWF.O2Selector(this.app.content, options);
  2906. }.bind(this));
  2907. },
  2908. doResetWork: function (dlg) {
  2909. var names = dlg.identityList || [];
  2910. if (!names.length) {
  2911. this.app.notice(MWF.xApplication.process.Xform.LP.inputResetPeople, "error", dlg.node);
  2912. return false;
  2913. }
  2914. var opinion = $("resetWork_opinion").get("value");
  2915. var checkbox = dlg.content.getElement(".resetWork_keepOption");
  2916. var keep = (checkbox.checked);
  2917. var nameText = [];
  2918. names.each(function (n) { nameText.push(MWF.name.cn(n)); });
  2919. if (!opinion) {
  2920. opinion = MWF.xApplication.process.Xform.LP.resetTo + ": " + nameText.join(", ");
  2921. }
  2922. MWF.require("MWF.widget.Mask", function () {
  2923. this.mask = new MWF.widget.Mask({ "style": "desktop", "zIndex": 50000 });
  2924. this.mask.loadNode(this.app.content);
  2925. this.fireEvent("beforeReset");
  2926. if (this.app && this.app.fireEvent) this.app.fireEvent("beforeReset");
  2927. this.resetWorkToPeson(names, opinion, keep, function (workJson) {
  2928. //this.workAction.loadWork(function (workJson) {
  2929. this.fireEvent("afterReset");
  2930. if (this.app && this.app.fireEvent) this.app.fireEvent("afterReset");
  2931. this.addResetMessage(workJson.data);
  2932. //this.app.notice(MWF.xApplication.process.Xform.LP.resetOk + ": " + MWF.name.cns(names).join(", "), "success");
  2933. if (!this.app.inBrowser) this.app.close();
  2934. //}.bind(this), null, this.businessData.work.id);
  2935. dlg.close();
  2936. if (this.mask) { this.mask.hide(); this.mask = null; }
  2937. }.bind(this), function (xhr, text, error) {
  2938. var errorText = error + ":" + text;
  2939. if (xhr) errorText = xhr.responseText;
  2940. this.app.notice("request json error: " + errorText, "error", dlg.node);
  2941. if (this.mask) { this.mask.hide(); this.mask = null; }
  2942. }.bind(this));
  2943. }.bind(this));
  2944. //var data = {
  2945. // "opinion": opinion,
  2946. // "routeName": MWF.xApplication.process.Xform.LP.reset,
  2947. // "identityList": names
  2948. //}
  2949. //
  2950. //this.workAction.resetWork(function(json){
  2951. //
  2952. //}.bind(this), null, this.businessData.task.id, data);
  2953. },
  2954. resetWorkToPeson: function (identityList, opinion, keep, success, failure) {
  2955. var data = {
  2956. "opinion": opinion,
  2957. "routeName": MWF.xApplication.process.Xform.LP.reset,
  2958. "identityList": identityList,
  2959. "keep": !!keep
  2960. };
  2961. this.saveFormData(
  2962. function (json) {
  2963. o2.Actions.load("x_processplatform_assemble_surface").TaskAction.V2Reset(
  2964. //this.workAction.resetWork(
  2965. function (json) {
  2966. if (success) success(json);
  2967. }.bind(this),
  2968. function (xhr, text, error) {
  2969. if (failure) failure(xhr, text, error);
  2970. },
  2971. this.businessData.task.id, data
  2972. );
  2973. }.bind(this),
  2974. function (xhr, text, error) {
  2975. if (failure) failure(xhr, text, error);
  2976. }, true, null, true
  2977. );
  2978. },
  2979. addAddSplitMessage: function (data) {
  2980. // var content = "";
  2981. // if (data && data.length) {
  2982. // data.each(function (work) {
  2983. // var users = [];
  2984. // work.taskList.each(function (task) {
  2985. // users.push(MWF.name.cn(task.person) + "(" + MWF.name.cn(task.unit) + ")");
  2986. // }.bind(this));
  2987. // content += "<div><b>" + MWF.xApplication.process.Xform.LP.nextActivity + "<font style=\"color: #ea621f\">" + work.activityName + "</font>, " + MWF.xApplication.process.Xform.LP.nextUser + "<font style=\"color: #ea621f\">" + users.join(", ") + "</font></b></div>";
  2988. // }.bind(this));
  2989. // } else {
  2990. // content += MWF.xApplication.process.Xform.LP.workCompleted;
  2991. // }
  2992. if (layout.desktop.message) {
  2993. //var content = "<div><b>"+MWF.xApplication.process.Xform.LP.currentActivity+"<font style=\"color: #ea621f\">"+data.work.activityName+"</font>, "+MWF.xApplication.process.Xform.LP.nextUser+"<font style=\"color: #ea621f\">"+users.join(", ")+"</font></b></div>";
  2994. var msg = {
  2995. "subject": MWF.xApplication.process.Xform.LP.addSplitWork,
  2996. "content": this.getMessageContent(data, 0, MWF.xApplication.process.Xform.LP.addSplitWorkInfor)
  2997. };
  2998. layout.desktop.message.addTooltip(msg);
  2999. return layout.desktop.message.addMessage(msg);
  3000. } else {
  3001. if (this.app.inBrowser) {
  3002. this.inBrowserDkg(this.getMessageContent(data, 0, MWF.xApplication.process.Xform.LP.addSplitWorkInfor));
  3003. }
  3004. }
  3005. },
  3006. addResetMessage: function (data) {
  3007. // var content = "";
  3008. // if (data.completed){
  3009. // content += MWF.xApplication.process.Xform.LP.workCompleted;
  3010. // }else{
  3011. // if (data.properties.nextManualList && data.properties.nextManualList.length){
  3012. // var activityUsers = [];
  3013. // data.properties.nextManualList.each(function(a){
  3014. // var ids = [];
  3015. // a.taskIdentityList.each(function(i){
  3016. // ids.push(o2.name.cn(i))
  3017. // });
  3018. // var t = "<b>"+MWF.xApplication.process.Xform.LP.nextActivity + "</b><span style='color: #ea621f'>"+a.activityName+"</span>;<b>"+ MWF.xApplication.process.Xform.LP.nextUser+ "</b><span style='color: #ea621f'>"+ids.join(",")+"</span>";
  3019. // activityUsers.push(t);
  3020. // });
  3021. // content += activityUsers.join("<br>");
  3022. // }else{
  3023. // content += MWF.xApplication.process.Xform.LP.taskCompleted;
  3024. // }
  3025. // }
  3026. if (layout.desktop.message) {
  3027. var msg = {
  3028. "subject": MWF.xApplication.process.Xform.LP.workReset,
  3029. "content": this.getMessageContent(data, 0, MWF.xApplication.process.Xform.LP.resetWorkInfor)
  3030. };
  3031. layout.desktop.message.addTooltip(msg);
  3032. return layout.desktop.message.addMessage(msg);
  3033. } else {
  3034. if (this.app.inBrowser) {
  3035. this.inBrowserDkg(this.getMessageContent(data, 0, MWF.xApplication.process.Xform.LP.resetWorkInfor));
  3036. }
  3037. }
  3038. },
  3039. retractWork: function (e, ev) {
  3040. var _self = this;
  3041. if (this.json.mode == "Mobile") {
  3042. //window.confirm 在ios移动端不可用 ??
  3043. // if (window.confirm(MWF.xApplication.process.Xform.LP.retractText)) {
  3044. var p = MWF.getCenterPosition(document.body, 300, 150);
  3045. console.log("position x:" + p.x + " , y:" + p.y);
  3046. var x = p.x;
  3047. if (p.x < 20) {
  3048. x = 20;
  3049. } else {
  3050. x = p.x;
  3051. }
  3052. var event = {
  3053. "event": {
  3054. "x": x,
  3055. "y": p.y - 200,
  3056. "clientX": x,
  3057. "clientY": p.y - 200
  3058. }
  3059. };
  3060. this.app.confirm("infor", event, MWF.xApplication.process.Xform.LP.retractTitle, MWF.xApplication.process.Xform.LP.retractText, 300, 120, function () {
  3061. _self.app.content.mask({
  3062. "style": {
  3063. "background-color": "#999",
  3064. "opacity": 0.6
  3065. }
  3066. });
  3067. MWF.require("MWF.widget.Mask", function () {
  3068. _self.mask = new MWF.widget.Mask({ "style": "desktop", "zIndex": 50000 });
  3069. _self.mask.loadNode(_self.app.content);
  3070. _self.fireEvent("beforeRetract");
  3071. if (_self.app && _self.app.fireEvent) _self.app.fireEvent("beforeRetract");
  3072. _self.doRetractWork(function () {
  3073. //_self.workAction.getJobByWork(function(workJson){
  3074. _self.fireEvent("afterRetract");
  3075. if (_self.app && _self.app.fireEvent) _self.app.fireEvent("afterRetract");
  3076. _self.app.notice(MWF.xApplication.process.Xform.LP.workRetract, "success");
  3077. _self.app.content.unmask();
  3078. if (_self.mask) { _self.mask.hide(); _self.mask = null; }
  3079. _self.finishOnMobile()
  3080. }.bind(this), function (xhr, text, error) {
  3081. _self.app.content.unmask();
  3082. var errorText = error + ":" + text;
  3083. if (xhr) errorText = xhr.responseText;
  3084. _self.app.notice("request json error: " + errorText, "error");
  3085. if (_self.mask) { _self.mask.hide(); _self.mask = null; }
  3086. });
  3087. }.bind(this));
  3088. }, function () {
  3089. this.close();
  3090. }, null, null, this.json.confirmStyle);
  3091. } else {
  3092. var p = MWF.getCenterPosition(this.app.content, 300, 150);
  3093. var event = {
  3094. "event": {
  3095. "x": p.x,
  3096. "y": p.y - 200,
  3097. "clientX": p.x,
  3098. "clientY": p.y - 200
  3099. }
  3100. };
  3101. this.app.confirm("infor", event, MWF.xApplication.process.Xform.LP.retractTitle, MWF.xApplication.process.Xform.LP.retractText, 300, 120, function () {
  3102. _self.app.content.mask({
  3103. "style": {
  3104. "background-color": "#999",
  3105. "opacity": 0.6
  3106. }
  3107. });
  3108. MWF.require("MWF.widget.Mask", function () {
  3109. _self.mask = new MWF.widget.Mask({ "style": "desktop", "zIndex": 50000 });
  3110. _self.mask.loadNode(_self.app.content);
  3111. _self.fireEvent("beforeRetract");
  3112. if (_self.app && _self.app.fireEvent) _self.app.fireEvent("beforeRetract");
  3113. _self.doRetractWork(function (json) {
  3114. //_self.workAction.getJobByWork(function(workJson){
  3115. _self.fireEvent("afterRetract");
  3116. if (_self.app && _self.app.fireEvent) _self.app.fireEvent("afterRetract");
  3117. //_self.addRetractMessage(json.data);
  3118. _self.app.notice(MWF.xApplication.process.Xform.LP.workRetract, "success");
  3119. _self.app.content.unmask();
  3120. _self.app.reload();
  3121. //}, null, _self.businessData.work.id);
  3122. this.close();
  3123. if (_self.mask) { _self.mask.hide(); _self.mask = null; }
  3124. }.bind(this), function (xhr, text, error) {
  3125. _self.app.content.unmask();
  3126. var errorText = error + ":" + text;
  3127. if (xhr) errorText = xhr.responseText;
  3128. _self.app.notice("request json error: " + errorText, "error");
  3129. if (_self.mask) { _self.mask.hide(); _self.mask = null; }
  3130. });
  3131. }.bind(this));
  3132. //this.close();
  3133. }, function () {
  3134. this.close();
  3135. }, null, null, this.json.confirmStyle);
  3136. }
  3137. },
  3138. doRetractWork: function (success, failure) {
  3139. if (this.businessData.control["allowRetract"]) {
  3140. o2.Actions.load("x_processplatform_assemble_surface").WorkAction.V2Retract(this.businessData.work.id, null, function (json) {
  3141. if (success) success(json);
  3142. }.bind(this), function (xhr, text, error) {
  3143. if (failure) failure(xhr, text, error);
  3144. });
  3145. // this.workAction.retractWork(function (json) {
  3146. // if (success) success();
  3147. // }.bind(this), function (xhr, text, error) {
  3148. // if (failure) failure(xhr, text, error);
  3149. // }, this.businessData.work.id);
  3150. } else {
  3151. if (failure) failure(null, "Permission Denied", "");
  3152. }
  3153. },
  3154. addRetractMessage: function (data) {
  3155. // var users = [];
  3156. // data.taskList.each(function (task) {
  3157. // users.push(MWF.name.cn(task.person) + "(" + MWF.name.cn(task.unit) + ")");
  3158. // }.bind(this));
  3159. // var content = "<div><b>" + MWF.xApplication.process.Xform.LP.currentActivity + "<font style=\"color: #ea621f\">" + data.work.activityName + "</font>, " + MWF.xApplication.process.Xform.LP.nextUser + "<font style=\"color: #ea621f\">" + users.join(", ") + "</font></b></div>";
  3160. if (layout.desktop.message) {
  3161. var msg = {
  3162. "subject": MWF.xApplication.process.Xform.LP.workRetract,
  3163. "content": this.getMessageContent(data, 0, MWF.xApplication.process.Xform.LP.retractWorkInfor)
  3164. };
  3165. layout.desktop.message.addTooltip(msg);
  3166. return layout.desktop.message.addMessage(msg);
  3167. } else {
  3168. if (this.app.inBrowser) {
  3169. this.inBrowserDkg(this.getMessageContent(data, 0, MWF.xApplication.process.Xform.LP.retractWorkInfor));
  3170. }
  3171. }
  3172. },
  3173. rerouteWork: function (e, ev) {
  3174. if (!this.businessData.control["allowReroute"]) {
  3175. MWF.xDesktop.notice("error", { x: "right", y: "top" }, "Permission Denied");
  3176. return false;
  3177. }
  3178. MWF.require("MWF.xDesktop.Dialog", function () {
  3179. var width = 560;
  3180. var height = 260;
  3181. var p = MWF.getCenterPosition(this.app.content, width, height);
  3182. var _self = this;
  3183. var dlg = new MWF.xDesktop.Dialog({
  3184. "title": this.app.lp.reroute,
  3185. "style": this.json.dialogStyle || "user", //|| "work",
  3186. "top": p.y - 100,
  3187. "left": p.x,
  3188. "fromTop": p.y - 100,
  3189. "fromLeft": p.x,
  3190. "width": width,
  3191. "height": height,
  3192. "url": this.app.path + "reroute.html",
  3193. "container": this.app.content,
  3194. "isClose": true,
  3195. "buttonList": [
  3196. {
  3197. "type": "ok",
  3198. "text": MWF.LP.process.button.ok,
  3199. "action": function (d, e) {
  3200. _self.doRerouteWork(dlg);
  3201. }.bind(this)
  3202. },
  3203. {
  3204. "type": "cancel",
  3205. "text": MWF.LP.process.button.cancel,
  3206. "action": function () { dlg.close(); }
  3207. }
  3208. ],
  3209. "onPostShow": function () {
  3210. //$("rerouteWork_okButton").addEvent("click", function(){
  3211. // _self.doRerouteWork(this);
  3212. //}.bind(this));
  3213. //$("rerouteWork_cancelButton").addEvent("click", function(){
  3214. // this.close();
  3215. //}.bind(this));
  3216. var select = $("rerouteWork_selectActivity");
  3217. _self.workAction.getRerouteTo(_self.businessData.work.process, function (json) {
  3218. json.data.agentList.each(function (activity) {
  3219. new Element("option", {
  3220. "value": activity.id + "#agent",
  3221. "text": activity.name
  3222. }).inject(select);
  3223. }.bind(_self));
  3224. json.data.cancelList.each(function (activity) {
  3225. new Element("option", {
  3226. "value": activity.id + "#cancel",
  3227. "text": activity.name
  3228. }).inject(select);
  3229. }.bind(_self));
  3230. json.data.choiceList.each(function (activity) {
  3231. new Element("option", {
  3232. "value": activity.id + "#choice",
  3233. "text": activity.name
  3234. }).inject(select);
  3235. }.bind(_self));
  3236. // json.data.controllerList.each(function(activity){
  3237. // new Element("option", {
  3238. // "value": activity.id+"#condition",
  3239. // "text": activity.name
  3240. // }).inject(select);
  3241. // }.bind(_self));
  3242. json.data.delayList.each(function (activity) {
  3243. new Element("option", {
  3244. "value": activity.id + "#delay",
  3245. "text": activity.name
  3246. }).inject(select);
  3247. }.bind(_self));
  3248. json.data.embedList.each(function (activity) {
  3249. new Element("option", {
  3250. "value": activity.id + "#embed",
  3251. "text": activity.name
  3252. }).inject(select);
  3253. }.bind(_self));
  3254. json.data.endList.each(function (activity) {
  3255. new Element("option", {
  3256. "value": activity.id + "#end",
  3257. "text": activity.name
  3258. }).inject(select);
  3259. }.bind(_self));
  3260. json.data.invokeList.each(function (activity) {
  3261. new Element("option", {
  3262. "value": activity.id + "#invoke",
  3263. "text": activity.name
  3264. }).inject(select);
  3265. }.bind(_self));
  3266. json.data.manualList.each(function (activity) {
  3267. new Element("option", {
  3268. "value": activity.id + "#manual",
  3269. "text": activity.name
  3270. }).inject(select);
  3271. }.bind(_self));
  3272. json.data.mergeList.each(function (activity) {
  3273. new Element("option", {
  3274. "value": activity.id + "#merge",
  3275. "text": activity.name
  3276. }).inject(select);
  3277. }.bind(_self));
  3278. json.data.messageList.each(function (activity) {
  3279. new Element("option", {
  3280. "value": activity.id + "#message",
  3281. "text": activity.name
  3282. }).inject(select);
  3283. }.bind(_self));
  3284. json.data.parallelList.each(function (activity) {
  3285. new Element("option", {
  3286. "value": activity.id + "#parallel",
  3287. "text": activity.name
  3288. }).inject(select);
  3289. }.bind(_self));
  3290. json.data.serviceList.each(function (activity) {
  3291. new Element("option", {
  3292. "value": activity.id + "#service",
  3293. "text": activity.name
  3294. }).inject(select);
  3295. }.bind(_self));
  3296. json.data.splitList.each(function (activity) {
  3297. new Element("option", {
  3298. "value": activity.id + "#split",
  3299. "text": activity.name
  3300. }).inject(select);
  3301. }.bind(_self));
  3302. }.bind(_self));
  3303. var selPeopleButton = this.content.getElement(".rerouteWork_selPeopleButton");
  3304. selPeopleButton.addEvent("click", function () {
  3305. _self.selectReroutePeople(this);
  3306. }.bind(this));
  3307. }
  3308. });
  3309. dlg.show();
  3310. }.bind(this));
  3311. },
  3312. selectReroutePeople: function (dlg) {
  3313. var names = dlg.identityList || [];
  3314. var areaNode = dlg.content.getElement(".rerouteWork_selPeopleArea");
  3315. var options = {
  3316. "values": names,
  3317. "type": "identity",
  3318. "count": 0,
  3319. "title": this.app.lp.reroute,
  3320. "onComplete": function (items) {
  3321. areaNode.empty();
  3322. var identityList = [];
  3323. items.each(function (item) {
  3324. new MWF.widget.O2Identity(item.data, areaNode, { "style": "reset" });
  3325. identityList.push(item.data.distinguishedName);
  3326. }.bind(this));
  3327. dlg.identityList = identityList;
  3328. }.bind(this)
  3329. };
  3330. MWF.xDesktop.requireApp("Selector", "package", function () {
  3331. var selector = new MWF.O2Selector(this.app.content, options);
  3332. }.bind(this));
  3333. },
  3334. doRerouteWork: function (dlg) {
  3335. var opinion = $("rerouteWork_opinion").get("value");
  3336. var select = $("rerouteWork_selectActivity");
  3337. var activity = select.options[select.selectedIndex].get("value");
  3338. var activityName = select.options[select.selectedIndex].get("text");
  3339. var tmp = activity.split("#");
  3340. activity = tmp[0];
  3341. var type = tmp[1];
  3342. var nameArr = [];
  3343. var names = dlg.identityList || [];
  3344. names.each(function (n) { nameArr.push(n); });
  3345. //var nameText = nameArr.join(", ");
  3346. // if (!opinion) {
  3347. // opinion = MWF.xApplication.process.Xform.LP.resetTo + ": " + nameText.join(", ");
  3348. // }
  3349. MWF.require("MWF.widget.Mask", function () {
  3350. this.mask = new MWF.widget.Mask({ "style": "desktop", "zIndex": 50000 });
  3351. this.mask.loadNode(this.app.content);
  3352. this.fireEvent("beforeReroute");
  3353. if (this.app && this.app.fireEvent) this.app.fireEvent("afterRetract");
  3354. this.rerouteWorkToActivity(activity, type, opinion, nameArr, function (workJson) {
  3355. //this.workAction.loadWork(function (workJson) {
  3356. this.fireEvent("afterReroute");
  3357. if (this.app && this.app.fireEvent) this.app.fireEvent("afterReroute");
  3358. this.addRerouteMessage(workJson.data);
  3359. this.app.notice(MWF.xApplication.process.Xform.LP.rerouteOk + ": " + activityName, "success");
  3360. if (!this.app.inBrowser) this.app.close();
  3361. //}.bind(this), null, this.businessData.work.id);
  3362. dlg.close();
  3363. if (this.mask) { this.mask.hide(); this.mask = null; }
  3364. }.bind(this), function (xhr, text, error) {
  3365. var errorText = error + ":" + text;
  3366. if (xhr) errorText = xhr.responseText;
  3367. this.app.notice("request json error: " + errorText, "error", dlg.node);
  3368. if (this.mask) { this.mask.hide(); this.mask = null; }
  3369. }.bind(this));
  3370. }.bind(this));
  3371. },
  3372. rerouteWorkToActivity: function (activity, type, opinion, nameArr, success, failure) {
  3373. var body = {
  3374. "activity": activity,
  3375. "activityType": type,
  3376. "mergeWork": false,
  3377. "manualForceTaskIdentityList": nameArr
  3378. };
  3379. if (this.businessData.task) {
  3380. this.saveFormData(function (json) {
  3381. o2.Actions.load("x_processplatform_assemble_surface").WorkAction.V2Reroute(this.businessData.work.id, body, function (json) {
  3382. if (success) success(json);
  3383. }.bind(this), function (xhr, text, error) {
  3384. if (failure) failure(xhr, text, error);
  3385. });
  3386. // this.workAction.rerouteWork(function (json) {
  3387. // if (success) success();
  3388. // }.bind(this), function (xhr, text, error) {
  3389. // if (failure) failure(xhr, text, error);
  3390. // }, this.businessData.work.id, activity, type);
  3391. }.bind(this), function (xhr, text, error) {
  3392. if (failure) failure(xhr, text, error);
  3393. }, true, null, true);
  3394. } else {
  3395. o2.Actions.load("x_processplatform_assemble_surface").WorkAction.V2Reroute(this.businessData.work.id, body, function (json) {
  3396. if (success) success(json);
  3397. }.bind(this), function (xhr, text, error) {
  3398. if (failure) failure(xhr, text, error);
  3399. });
  3400. // this.workAction.rerouteWork(function (json) {
  3401. // if (success) success();
  3402. // }.bind(this), function (xhr, text, error) {
  3403. // if (failure) failure(xhr, text, error);
  3404. // }, this.businessData.work.id, activity, type);
  3405. }
  3406. },
  3407. addRerouteMessage: function (data) {
  3408. if (layout.desktop.message) {
  3409. var msg = {
  3410. "subject": MWF.xApplication.process.Xform.LP.workReroute,
  3411. "content": this.getMessageContent(data, 0, MWF.xApplication.process.Xform.LP.rerouteWorkInfor)
  3412. };
  3413. layout.desktop.message.addTooltip(msg);
  3414. return layout.desktop.message.addMessage(msg);
  3415. } else {
  3416. if (this.app.inBrowser) {
  3417. this.inBrowserDkg(this.getMessageContent(data, 0, MWF.xApplication.process.Xform.LP.rerouteWorkInfor));
  3418. }
  3419. }
  3420. },
  3421. deleteDraftWork: function () {
  3422. var _self = this;
  3423. if (this.json.mode === "Mobile") {
  3424. var p = MWF.getCenterPosition(document.body, 300, 150);
  3425. console.log("position x:" + p.x + " , y:" + p.y);
  3426. var x = p.x;
  3427. if (p.x < 20) {
  3428. x = 20;
  3429. } else {
  3430. x = p.x;
  3431. }
  3432. var event = {
  3433. "event": {
  3434. "x": x,
  3435. "y": p.y - 200,
  3436. "clientX": x,
  3437. "clientY": p.y - 200
  3438. }
  3439. };
  3440. this.app.confirm("infor", event, MWF.xApplication.process.Xform.LP.deleteWorkTitle, MWF.xApplication.process.Xform.LP.deleteWorkText.text, 300, 120, function () {
  3441. _self.app.content.mask({
  3442. "style": {
  3443. "background-color": "#999",
  3444. "opacity": 0.6
  3445. }
  3446. });
  3447. // if (window.confirm(MWF.xApplication.process.Xform.LP.deleteWorkText.text)) {
  3448. MWF.require("MWF.widget.Mask", function () {
  3449. _self.mask = new MWF.widget.Mask({ "style": "desktop", "zIndex": 50000 });
  3450. _self.mask.loadNode(_self.app.content);
  3451. _self.doDeleteWork(function () {
  3452. _self.app.notice(MWF.xApplication.process.Xform.LP.workDelete + ": “" + _self.businessData.work.title + "”", "success");
  3453. if (_self.mask) {
  3454. _self.mask.hide();
  3455. _self.mask = null;
  3456. }
  3457. _self.finishOnMobile()
  3458. }.bind(this), function (xhr, text, error) {
  3459. var errorText = error + ":" + text;
  3460. if (xhr) errorText = xhr.responseText;
  3461. _self.app.notice("request json error: " + errorText, "error");
  3462. if (_self.mask) {
  3463. _self.mask.hide();
  3464. _self.mask = null;
  3465. }
  3466. }.bind(this));
  3467. }.bind(this));
  3468. }, function () {
  3469. this.close();
  3470. }, null, null, this.json.confirmStyle);
  3471. } else {
  3472. var p = MWF.getCenterPosition(this.app.content, 380, 150);
  3473. var event = {
  3474. "event": {
  3475. "x": p.x,
  3476. "y": p.y - 200,
  3477. "clientX": p.x,
  3478. "clientY": p.y - 200
  3479. }
  3480. };
  3481. this.app.confirm("infor", event, MWF.xApplication.process.Xform.LP.deleteWorkTitle, MWF.xApplication.process.Xform.LP.deleteWorkText, 380, 120, function () {
  3482. MWF.require("MWF.widget.Mask", function () {
  3483. _self.mask = new MWF.widget.Mask({ "style": "desktop", "zIndex": 50000 });
  3484. _self.mask.loadNode(_self.app.content);
  3485. _self.doDeleteWork(function () {
  3486. _self.app.notice(MWF.xApplication.process.Xform.LP.workDelete + ": “" + _self.businessData.work.title + "”", "success");
  3487. _self.app.close();
  3488. this.close();
  3489. if (_self.mask) {
  3490. _self.mask.hide();
  3491. _self.mask = null;
  3492. }
  3493. }.bind(this), function (xhr, text, error) {
  3494. var errorText = error + ":" + text;
  3495. if (xhr) errorText = xhr.responseText;
  3496. _self.app.notice("request json error: " + errorText, "error");
  3497. if (_self.mask) {
  3498. _self.mask.hide();
  3499. _self.mask = null;
  3500. }
  3501. }.bind(this));
  3502. }.bind(this));
  3503. }, function () {
  3504. this.close();
  3505. }, null, this.app.content, this.json.confirmStyle);
  3506. }
  3507. },
  3508. deleteWork: function () {
  3509. if (!this.businessData.work.startTime) {
  3510. this.deleteDraftWork();
  3511. } else {
  3512. var _self = this;
  3513. if (this.json.mode === "Mobile") {
  3514. var p = MWF.getCenterPosition(document.body, 300, 150);
  3515. console.log("position x:" + p.x + " , y:" + p.y);
  3516. var x = p.x;
  3517. if (p.x < 20) {
  3518. x = 20;
  3519. } else {
  3520. x = p.x;
  3521. }
  3522. var event = {
  3523. "event": {
  3524. "x": x,
  3525. "y": p.y - 200,
  3526. "clientX": x,
  3527. "clientY": p.y - 200
  3528. }
  3529. };
  3530. this.app.confirm("infor", event, MWF.xApplication.process.Xform.LP.deleteWorkTitle, MWF.xApplication.process.Xform.LP.deleteWorkText.text, 300, 120, function () {
  3531. _self.app.content.mask({
  3532. "style": {
  3533. "background-color": "#999",
  3534. "opacity": 0.6
  3535. }
  3536. });
  3537. // if (window.confirm(MWF.xApplication.process.Xform.LP.deleteWorkText.text)) {
  3538. MWF.require("MWF.widget.Mask", function () {
  3539. _self.mask = new MWF.widget.Mask({ "style": "desktop", "zIndex": 50000 });
  3540. _self.mask.loadNode(_self.app.content);
  3541. _self.fireEvent("beforeDelete");
  3542. if (_self.app && _self.app.fireEvent) _self.app.fireEvent("beforeDelete");
  3543. _self.doDeleteWork(function () {
  3544. _self.fireEvent("afterDelete");
  3545. if (_self.app && _self.app.fireEvent) _self.app.fireEvent("afterDelete");
  3546. _self.app.notice(MWF.xApplication.process.Xform.LP.workDelete + ": “" + _self.businessData.work.title + "”", "success");
  3547. if (_self.mask) {
  3548. _self.mask.hide();
  3549. _self.mask = null;
  3550. }
  3551. _self.finishOnMobile()
  3552. }.bind(this), function (xhr, text, error) {
  3553. var errorText = error + ":" + text;
  3554. if (xhr) errorText = xhr.responseText;
  3555. _self.app.notice("request json error: " + errorText, "error", dlg.node);
  3556. if (_self.mask) {
  3557. _self.mask.hide();
  3558. _self.mask = null;
  3559. }
  3560. }.bind(this));
  3561. }.bind(this));
  3562. }, function () {
  3563. this.close();
  3564. }, null, this.app.content, this.json.confirmStyle);
  3565. } else {
  3566. var p = MWF.getCenterPosition(this.app.content, 380, 150);
  3567. var event = {
  3568. "event": {
  3569. "x": p.x,
  3570. "y": p.y - 200,
  3571. "clientX": p.x,
  3572. "clientY": p.y - 200
  3573. }
  3574. };
  3575. this.app.confirm("infor", event, MWF.xApplication.process.Xform.LP.deleteWorkTitle, MWF.xApplication.process.Xform.LP.deleteWorkText, 380, 120, function () {
  3576. // _self.app.content.mask({
  3577. // "style": {
  3578. // "background-color": "#999",
  3579. // "opacity": 0.6
  3580. // }
  3581. // });
  3582. MWF.require("MWF.widget.Mask", function () {
  3583. _self.mask = new MWF.widget.Mask({ "style": "desktop", "zIndex": 50000 });
  3584. _self.mask.loadNode(_self.app.content);
  3585. _self.fireEvent("beforeDelete");
  3586. if (_self.app && _self.app.fireEvent) _self.app.fireEvent("beforeDelete");
  3587. _self.doDeleteWork(function () {
  3588. _self.fireEvent("afterDelete");
  3589. if (_self.app && _self.app.fireEvent) _self.app.fireEvent("afterDelete");
  3590. _self.app.notice(MWF.xApplication.process.Xform.LP.workDelete + ": “" + _self.businessData.work.title + "”", "success");
  3591. _self.app.close();
  3592. this.close();
  3593. if (_self.mask) {
  3594. _self.mask.hide();
  3595. _self.mask = null;
  3596. }
  3597. }.bind(this), function (xhr, text, error) {
  3598. var errorText = error + ":" + text;
  3599. if (xhr) errorText = xhr.responseText;
  3600. _self.app.notice("request json error: " + errorText, "error", dlg.node);
  3601. if (_self.mask) {
  3602. _self.mask.hide();
  3603. _self.mask = null;
  3604. }
  3605. }.bind(this));
  3606. }.bind(this));
  3607. //_self.workAction.deleteWork(function(json){
  3608. // _self.app.notice(MWF.xApplication.process.Xform.LP.workDelete+": “"+_self.businessData.work.title+"”", "success");
  3609. // _self.app.close();
  3610. // this.close();
  3611. //}.bind(this), null, _self.businessData.work.id);
  3612. //this.close();
  3613. }, function () {
  3614. this.close();
  3615. }, null, this.app.content, this.json.confirmStyle);
  3616. }
  3617. }
  3618. },
  3619. doDeleteDraftWork: function (success, failure) {
  3620. this.workAction.deleteDraftWork(function (json) {
  3621. if (success) success(json);
  3622. }.bind(this), function (xhr, text, error) {
  3623. if (failure) failure(xhr, text, error);
  3624. }, this.businessData.work.id);
  3625. },
  3626. doDeleteWork: function (success, failure) {
  3627. if (!this.businessData.work.startTime) {
  3628. this.doDeleteDraftWork(success, failure);
  3629. } else {
  3630. if (this.businessData.control["allowDelete"]) {
  3631. //this.workAction.deleteWork(function (json) {
  3632. this.workAction.abandoned(function (json) {
  3633. if (success) success(json);
  3634. }.bind(this), function (xhr, text, error) {
  3635. if (failure) failure(xhr, text, error);
  3636. }, this.businessData.work.id);
  3637. //}
  3638. }else {
  3639. if (failure) failure(null, "Permission Denied", "");
  3640. }
  3641. }
  3642. },
  3643. //printWork: function(){
  3644. // var form = this.json.id;
  3645. // if (this.json.printForm){
  3646. // form = this.json.printForm;
  3647. // }
  3648. // window.open("../x_desktop/printWork.html?workid="+this.businessData.work.id+"&app="+this.businessData.work.application+"&form="+form);
  3649. //},
  3650. printWork: function (app, form) {
  3651. var application = app || (this.businessData.work) ? this.businessData.work.application : this.businessData.workCompleted.application;
  3652. var form = form;
  3653. if (!form) {
  3654. form = this.json.id;
  3655. if (this.json.printForm) form = this.json.printForm;
  3656. }
  3657. if (this.businessData.workCompleted) {
  3658. var application = app || this.businessData.workCompleted.application;
  3659. window.open(o2.filterUrl("../x_desktop/printWork.html?workCompletedId=" + this.businessData.workCompleted.id + "&app=" + application + "&form=" + form));
  3660. } else {
  3661. var application = app || this.businessData.work.application;
  3662. window.open(o2.filterUrl("../x_desktop/printWork.html?workid=" + this.businessData.work.id + "&app=" + application + "&form=" + form));
  3663. }
  3664. },
  3665. readedWork: function (e) {
  3666. this.fireEvent("beforeReaded");
  3667. var _self = this;
  3668. var title = this.businessData.work.title;
  3669. if (title.length > 75) {
  3670. title = title.substr(0, 74) + "..."
  3671. }
  3672. var text = "您确定要将“" + title + "”标记为已阅吗?";
  3673. this.app.confirm("infor", e, "标记已阅确认", text, 300, 120, function () {
  3674. var confirmDlg = this;
  3675. var read = null;
  3676. for (var i = 0; i < _self.businessData.readList.length; i++) {
  3677. if (_self.businessData.readList[i].person === layout.session.user.distinguishedName) {
  3678. read = _self.businessData.readList[i];
  3679. break;
  3680. }
  3681. }
  3682. if (read) {
  3683. _self.app.action.setReaded(function () {
  3684. _self.fireEvent("afterReaded");
  3685. _self.app.reload();
  3686. if (layout.mobile) {
  3687. //移动端页面关闭
  3688. _self.finishOnMobile()
  3689. } else {
  3690. confirmDlg.close();
  3691. }
  3692. }, null, read.id, read);
  3693. } else {
  3694. _self.app.reload();
  3695. if (layout.mobile) {
  3696. //移动端页面关闭
  3697. _self.finishOnMobile()
  3698. } else {
  3699. confirmDlg.close();
  3700. }
  3701. }
  3702. }, function () {
  3703. this.close();
  3704. }, null, this.app.content, this.json.confirmStyle);
  3705. },
  3706. openWindow: function (form, app) {
  3707. //var application = app || (this.businessData.work) ? this.businessData.work.application : this.businessData.workCompleted.application;
  3708. var form = form;
  3709. if (!form) {
  3710. form = this.json.id;
  3711. //if (this.json.printForm) form = this.json.printForm;
  3712. }
  3713. if (this.businessData.workCompleted) {
  3714. var application = app || this.businessData.workCompleted.application;
  3715. window.open(o2.filterUrl("../x_desktop/printWork.html?workCompletedId=" + this.businessData.workCompleted.id + "&app=" + application + "&form=" + form));
  3716. } else {
  3717. var application = app || this.businessData.work.application;
  3718. window.open(o2.filterUrl("../x_desktop/printWork.html?workid=" + this.businessData.work.id + "&app=" + application + "&form=" + form));
  3719. }
  3720. //window.open("../x_desktop/printWork.html?workid="+this.businessData.work.id+"&app="+this.businessData.work.application+"&form="+form);
  3721. },
  3722. uploadedAttachment: function (site, id) {
  3723. this.workAction.getAttachment(id, this.businessData.work.id, function (json) {
  3724. var att = this.all[site];
  3725. if (att) {
  3726. if (json.data) att.attachmentController.addAttachment(json.data);
  3727. att.attachmentController.checkActions();
  3728. att.fireEvent("upload", [json.data]);
  3729. }
  3730. }.bind(this));
  3731. },
  3732. replacedAttachment: function (site, id) {
  3733. this.workAction.getAttachment(id, this.businessData.work.id, function (json) {
  3734. var att = this.all[site];
  3735. if (att) {
  3736. var attachmentController = att.attachmentController;
  3737. var attachment = null;
  3738. for (var i = 0; i < attachmentController.attachments.length; i++) {
  3739. if (attachmentController.attachments[i].data.id === id) {
  3740. attachment = attachmentController.attachments[i];
  3741. break;
  3742. }
  3743. }
  3744. attachment.data = json.data;
  3745. attachment.reload();
  3746. attachmentController.checkActions();
  3747. }
  3748. }.bind(this))
  3749. },
  3750. //移动端页面 工作处理完成后
  3751. finishOnMobile: function () {
  3752. var _self = this;
  3753. //新建检查
  3754. // if (this.json.checkDraft){
  3755. // this.workAction.checkDraft(this.businessData.work.id, function (json) {
  3756. // // var str = JSON.stringify(json);
  3757. // _self.finishOnMobileReal();
  3758. // }.bind(this), function () {
  3759. // _self.finishOnMobileReal();
  3760. // }, false);
  3761. // }else {
  3762. // _self.finishOnMobileReal();
  3763. // }
  3764. this.workAction.checkDraft(this.businessData.work.id, function (json) {
  3765. // var str = JSON.stringify(json);
  3766. _self.finishOnMobileReal();
  3767. }.bind(this), function () {
  3768. _self.finishOnMobileReal();
  3769. }, false);
  3770. },
  3771. finishOnMobileReal: function () {
  3772. if (window.o2android && window.o2android.closeWork) {
  3773. window.o2android.closeWork("");
  3774. } else if (window.webkit && window.webkit.messageHandlers && window.webkit.messageHandlers.closeWork) {
  3775. window.webkit.messageHandlers.closeWork.postMessage("");
  3776. } else if (window.wx && window.__wxjs_environment === 'miniprogram') { //微信小程序 关闭页面
  3777. wx.miniProgram.navigateBack({ delta: 1 });
  3778. } else {
  3779. var len = window.history.length;
  3780. if (len > 1) {
  3781. history.back();
  3782. } else {
  3783. var uri = new URI(window.location.href);
  3784. var redirectlink = uri.getData("redirectlink");
  3785. if (redirectlink) {
  3786. history.replaceState(null, "work", redirectlink);
  3787. redirectlink.toURI().go();
  3788. } else {
  3789. window.location = o2.filterUrl("../x_desktop/appMobile.html?app=process.TaskCenter");
  3790. history.replaceState(null, "work", o2.filterUrl("../x_desktop/appMobile.html?app=process.TaskCenter"));
  3791. o2.filterUrl("../x_desktop/appMobile.html?app=process.TaskCenter").toURI().go();
  3792. }
  3793. }
  3794. }
  3795. }
  3796. });