| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366 |
- MWF.require(["MWF.widget.Common", "MWF.widget.Identity"], null, false);
- MWF.xApplication.process = MWF.xApplication.process || {};
- MWF.xApplication.process.Xform = MWF.xApplication.process.Xform || {};
- MWF.xDesktop.requireApp("process.Xform", "lp." + MWF.language, null, false);
- MWF.xDesktop.requireApp("process.Xform", "Package", null, false);
- MWF.xApplication.process.Xform.Form = MWF.APPForm = new Class({
- Implements: [Options, Events],
- Extends: MWF.widget.Common,
- options: {
- "style": "default",
- "readonly": false,
- "cssPath": "",
- "macro": "FormContext",
- "parameters": null,
- "moduleEvents": ["queryLoad",
- "beforeLoad",
- "postLoad",
- "afterLoad",
- "beforeSave",
- "afterSave",
- "beforeClose",
- "beforeProcess",
- "beforeProcessWork",
- "afterProcess",
- "beforeReset",
- "afterReset",
- "beforeRetract",
- "afterRetract",
- "beforeReroute",
- "afterReroute",
- "beforeDelete",
- "afterDelete",
- "beforeModulesLoad",
- "resize",
- "afterModulesLoad",
- "beforeReaded",
- "afterReaded"]
- },
- initialize: function (node, data, options) {
- this.setOptions(options);
- this.container = $(node);
- this.container.setStyle("-webkit-user-select", "text");
- if (Browser.firefox) this.container.setStyle("opacity", 0);
- this.data = data;
- this.json = data.json;
- this.html = data.html;
- this.path = "/x_component_process_Xform/$Form/";
- this.cssPath = this.options.cssPath || "/x_component_process_Xform/$Form/" + this.options.style + "/css.wcss";
- this._loadCss();
- this.sectionListObj = {};
- this.modules = [];
- this.all = {};
- this.forms = {};
- //if (!this.personActions) this.personActions = new MWF.xAction.org.express.RestActions();
- },
- parseCSS: function (css) {
- var rex = /(url\(.*\))/g;
- var match;
- while ((match = rex.exec(css)) !== null) {
- var pic = match[0];
- var len = pic.length;
- var s = pic.substring(pic.length - 2, pic.length - 1);
- var n0 = (s === "'" || s === "\"") ? 5 : 4;
- var n1 = (s === "'" || s === "\"") ? 2 : 1;
- pic = pic.substring(n0, pic.length - n1);
- if ((pic.indexOf("x_processplatform_assemble_surface") != -1 || pic.indexOf("x_portal_assemble_surface") != -1)) {
- var host1 = MWF.Actions.getHost("x_processplatform_assemble_surface");
- var host2 = MWF.Actions.getHost("x_portal_assemble_surface");
- if (pic.indexOf("/x_processplatform_assemble_surface") !== -1) {
- pic = pic.replace("/x_processplatform_assemble_surface", pic + "/x_processplatform_assemble_surface");
- } else if (pic.indexOf("x_processplatform_assemble_surface") !== -1) {
- pic = pic.replace("x_processplatform_assemble_surface", pic + "/x_processplatform_assemble_surface");
- }
- if (pic.indexOf("/x_portal_assemble_surface") !== -1) {
- pic = pic.replace("/x_portal_assemble_surface", host2 + "/x_portal_assemble_surface");
- } else if (pic.indexOf("x_portal_assemble_surface") !== -1) {
- pic = pic.replace("x_portal_assemble_surface", host2 + "/x_portal_assemble_surface");
- }
- }
- pic = "url('" + pic + "')";
- var len2 = pic.length;
- css = css.substring(0, match.index) + pic + css.substring(rex.lastIndex, css.length);
- rex.lastIndex = rex.lastIndex + (len2 - len);
- }
- return css;
- },
- loadCss: function () {
- cssText = this.json.css.code;
- //var head = (document.head || document.getElementsByTagName("head")[0] || document.documentElement);
- var styleNode = $("style" + this.json.id);
- if (styleNode) styleNode.destroy();
- if (cssText) {
- cssText = this.parseCSS(cssText);
- var rex = new RegExp("(.+)(?=\\{)", "g");
- var match;
- var id = this.json.id.replace(/\-/g, "");
- var prefix = ".css" + id + " ";
- while ((match = rex.exec(cssText)) !== null) {
- var rulesStr = match[0];
- if (rulesStr.indexOf(",") != -1) {
- var rules = rulesStr.split(/\s*,\s*/g);
- rules = rules.map(function (r) {
- return prefix + r;
- });
- var rule = rules.join(", ");
- cssText = cssText.substring(0, match.index) + rule + cssText.substring(rex.lastIndex, cssText.length);
- rex.lastIndex = rex.lastIndex + (prefix.length * rules.length);
- } else {
- var rule = prefix + match[0];
- cssText = cssText.substring(0, match.index) + rule + cssText.substring(rex.lastIndex, cssText.length);
- rex.lastIndex = rex.lastIndex + prefix.length;
- }
- }
- var styleNode = document.createElement("style");
- styleNode.setAttribute("type", "text/css");
- styleNode.id = "style" + this.json.id;
- styleNode.inject(this.container, "before");
- if (styleNode.styleSheet) {
- var setFunc = function () {
- styleNode.styleSheet.cssText = cssText;
- };
- if (styleNode.styleSheet.disabled) {
- setTimeout(setFunc, 10);
- } else {
- setFunc();
- }
- } else {
- var cssTextNode = document.createTextNode(cssText);
- styleNode.appendChild(cssTextNode);
- }
- return "css" + id;
- }
- return "";
- },
- keyLock: function (async) {
- var lockData = null;
- var key = this.businessData.work.id + "-" + this.businessData.work.activityToken;
- o2.Actions.load("x_processplatform_assemble_surface").KeyLockAction.lock({ "key": key }, function (json) {
- flagData = json.data;
- if (async && flagData.success) this.keyLockTimeoutId = window.setTimeout(function () { this.keyLock(true) }.bind(this), 90000);
- if (async && !flagData.success) this.app.reload();
- }.bind(this), null, !!async);
- return flagData;
- },
- checkLock: function () {
- if (this.businessData.control.allowProcessing && this.businessData.activity.manualMode == "grab") {
- this.app.addEvent("queryClose", function () {
- if (this.keyLockTimeoutId) window.clearTimeout(this.keyLockTimeoutId);
- }.bind(this));
- var lockData = this.keyLock();
- if (lockData.success) {
- this.keyLock(true);
- } else {
- this.businessData.control.allowProcessing = false;
- this.businessData.control.allowSave = false;
- this.businessData.control.allowReset = false;
- this.businessData.control.allowReroute = false;
- this.businessData.control.allowDelete = false;
- this.businessData.control.allowAddSplit = false;
- this.businessData.control.allowRetract = false;
- this.businessData.control.allowRollback = false;
- var text = MWF.xApplication.process.Xform.LP.keyLockInfor;
- text = text.replace("{name}", o2.name.cn(lockData.person));
- var title = MWF.xApplication.process.Xform.LP.keyLockTitle;
- this.app.alert("info", "center", title, text, 400, 160);
- // o2.DL.open({
- // "title": title,
- // "text": text,
- // "width": 400
- // })
- }
- }
- },
- load: function (callback) {
- debugger;
- this.checkLock();
- this.loadExtendStyle(function () {
- if (this.app) {
- if (this.app.formNode) this.app.formNode.setStyles(this.json.styles);
- if (this.app.addEvent) {
- this.app.addEvent("resize", function () {
- this.fireEvent("resize");
- }.bind(this));
- this.app.addEvent("queryClose", function () {
- this.beforeCloseWork();
- }.bind(this))
- }
- }
- if (!this.businessData.control.allowSave) this.setOptions({ "readonly": true });
- var cssClass = "";
- if (this.json.css && this.json.css.code) cssClass = this.loadCss();
- this.loadMacro(function () {
- //this.container.setStyle("opacity", 0);
- this.container.set("html", this.html);
- this.node = this.container.getFirst();
- if (cssClass) this.node.addClass(cssClass);
- this._loadEvents();
- if (this.fireEvent("queryLoad")) {
- if (this.app) if (this.app.fireEvent) this.app.fireEvent("queryLoad");
- this._loadBusinessData();
- this.fireEvent("beforeLoad");
- if (this.app) if (this.app.fireEvent) this.app.fireEvent("beforeLoad");
- this.loadContent(callback);
- }
- }.bind(this));
- }.bind(this))
- },
- loadExtendStyle: function (callback) {
- if (!this.json.styleConfig || !this.json.styleConfig.extendFile) {
- if (callback) callback();
- return;
- }
- var stylesUrl = "/x_component_process_FormDesigner/Module/Form/skin/" + this.json.styleConfig.extendFile;
- MWF.getJSON(stylesUrl, {
- "onSuccess": function (responseJSON) {
- if (responseJSON && responseJSON.form) {
- this.json = Object.merge(this.json, responseJSON.form);
- }
- if (callback) callback();
- }.bind(this),
- "onRequestFailure": function () {
- if (callback) callback();
- }.bind(this),
- "onError": function () {
- if (callback) callback();
- }.bind(this)
- }
- );
- },
- loadMacro: function (callback) {
- //if (!MWF.Macro[this.options.macro || "FormContext"]){
- MWF.require("MWF.xScript.Macro", function () {
- this.Macro = new MWF.Macro[this.options.macro || "FormContext"](this);
- if (callback) callback();
- }.bind(this));
- // }else{
- // this.Macro = new MWF.Macro[this.options.macro || "FormContext"](this);
- // if (callback) callback();
- // }
- },
- loadContent: function (callback) {
- this.subformCount = 0;
- this.subformLoadedCount = 0;
- this.subformLoaded = [this.json.id];
- this.subpageCount = 0;
- this.subpageLoadedCount = 0;
- this.subpageLoaded = [];
- this.widgetCount = 0;
- this.widgetLoadedCount = 0;
- this.widgetLoaded = [];
- this._loadHtml();
- this._loadForm();
- this.fireEvent("beforeModulesLoad");
- if (this.app && this.app.fireEvent) this.app.fireEvent("beforeModulesLoad");
- this._loadModules(this.node);
- if (Browser.firefox) this.container.setStyle("opacity", 1);
- if (this.json.mode === "Mobile") {
- var node = document.body.getElement(".o2_form_mobile_actions");
- //if (node)
- this._loadMobileActions(node, callback);
- } else {
- if (callback) callback();
- }
- this.fireEvent("postLoad");
- if (this.app && this.app.fireEvent) this.app.fireEvent("postLoad");
- this.checkSubformLoaded(true);
- },
- checkSubformLoaded: function (isAllSubformLoaded) {
- if (isAllSubformLoaded) {
- this.isAllSubformLoaded = true;
- }
- if (!this.isAllSubformLoaded) return;
- //console.log( "checkSubformLoaded this.subformCount="+ this.subformCount + " this.subformLoadedCount="+this.subformLoadedCount );
- if ((!this.subformCount || this.subformCount === this.subformLoadedCount) &&
- (!this.subpageCount || this.subpageCount === this.subpageLoadedCount) &&
- (!this.widgetCount || this.widgetCount === this.widgetLoadedCount)
- ) {
- //this.container.setStyle("opacity", 1);
- this.fireEvent("afterModulesLoad");
- if (this.app && this.app.fireEvent) this.app.fireEvent("afterModulesLoad");
- this.fireEvent("afterLoad");
- if (this.app && this.app.fireEvent) this.app.fireEvent("afterLoad");
- this.isLoaded = true;
- }
- },
- _loadMobileDefaultTools: function (callback) {
- if (this.json.defaultTools) {
- if (callback) callback();
- } else {
- this.json.defaultTools = o2.JSON.get("/x_component_process_FormDesigner/Module/Form/toolbars.json", function (json) {
- this.json.defaultTools = json;
- if (callback) callback();
- }.bind(this));
- }
- },
- _loadMobileActions: function (node, callback) {
- var tools = [];
- this._loadMobileDefaultTools(function () {
- if (this.json.defaultTools) {
- this.json.defaultTools.each(function (tool) {
- var flag = this._checkDefaultMobileActionItem(tool, this.options.readonly);
- if (flag) tools.push(tool);
- }.bind(this));
- }
- if (this.json.tools) {
- this.json.tools.each(function (tool) {
- var flag = this._checkCustomMobileActionItem(tool, this.options.readonly);
- if (flag) tools.push(tool);
- }.bind(this));
- }
- this.mobileTools = tools;
- //app上用原来的按钮样式
- if (window.o2android) {
- if (tools.length) if (node) this._createMobileActions(node, tools);
- } else if (window.webkit && window.webkit.messageHandlers && window.webkit.messageHandlers.o2mLog) {
- if (tools.length) if (node) this._createMobileActions(node, tools);
- } else {
- //钉钉 企业微信用新的样式
- if (tools.length) if (node) this._createMobileActionsDingdingStyle(node, tools);
- }
- if (callback) callback();
- }.bind(this));
- },
- // 修改成钉钉 button
- _createMobileActionsDingdingStyle: function (node, tools) {
- node.show();
- var count = tools.length;
- if (count <= 2) {
- //左边 间隔
- var dingdingSplitLeft = new Element("div", { "styles": this.css.html5ActionButtonDingdingSplit, "text": " " }).inject(node);
- var splitSize = dingdingSplitLeft.getSize();
- var size = document.body.getSize();
- var buttonWidth = (size.x - splitSize.x * (count + 1) - (count * 2)) / count;
- tools.each(function (tool) {
- var actionStyle = this.css.html5ActionButtonDingdingNormal;
- if (tool.text === "继续流转" || tool.text === "撤回" || tool.id === "action_processWork" || tool.id === "action_retract") {
- actionStyle = this.css.html5ActionButtonDingdingPrimary;
- } else if (tool.text === "删除文件" || tool.id === "action_delete") {
- actionStyle = this.css.html5ActionButtonDingdingDanger;
- }
- actionStyle.width = buttonWidth + "px";
- var action = new Element("div", { "styles": actionStyle, "text": tool.text }).inject(node);
- action.store("tool", tool);
- action.addEvent("click", function (e) {
- var clickFun = function () {
- var t = e.target.retrieve("tool");
- e.setDisable = function () { };
- if (t.actionScript) {
- this._runCustomAction(t.actionScript);
- } else {
- if (this[t.action]) this[t.action](e);
- }
- }.bind(this);
- if (tool.text === "继续流转" || tool.id === "action_processWork") {
- //输入法激活的时候,需要一段时间等待输入法关闭
- window.setTimeout(clickFun, 100)
- } else {
- clickFun();
- }
- }.bind(this));
- new Element("div", { "styles": this.css.html5ActionButtonDingdingSplit, "text": " " }).inject(node);
- }.bind(this));
- } else {
- //左边 间隔
- var dingdingSplitLeft = new Element("div", { "styles": this.css.html5ActionButtonDingdingSplit, "text": " " }).inject(node);
- var splitSize = dingdingSplitLeft.getSize();
- var size = document.body.getSize();
- var buttonWidth = (size.x - splitSize.x * 4 - 6) / 5;
- for (var i = 0; i < 3; i++) {
- tool = tools[i];
- var actionStyle = this.css.html5ActionButtonDingdingNormal;
- if (tool.text === "继续流转" || tool.text === "撤回") {
- actionStyle = this.css.html5ActionButtonDingdingPrimary;
- } else if (tool.text === "删除文件") {
- actionStyle = this.css.html5ActionButtonDingdingDanger;
- }
- if (i == 2) {
- this.css.html5ActionButtonDingdingMore.width = buttonWidth + "px";
- var action = new Element("div", { "styles": this.css.html5ActionButtonDingdingMore, "text": "…" }).inject(node);
- action.addEvent("click", function (e) {
- this._loadMoreMobileActionsDingdingStyle(tools, 2, node);
- }.bind(this));
- } else {
- actionStyle.width = (buttonWidth * 2) + "px";
- var action = new Element("div", { "styles": actionStyle, "text": tool.text }).inject(node);
- action.store("tool", tool);
- action.addEvent("click", function (e) {
- var t = e.target.retrieve("tool");
- e.setDisable = function () { }
- if (t.actionScript) {
- this._runCustomAction(t.actionScript);
- } else {
- if (this[t.action]) this[t.action](e);
- }
- }.bind(this));
- }
- new Element("div", { "styles": this.css.html5ActionButtonDingdingSplit, "text": " " }).inject(node);
- }
- }
- },
- _loadMoreMobileActionsDingdingStyle: function (tools, n, node) {
- document.body.mask({
- "style": {
- "background-color": "#cccccc",
- "opacity": 0.6
- },
- "hideOnClick": true,
- "onHide": function () {
- this.actionMoreArea.setStyle("display", "none");
- }.bind(this)
- });
- if (this.actionMoreArea) {
- this.actionMoreArea.setStyle("display", "block");
- } else {
- var size = document.body.getSize();
- this.actionMoreArea = new Element("div", { "styles": this.css.html5ActionOtherArea }).inject(document.body);
- var pl = this.actionMoreArea.getStyle("padding-left").toInt();
- var pr = this.actionMoreArea.getStyle("padding-right").toInt();
- var w = size.x - pl - pr;
- this.actionMoreArea.setStyle("width", "" + w + "px");
- for (var i = n; i < tools.length; i++) {
- tool = tools[i];
- var actionStyle = this.css.html5ActionButtonDingdingNormal;
- if (tool.text === "继续流转" || tool.text === "撤回") {
- actionStyle = this.css.html5ActionButtonDingdingPrimary;
- } else if (tool.text === "删除文件") {
- actionStyle = this.css.html5ActionButtonDingdingDanger;
- }
- actionStyle.width = "100%";
- var action = new Element("div", { "styles": actionStyle, "text": tool.text }).inject(this.actionMoreArea);
- action.store("tool", tool);
- action.addEvent("click", function (e) {
- var t = e.target.retrieve("tool");
- e.setDisable = function () { }
- if (t.actionScript) {
- this._runCustomAction(t.actionScript);
- } else {
- if (this[t.action]) this[t.action](e);
- }
- }.bind(this));
- }
- }
- },
- _createMobileActions: function (node, tools) {
- node.show();
- var count = tools.length;
- if (count <= 2) {
- this.css.html5ActionButton.width = "100%";
- if (count == 2) this.css.html5ActionButton.width = "49%";
- tools.each(function (tool) {
- var action = new Element("div", { "styles": this.css.html5ActionButton, "text": tool.text }).inject(node);
- action.store("tool", tool);
- action.addEvent("click", function (e) {
- var t = e.target.retrieve("tool");
- e.setDisable = function () { }
- if (t.actionScript) {
- this._runCustomAction(t.actionScript);
- } else {
- if (this[t.action]) this[t.action](e);
- }
- }.bind(this));
- this._setMobileBottonStyle(action);
- }.bind(this));
- if (count == 2) new Element("div", { "styles": this.css.html5ActionButtonSplit }).inject(node.getLast(), "before");
- } else {
- this.css.html5ActionButton.width = "38%"
- for (var i = 0; i < 2; i++) {
- tool = tools[i];
- var action = new Element("div", { "styles": this.css.html5ActionButton, "text": tool.text }).inject(node);
- action.store("tool", tool);
- action.addEvent("click", function (e) {
- var t = e.target.retrieve("tool");
- e.setDisable = function () { }
- if (t.actionScript) {
- this._runCustomAction(t.actionScript);
- } else {
- if (this[t.action]) this[t.action](e);
- }
- }.bind(this));
- this._setMobileBottonStyle(action);
- }
- new Element("div", { "styles": this.css.html5ActionButtonSplit }).inject(node.getLast(), "before");
- new Element("div", { "styles": this.css.html5ActionButtonSplit }).inject(node);
- this.css.html5ActionButton.width = "23%"
- var action = new Element("div", { "styles": this.css.html5ActionButton, "text": "…" }).inject(node);
- action.addEvent("click", function (e) {
- this._loadMoreMobileActions(tools, 2, node);
- }.bind(this));
- this._setMobileBottonStyle(action);
- }
- },
- _loadMoreMobileActions: function (tools, n, node) {
- document.body.mask({
- "style": {
- "background-color": "#cccccc",
- "opacity": 0.6
- },
- "hideOnClick": true,
- "onHide": function () {
- this.actionMoreArea.setStyle("display", "none");
- }.bind(this)
- });
- if (this.actionMoreArea) {
- this.actionMoreArea.setStyle("display", "block");
- } else {
- var size = document.body.getSize();
- this.actionMoreArea = new Element("div", { "styles": this.css.html5ActionOtherArea }).inject(document.body);
- var pl = this.actionMoreArea.getStyle("padding-left").toInt();
- var pr = this.actionMoreArea.getStyle("padding-right").toInt();
- var w = size.x - pl - pr;
- this.actionMoreArea.setStyle("width", "" + w + "px");
- for (var i = n; i < tools.length; i++) {
- tool = tools[i];
- var action = new Element("div", { "styles": this.css.html5ActionOtherButton, "text": tool.text }).inject(this.actionMoreArea);
- action.store("tool", tool);
- action.addEvent("click", function (e) {
- var t = e.target.retrieve("tool");
- e.setDisable = function () { }
- if (t.actionScript) {
- this._runCustomAction(t.actionScript);
- } else {
- if (this[t.action]) this[t.action](e);
- }
- }.bind(this));
- this._setMobileBottonStyle(action);
- }
- }
- // actionArea.position({
- // relativeTo: node,
- // position: 'topCenter',
- // edge: 'bottomCenter'
- // });
- },
- _setMobileBottonStyle: function (action) {
- var _self = this;
- action.addEvents({
- "mouseover": function (e) { this.setStyles(_self.css.html5ActionButton_over) },
- "mouseout": function (e) { this.setStyles(_self.css.html5ActionButton_up) },
- "mousedown": function (e) { this.setStyles(_self.css.html5ActionButton_over) },
- "mouseup": function (e) { this.setStyles(_self.css.html5ActionButton_up) },
- "touchstart": function (e) { this.setStyles(_self.css.html5ActionButton_over) },
- "touchcancel": function (e) { this.setStyles(_self.css.html5ActionButton_up) },
- "touchend": function (e) { this.setStyles(_self.css.html5ActionButton_up) },
- "touchmove": function (e) { this.setStyles(_self.css.html5ActionButton_over) }
- });
- },
- _runCustomAction: function (actionScript) {
- //var script = bt.node.retrieve("script");
- this.Macro.exec(actionScript, this);
- },
- _checkCustomMobileActionItem: function (tool, readonly) {
- var flag = true;
- if (readonly) {
- flag = tool.readShow;
- } else {
- flag = tool.editShow;
- }
- if (flag) {
- flag = true;
- if (tool.control) {
- flag = this.form.businessData.control[tool.control]
- }
- if (tool.condition) {
- var hideFlag = this.Macro.exec(tool.condition, this);
- flag = !hideFlag;
- }
- }
- return flag;
- },
- _checkDefaultMobileActionItem: function (tool, readonly, noCondition) {
- var flag = true;
- if (tool.control) {
- flag = this.businessData.control[tool.control]
- }
- if (!noCondition) if (tool.condition) {
- var hideFlag = this.Macro.exec(tool.condition, this);
- flag = flag && (!hideFlag);
- }
- if (tool.id == "action_processWork") {
- if (!this.businessData.task) {
- flag = false;
- }
- }
- if (tool.id == "action_rollback") tool.read = true;
- if (readonly) if (!tool.read) flag = false;
- return flag;
- },
- _loadBusinessData: function () {
- if (!this.businessData) {
- this.businessData = {};
- // this.businessData = {
- // "data": {
- // "select": "222",
- // "radio": "bbb",
- // "checkbox": ["check1", "check3"],
- // "orderData": [
- // {
- // "orderName": {"namefield": "电脑"},
- // "orderCount": {"countField": "3"},
- // "priceCount": {"priceField": "9000"}
- // },
- // {
- // "orderName": {"namefield": "路由器"},
- // "orderCount": {"countField": "2"},
- // "priceCount": {"priceField": "1000"}
- // },
- // {
- // "orderName": {"namefield": "网线"},
- // "orderCount": {"countField": "10"},
- // "priceCount": {"priceField": "200"}
- // }
- // ]
- //
- // }
- // };
- }
- },
- _loadHtml: function () {
- // this.container.set("html", this.html);
- // this.node = this.container.getFirst();
- //this.node.setStyle("overflow", "hidden");
- this.node.addEvent("selectstart", function (e) {
- var select = "text";
- if (e.target.getStyle("-webkit-user-select")) {
- select = e.target.getStyle("-webkit-user-select").toString().toLowerCase();
- }
- if (select !== "text" && select !== "auto") e.preventDefault();
- });
- },
- _loadForm: function () {
- this._loadStyles();
- this._loadCssLinks();
- this._loadScriptSrc();
- this._loadJsheader();
- //this._loadEvents();
- },
- _loadStyles: function () {
- if (this.json.styles) Object.each(this.json.styles, function (value, key) {
- if ((value.indexOf("x_processplatform_assemble_surface") != -1 || value.indexOf("x_portal_assemble_surface") != -1)) {
- var host1 = MWF.Actions.getHost("x_processplatform_assemble_surface");
- var host2 = MWF.Actions.getHost("x_portal_assemble_surface");
- if (value.indexOf("/x_processplatform_assemble_surface") !== -1) {
- value = value.replace("/x_processplatform_assemble_surface", host1 + "/x_processplatform_assemble_surface");
- } else if (value.indexOf("x_processplatform_assemble_surface") !== -1) {
- value = value.replace("x_processplatform_assemble_surface", host1 + "/x_processplatform_assemble_surface");
- }
- if (value.indexOf("/x_portal_assemble_surface") !== -1) {
- value = value.replace("/x_portal_assemble_surface", host2 + "/x_portal_assemble_surface");
- } else if (value.indexOf("x_portal_assemble_surface") !== -1) {
- value = value.replace("x_portal_assemble_surface", host2 + "/x_portal_assemble_surface");
- }
- }
- this.node.setStyle(key, value);
- }.bind(this));
- //this.node.setStyles(this.json.styles);
- },
- _loadCssLinks: function () {
- var urls = this.json.cssLinks;
- urls.each(function (url) {
- new Element("link", {
- "rel": "stylesheet",
- "type": "text/css",
- "href": url
- }).inject($(document.head));
- });
- },
- _loadScriptSrc: function () {
- var urls = this.json.scriptSrc;
- urls.each(function (url) {
- new Element("script", {
- "src": url
- }).inject($(document.head));
- });
- },
- _loadJsheader: function () {
- var code = this.json.jsheader.code;
- if (code) Browser.exec(code);
- },
- _loadEvents: function () {
- Object.each(this.json.events, function (e, key) {
- if (e.code) {
- if (this.options.moduleEvents.indexOf(key) !== -1) {
- this.addEvent(key, function (event) {
- return this.Macro.fire(e.code, this, event);
- }.bind(this));
- } else {
- if (key === "load") {
- this.addEvent("postLoad", function () {
- return this.Macro.fire(e.code, this);
- }.bind(this));
- } else if (key === "submit") {
- this.addEvent("beforeProcess", function () {
- return this.Macro.fire(e.code, this);
- }.bind(this));
- } else {
- this.node.addEvent(key, function (event) {
- return this.Macro.fire(e.code, this, event);
- }.bind(this));
- }
- }
- }
- }.bind(this));
- },
- addModuleEvent: function (key, fun) {
- if (this.options.moduleEvents.indexOf(key) !== -1) {
- this.addEvent(key, function (event) {
- return (fun) ? fun(this, event) : null;
- }.bind(this));
- } else {
- if (key === "load") {
- this.addEvent("postLoad", function (event) {
- return (fun) ? fun(this, event) : null;
- }.bind(this));
- } else if (key === "submit") {
- this.addEvent("beforeProcess", function (event) {
- return (fun) ? fun(this, event) : null;
- }.bind(this));
- } else {
- this.node.addEvent(key, function (event) {
- return (fun) ? fun(this, event) : null;
- }.bind(this));
- }
- }
- },
- _getDomjson: function (dom) {
- var mwfType = dom.get("MWFtype") || dom.get("mwftype");
- switch (mwfType) {
- case "form":
- return this.json;
- case "":
- return null;
- default:
- var id = dom.get("id");
- if (!id) id = dom.get("MWFId");
- if (id) {
- return this.json.moduleList[id];
- } else {
- return null;
- }
- }
- },
- _getModuleNodes: function (dom) {
- var moduleNodes = [];
- var subDom = dom.getFirst();
- while (subDom) {
- var mwftype = subDom.get("MWFtype") || subDom.get("mwftype");
- if (mwftype) {
- var type = mwftype;
- if (type.indexOf("$") === -1) {
- moduleNodes.push(subDom);
- }
- // && mwftype !== "tab$Content"
- if (mwftype !== "datagrid" && mwftype !== "subSource" && mwftype !== "tab$Content") {
- moduleNodes = moduleNodes.concat(this._getModuleNodes(subDom));
- }
- } else {
- moduleNodes = moduleNodes.concat(this._getModuleNodes(subDom));
- }
- subDom = subDom.getNext();
- }
- return moduleNodes;
- },
- _loadModules: function (dom) {
- //var subDom = this.node.getFirst();
- //while (subDom){
- // if (subDom.get("MWFtype")){
- // var json = this._getDomjson(subDom);
- // var module = this._loadModule(json, subDom);
- // this.modules.push(module);
- // }
- // subDom = subDom.getNext();
- //}
- var moduleNodes = this._getModuleNodes(dom);
- //alert(moduleNodes.length);
- moduleNodes.each(function (node) {
- var json = this._getDomjson(node);
- //if( json.type === "Subform" || json.moduleName === "subform" )this.subformCount++;
- //if( json.type === "Subpage" || json.moduleName === "subpage" )this.subpageCount++;
- var module = this._loadModule(json, node);
- this.modules.push(module);
- }.bind(this));
- },
- _loadModule: function (json, node, beforeLoad) {
- //console.log( json.id );
- if (json.type === "Subform" || json.moduleName === "subform") this.subformCount++;
- //if( json.type === "Subform" || json.moduleName === "subform" ){
- // console.log( "add subformcount , this.subformCount = " + this.subformCount );
- //}
- if (json.type === "Subpage" || json.moduleName === "subpage") this.subpageCount++;
- if (json.type === "Widget" || json.moduleName === "widget") this.widgetCount++;
- if (!MWF["APP" + json.type]) {
- MWF.xDesktop.requireApp("process.Xform", json.type, null, false);
- }
- var module = new MWF["APP" + json.type](node, json, this);
- if (beforeLoad) beforeLoad.apply(module);
- if (!this.all[json.id]) this.all[json.id] = module;
- if (module.field) {
- if (!this.forms[json.id]) this.forms[json.id] = module;
- }
- module.readonly = this.options.readonly;
- module.load();
- return module;
- },
- saveOpinion: function (module) {
- var op = module._getBusinessSectionDataByPerson();
- MWF.UD.getDataJson("userOpinion", function (json) {
- if (!json) json = [];
- var idx = json.indexOf(op);
- if (idx == -1) {
- if (json.length >= 50) json.shift();
- } else {
- json.splice(idx, 1);
- }
- json.push(op);
- MWF.UD.putData("userOpinion", json);
- }.bind(this), false);
- },
- loadPathData: function (path) {
- var data = null;
- this.workAction.getJobDataByPath(this.businessData.work.job, path, function (json) {
- data = json.data || null;
- }, null, false);
- return data;
- },
- getData: function (issubmit) {
- var data = Object.clone(this.businessData.data);
- Object.each(this.forms, function (module, id) {
- if (module.json.type === "Opinion") {
- debugger;
- if (issubmit) {
- this.saveOpinion(module);
- delete data[id];
- } else {
- var v = module.getData();
- // var d = this.loadPathData(id);
- // if (d) data[id] = d;
- data[id] = this.getSectionDataByPerson(v, data[id]);
- }
- } else {
- if (module.json.section === "yes") {
- // var d = this.loadPathData(id);
- // if (d) data[id] = d;
- data[id] = this.getSectionData(module, data[id]);
- } else {
- data[id] = module.getData();
- }
- }
- }.bind(this));
- this.businessData.data = data;
- this.Macro.environment.setData(this.businessData.data);
- return data;
- },
- getSectionData: function (module, obj) {
- var v = module.getData();
- switch (module.json.sectionBy) {
- case "person":
- return this.getSectionDataByPerson(v, obj);
- case "unit":
- return this.getSectionDataByUnit(v, obj);
- case "activity":
- return this.getSectionDataByPActivity(v, obj);
- case "splitValue":
- return this.getSectionDataBySplitValue(v, obj);
- case "script":
- return this.getSectionDataByScript(module.json.sectionByScript.code, v, obj);
- default:
- return v;
- }
- },
- getSectionDataByPerson: function (v, obj) {
- var key = layout.desktop.session.user.id;
- if (!obj || (typeOf(obj) !== "object")) obj = {};
- obj[key] = v;
- return obj;
- },
- getSectionDataByUnit: function (v, obj) {
- var key = (this.businessData.task) ? this.businessData.task.unit : "";
- if (!obj || (typeOf(obj) !== "object")) obj = {};
- if (key) obj[key] = v;
- return obj;
- },
- getSectionDataByPActivity: function (v, obj) {
- var key = (this.businessData.work) ? this.businessData.work.activity : "";
- if (!obj || (typeOf(obj) !== "object")) obj = {};
- if (key) obj[key] = v;
- return obj;
- },
- getSectionDataBySplitValue: function (v, obj) {
- var key = (this.businessData.work) ? this.businessData.work.splitValue : "";
- if (!obj || (typeOf(obj) !== "object")) obj = {};
- if (key) obj[key] = v;
- return obj;
- },
- getSectionDataByScript: function (code, v, obj) {
- var key = this.Macro.exec(code, this);
- if (!obj || (typeOf(obj) !== "object")) obj = {};
- if (key) obj[key] = v;
- return obj;
- },
- setSection: function (json, data) {
- var obj = data[json.name];
- switch (json.sectionBy) {
- case "person":
- return this.setSectionByPerson(obj, json.name);
- case "unit":
- return this.setSectionByUnit(obj, json.name);
- case "activity":
- return this.setSectionByPActivity(obj, json.name);
- case "splitValue":
- return this.setSectionBySplitValue(obj, json.name);
- case "script":
- return this.setSectionByScript(json.sectionByScript.code, obj, json.name);
- default:
- return v;
- }
- },
- setSectionByPerson: function (obj, name) {
- var key = layout.desktop.session.user.id;
- if (!obj || (typeOf(obj) !== "object")) obj = {};
- //obj[key] = v;
- this.sectionListObj[name] = key;
- return obj;
- },
- setSectionByUnit: function (obj, name) {
- var key = (this.businessData.task) ? this.businessData.task.unit : "";
- if (!obj || (typeOf(obj) !== "object")) obj = {};
- this.sectionListObj[name] = key || "";
- //if (key) obj[key] = v;
- return obj;
- },
- setSectionByPActivity: function (obj, name) {
- var key = (this.businessData.work) ? this.businessData.work.activity : "";
- if (!obj || (typeOf(obj) !== "object")) obj = {};
- this.sectionListObj[name] = key || "";
- //if (key) obj[key] = v;
- return obj;
- },
- setSectionBySplitValue: function (obj, name) {
- var key = (this.businessData.work) ? this.businessData.work.splitValue : "";
- if (!obj || (typeOf(obj) !== "object")) obj = {};
- this.sectionListObj[name] = key || "";
- //if (key) obj[key] = v;
- return obj;
- },
- setSectionByScript: function (code, obj, name) {
- var key = this.Macro.exec(code, this);
- if (!obj || (typeOf(obj) !== "object")) obj = {};
- this.sectionListObj[name] = key || "";
- //if (key) obj[key] = v;
- return obj;
- },
- saveWork: function (callback, silent) {
- if (this.businessData.control["allowSave"]) {
- this.fireEvent("beforeSave");
- if (this.app && this.app.fireEvent) this.app.fireEvent("beforeSave");
- this.saveFormData(function (json) {
- if (this.app && !silent) this.app.notice(MWF.xApplication.process.Xform.LP.dataSaved, "success");
- if (callback && typeOf(callback) === "function") callback();
- this.fireEvent("afterSave");
- if (this.app && this.app.fireEvent) this.app.fireEvent("afterSave");
- }.bind(this));
- } else {
- MWF.xDesktop.notice("error", { x: "right", y: "top" }, "Permission Denied");
- //if (failure) failure(null, "Permission Denied", "");
- }
- },
- getSectionList: function () {
- return Object.keys(this.sectionListObj).map(function (p) {
- var o = { "path": p };
- if (this.sectionListObj[p]) o.key = this.sectionListObj[p];
- return o;
- }.bind(this));
- },
- setModifedDataByPathList: function (data, pathList) {
- var d = this.modifedData;
- for (var i = 0; i < pathList.length; i++) {
- if (i === pathList.length - 1) {
- d[pathList[i]] = data;
- } else {
- if (typeOf(d[pathList[i]]) === "object" || typeOf(d[pathList[i]]) === "array") {
- d = d[pathList[i]]
- } else if (typeOf(pathList[i]) === "number") {
- d = d[pathList[i]] = [];
- } else {
- d = d[pathList[i]] = {};
- }
- }
- }
- },
- getOrigianlPathData: function (pathList) {
- var d = this.businessData.originalData;
- for (var i = 0; i < pathList.length; i++) {
- if (i === pathList.length - 1) {
- d = d[pathList[i]];
- } else {
- if (typeOf(d[pathList[i]]) === "object" || typeOf(d[pathList[i]]) === "array") {
- d = d[pathList[i]];
- } else {
- return null;
- }
- }
- }
- return d;
- },
- setModifedData: function (data, pathList) {
- pathList = pathList || [];
- if (typeOf(data) === "object") {
- for (var key in data) {
- var pList = Array.clone(pathList);
- pList.push(key);
- this.setModifedData(data[key], pList);
- }
- } else if (typeOf(data) === "array") {
- var od = this.getOrigianlPathData(pathList);
- if (typeOf(od) !== "array" || od.length !== data.length || JSON.stringify(od) !== JSON.stringify(data)) {
- this.setModifedDataByPathList(data, pathList);
- }
- //}else{
- // for( var i=0; i<data.length; i++ ){
- // this.setModifedData(data[i], pathList.push(i));
- // }
- //}
- } else if (typeOf(data) !== "null") {
- var od = this.getOrigianlPathData(pathList);
- if (typeOf(data) !== typeOf(od) || data !== od) {
- this.setModifedDataByPathList(data, pathList);
- }
- }
- },
- saveFormData: function (callback, failure, history, data, issubmit) {
- if (this.officeList) {
- this.officeList.each(function (module) {
- module.save(history);
- });
- }
- var data = data || this.getData(issubmit);
- //this.setProcessorSectionOrgList(data);
- //
- //var sectionList = this.getSectionList();
- //var formData = {
- // "data": data,
- // "sectionList": sectionList
- //};
- debugger;
- this.modifedData = {};
- this.setModifedData(data);
- this.workAction.saveData(callback || function () { }, failure, this.businessData.work.id, this.modifedData);
- this.businessData.originalData = null;
- this.businessData.originalData = Object.clone(data);
- //this.workAction.saveSectionData(callback, failure, this.businessData.work.id, formData);
- },
- setProcessorSectionOrgList: function (data) {
- if (!this.routeDataList) this.getRouteDataList();
- var routeList = this.routeDataList;
- //var processorSectionOrg = [];
- for (var i = 0; i < routeList.length; i++) {
- (routeList[i].selectConfigList || []).each(function (config, j) {
- if (config.section == "yes") {
- this.setSection(config, data);
- }
- }.bind(this))
- }
- },
- getRouteDataList: function () {
- if (!this.routeDataList) {
- o2.Actions.get("x_processplatform_assemble_surface").listRoute({ "valueList": this.businessData.task.routeList }, function (json) {
- json.data.each(function (d) {
- d.selectConfigList = JSON.parse(d.selectConfig || "[]");
- }.bind(this));
- this.routeDataList = json.data;
- }.bind(this), null, false);
- }
- return this.routeDataList;
- },
- beforeCloseWork: function () {
- this.fireEvent("beforeClose");
- if (this.app && this.app.fireEvent) {
- this.app.fireEvent("beforeClose");
- // this.fireEvent("afterClose");
- }
- if (!this.options.readonly) {
- if (this.businessData.work){
- if (this.app.inBrowser && navigator.sendBeacon){
- debugger;
- var obj = this.workAction.action.actions["checkDraft"];
- var url = this.workAction.action.address+obj.uri;
- url = url.replace("{id}", this.businessData.work.id);
- navigator.sendBeacon(url);
- }else{
- this.workAction.checkDraft(this.businessData.work.id, function () {
- if (layout.desktop.apps) {
- if (layout.desktop.apps["TaskCenter"] && layout.desktop.apps["TaskCenter"].window) {
- layout.desktop.apps["TaskCenter"].content.unmask();
- layout.desktop.apps["TaskCenter"].refreshAll();
- }
- }
- }.bind(this), null, false);
- }
- }
- } else {
- this.app.refreshTaskCenter();
- }
- },
- closeWork: function () {
- // this.fireEvent("beforeClose");
- // if (this.app && this.app.fireEvent){
- // this.app.fireEvent("beforeClose");
- // // this.fireEvent("afterClose");
- // }
- // debugger;
- // if (!this.options.readonly)
- // if (this.businessData.work) this.workAction.checkDraft(this.businessData.work.id);
- this.app.close();
- },
- getMessageContent: function (data, maxLength, titlelp) {
- var content = "";
- if (data.completed) {
- content += MWF.xApplication.process.Xform.LP.workCompleted;
- } else {
- if (data.properties.nextManualList && data.properties.nextManualList.length) {
- var activityUsers = [];
- data.properties.nextManualList.each(function (a) {
- var ids = [];
- a.taskIdentityList.each(function (i) {
- ids.push(o2.name.cn(i))
- });
- 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>";
- activityUsers.push(t);
- });
- content += activityUsers.join("<br>");
- } else {
- if (data.arrivedActivityName) {
- content += MWF.xApplication.process.Xform.LP.arrivedActivity + data.arrivedActivityName;
- } else {
- content += MWF.xApplication.process.Xform.LP.taskCompleted;
- }
- }
- }
- var title = this.businessData.data.title || this.businessData.data.subject || this.businessData.work.title
- if (maxLength && title.length > maxLength) {
- title = title.substr(0, maxLength) + "..."
- }
- return "<div>" + (titlelp || MWF.xApplication.process.Xform.LP.taskProcessedMessage) + "“" + title + "”</div>" + content;
- },
- addMessage: function (data, notShowBrowserDkg) {
- if (layout.desktop.message) {
- var msg = {
- "subject": MWF.xApplication.process.Xform.LP.taskProcessed,
- "content": this.getMessageContent(data, 0, MWF.xApplication.process.Xform.LP.taskProcessedMessage)
- };
- layout.desktop.message.addTooltip(msg);
- return layout.desktop.message.addMessage(msg);
- } else {
- if (this.app.inBrowser && !notShowBrowserDkg) {
- this.inBrowserDkg(this.getMessageContent(data, 0, MWF.xApplication.process.Xform.LP.taskProcessedMessage));
- }
- }
- },
- formValidation: function (routeName, opinion, medias) {
- if (this.options.readonly) return true;
- this.Macro.environment.form.currentRouteName = routeName;
- this.Macro.environment.form.opinion = opinion;
- this.Macro.environment.form.medias = medias;
- var flag = true;
- //flag = this.validation();
- Object.each(this.forms, function (field, key) {
- field.validationMode();
- if (!field.validation(routeName, opinion, medias)) flag = false;
- }.bind(this));
- return flag;
- },
- validation: function (routeName, opinion, processor, medias) {
- this.Macro.environment.form.currentRouteName = routeName;
- this.Macro.environment.form.opinion = opinion;
- this.Macro.environment.form.medias = medias;
- var routeFlag = this.validationRoute(processor);
- var opinionFlag = this.validationOpinion(processor);
- return routeFlag && opinionFlag;
- },
- validationRoute: function (processor) {
- if (!this.json.validationRoute) return true;
- if (!this.json.validationRoute.code) return true;
- var flag = this.Macro.exec(this.json.validationRoute.code, this);
- if (!flag) flag = MWF.xApplication.process.Xform.LP.notValidation;
- if (flag.toString() != "true") {
- this.notValidationRouteMode(flag, processor);
- return false;
- }
- return true;
- },
- validationOpinion: function (processor) {
- if (!this.json.validationOpinion) return true;
- if (!this.json.validationOpinion.code) return true;
- var flag = this.Macro.exec(this.json.validationOpinion.code, this);
- if (!flag) flag = MWF.xApplication.process.Xform.LP.notValidation;
- if (flag.toString() != "true") {
- this.notValidationOpinionMode(flag, processor);
- return false;
- }
- return true;
- },
- formCustomValidation: function () {
- if (!this.json.validationFormCustom) return true;
- if (!this.json.validationFormCustom.code) return true;
- var flag = this.Macro.exec(this.json.validationFormCustom.code, this);
- if (!flag) flag = MWF.xApplication.process.Xform.LP.notValidation;
- if (flag.toString() != "true") {
- this.notValidationOpinionMode(flag);
- return false;
- }
- return true;
- },
- notValidationRouteMode: function (flag, processor) {
- if (processor) processor.routeSelectorArea.setStyle("background-color", "#ffe9e9");
- MWF.xDesktop.notice(
- "error",
- { "x": "center", "y": "top" },
- flag,
- (processor) ? processor.routeSelectorArea : this.app.content,
- null, //{"x": 0, "y": 30}
- { "closeOnBoxClick": true, "closeOnBodyClick": true, "fixed": true, "delayClose": 6000 }
- );
- //new mBox.Notice({
- // type: "error",
- // position: {"x": "center", "y": "top"},
- // move: false,
- // target: (processor) ? processor.routeSelectorArea : this.app.content,
- // delayClose: 6000,
- // content: flag
- //});
- },
- notValidationOpinionMode: function (flag, processor) {
- if (processor) processor.inputTextarea.setStyle("background-color", "#ffe9e9");
- MWF.xDesktop.notice(
- "error",
- (processor) ? { "x": "center", "y": "top" } : { "x": "right", "y": "top" },
- flag,
- (processor) ? processor.inputTextarea : this.app.content,
- null, //{"x": 0, "y": 30}
- { "closeOnBoxClick": true, "closeOnBodyClick": true, "fixed": true, "delayClose": 6000 }
- );
- //new mBox.Notice({
- // type: "error",
- // position: (processor) ? {"x": "center", "y": "top"} : {"x": "right", "y": "top"},
- // move: false,
- // target: (processor) ? processor.inputTextarea : this.app.content,
- // delayClose: 6000,
- // content: flag
- //});
- },
- //fireRtEvent: function(type, args, delay){
- // type = removeOn(type);
- // var events = this.$events[type];
- // if (!events) return this;
- // if (!events.length) return this;
- // var event = events[events.length-1];
- // args = Array.from(args);
- // if (delay) fn.delay(delay, this, args);
- // else return fn.apply(this, args);
- // return this;
- //},
- getIgnoreImpowerIdentity: function (processorOrgList) {
- debugger;
- var list = [];
- var check = function (org, isProcessOrg) {
- var moduleData = isProcessOrg ? org.getValue() : org.getData();
- var flag = false;
- if (typeOf(moduleData) === "array" && moduleData.length) {
- moduleData.each(function (d) {
- if (d.ignoreEmpower) {
- list.push(d.distinguishedName || d.unique || d.id);
- d.ignoredEmpower = true;
- delete d.ignoreEmpower;
- flag = true;
- }
- })
- }
- if (flag) org.setData(moduleData);
- }
- var modules = this.modules;
- for (var i = 0; i < modules.length; i++) {
- var module = modules[i];
- var moduleName = module.json.moduleName;
- if (!moduleName) moduleName = typeOf(module.json.type) === "string" ? module.json.type.toLowerCase() : "";
- if (moduleName === "org") {
- check(module)
- }
- }
- if (processorOrgList && processorOrgList.length > 0) {
- for (var i = 0; i < processorOrgList.length; i++) {
- check(processorOrgList[i], true)
- }
- }
- return list;
- },
- submitWork: function (routeName, opinion, medias, callback, processor, data, appendTaskIdentityList, processorOrgList, callbackBeforeSave) {
- if (!this.businessData.control["allowProcessing"]) {
- MWF.xDesktop.notice("error", { x: "right", y: "top" }, "Permission Denied");
- this.app.content.unmask();
- if (processor && processor.node) processor.node.unmask();
- return false;
- }
- debugger;
- if (!this.formValidation(routeName, opinion, medias)) {
- this.app.content.unmask();
- //this.app.notice("", "error", target, where, offset);
- if (callback) callback();
- return false;
- }
- if (!this.validation(routeName, opinion, processor, medias)) {
- //this.app.content.unmask();
- if (processor && processor.node) processor.node.unmask();
- //if (callback) callback();
- return false;
- }
- if (!opinion) {
- var idx = this.businessData.task.routeNameList.indexOf(routeName);
- if (this.businessData.task.routeOpinionList[idx]) {
- opinion = this.businessData.task.routeOpinionList[idx];
- }
- // else{
- // opinion = routeName;
- // }
- }
- this.fireEvent("beforeProcess");
- if (this.app && this.app.fireEvent) this.app.fireEvent("beforeProcess");
- //处理忽略授权
- var ignoreEmpowerIdentityList = this.getIgnoreImpowerIdentity(processorOrgList);
- var _self = this;
- MWF.require("MWF.widget.Mask", function () {
- this.mask = new MWF.widget.Mask({ "style": "desktop", "zIndex": 50000 });
- this.mask.loadNode(this.app.content);
- if (callbackBeforeSave) callbackBeforeSave();
- this.fireEvent("beforeSave");
- if (this.app && this.app.fireEvent) this.app.fireEvent("beforeSave");
- this.saveFormData(function (json) {
- this.businessData.task.routeName = routeName;
- this.businessData.task.opinion = opinion;
- var mediaIds = [];
- if (medias && medias.length) {
- medias.each(function (file) {
- var formData = new FormData();
- formData.append("file", file);
- formData.append("site", "$mediaOpinion");
- this.workAction.uploadAttachment(this.businessData.work.id, formData, file, function (json) {
- mediaIds.push(json.data.id);
- }.bind(this), null, false);
- }.bind(this));
- }
- if (mediaIds.length) this.businessData.task.mediaOpinion = mediaIds.join(",");
- if (appendTaskIdentityList && appendTaskIdentityList.length) {
- var list = [];
- appendTaskIdentityList.each(function (identity) {
- if (typeOf(identity) === "object") {
- list.push(identity.distinguishedName || identity.unique || identity.id)
- } else {
- list.push(identity);
- }
- }.bind(this));
- this.businessData.task.appendTaskIdentityList = list;
- }
- this.businessData.task.ignoreEmpowerIdentityList = ignoreEmpowerIdentityList;
- this.fireEvent("afterSave");
- if (this.app && this.app.fireEvent) this.app.fireEvent("afterSave");
- this.workAction.processTask(function (json) {
- //if (processor) processor.destroy();
- //if (processNode) processNode.destroy();
- if (callback) callback(json);
- this.taskList = json.data;
- this.fireEvent("afterProcess");
- if (this.app && this.app.fireEvent) this.app.fireEvent("afterProcess");
- // this.notice(MWF.xApplication.process.Xform.LP.taskProcessed, "success");
- this.addMessage(json.data, true);
- if (this.app.taskObject) this.app.taskObject.destroy();
- if (this.closeImmediatelyOnProcess) {
- this.app.close();
- } else if (layout.mobile) {
- //移动端页面关闭
- _self.finishOnMobile()
- } else {
- if (this.app.inBrowser) {
- if (this.mask) this.mask.hide();
- if (this.json.isPrompt !== false) {
- this.showSubmitedDialog(json.data);
- } else {
- this.app.close();
- }
- //}
- } else {
- this.app.close();
- }
- }
- //window.setTimeout(function(){this.app.close();}.bind(this), 2000);
- }.bind(this), null, this.businessData.task.id, this.businessData.task);
- }.bind(this), null, true, data, true);
- }.bind(this));
- },
- showSubmitedDialog: function (data) {
- var content = this.getMessageContent(data, this.json.submitedDlgStyle ? this.json.submitedDlgStyle.maxTitleLength : 60);
- //if( this.json.submitedDlgUseNotice ){
- // MWF.xDesktop.notice("success", {x: "right", y:"top"}, content);
- // if (this.json.isPrompt!==false){
- // if (this.json.promptCloseTime!=0){
- // var t = this.json.promptCloseTime || 2;
- // t = t.toInt()*1000;
- // var _work = this;
- // window.setTimeout(function(){ _work.app.close();}, t);
- // }
- // }else{
- // this.app.close();
- // }
- //}else{
- var div = new Element("div", { "styles": { "margin": "10px 10px 0px 10px", "padding": "5px", "overflow": "hidden", "width": "270px" } }).inject(this.app.content);
- div.set("html", content);
- var timerNode = new Element("div", { "styles": { "margin-top": "5px" } }).inject(div);
- var options = {
- "content": div,
- "isTitle": false,
- "width": 350,
- "height": 180,
- "buttonList": [
- {
- "text": this.app.lp.closePage,
- "action": function () { dlg.close(); this.app.close(); }.bind(this)
- }
- ]
- };
- if (this.json.submitedDlgStyle) {
- options = Object.merge(options, this.json.submitedDlgStyle);
- if (this.json.submitedDlgStyle.contentStyle) {
- div.setStyles(this.json.submitedDlgStyle.contentStyle);
- delete options.contentStyle;
- }
- }
- var size = this.app.content.getSize();
- switch (options.promptPosition || this.json.promptPosition || "righttop") {
- case "lefttop":
- options.top = 10;
- options.left = 10;
- options.fromTop = 10;
- options.fromLeft = 10;
- break;
- case "righttop":
- options.top = 10;
- options.left = size.x - options.width - 10;
- options.fromTop = 10;
- options.fromLeft = size.x - 10;
- break;
- case "leftbottom":
- options.top = size.y - options.height - 10;
- options.left = 10;
- options.fromTop = size.y - 10;
- options.fromLeft = 10;
- break;
- case "rightbottom":
- options.top = size.y - options.height - 10;
- options.left = size.x - options.width - 10;
- options.fromTop = size.y - 10;
- options.fromLeft = size.x - 10;
- break;
- default:
- delete options.top;
- delete options.left;
- delete options.fromTop;
- delete options.fromLeft;
- }
- var _work = this;
- options.onPostLoad = function () {
- var dialog = this;
- dialog.node.setStyle("display", "block");
- var nodeSize = div.getSize();
- dialog.content.setStyles({
- //"width" : nodeSize.x,
- "height": nodeSize.y
- });
- dialog.setContentSize();
- if ((options.promptCloseTime || _work.json.promptCloseTime) != 0) {
- var t = options.promptCloseTime || _work.json.promptCloseTime || 2;
- t = t.toInt() * 1000;
- if (options.isCountDown) {
- timerNode.set("text", _work.app.lp.closePageCountDownText.replace("{second}", Math.ceil(t / 1000).toString()));
- t = t - 1000;
- var countDown = function () {
- if (t > 0) {
- timerNode.set("text", _work.app.lp.closePageCountDownText.replace("{second}", Math.ceil(t / 1000).toString()));
- t = t - 1000;
- window.setTimeout(countDown, 1000);
- } else {
- dlg.close(); _work.app.close();
- }
- };
- window.setTimeout(countDown, 1000);
- } else {
- window.setTimeout(function () { dlg.close(); _work.app.close(); }, t);
- }
- }
- };
- var dlg = o2.DL.open(options);
- },
- processWork: function () {
- if (this.json.mode == "Mobile") {
- this.processWork_mobile();
- } else {
- this.fireEvent("beforeProcessWork");
- if (this.app && this.app.fireEvent) this.app.fireEvent("beforeProcessWork");
- if (!this.formCustomValidation("", "")) {
- this.app.content.unmask();
- // if (callback) callback();
- return false;
- }
- // MWF.require("MWF.widget.Mask", function() {
- // this.mask = new MWF.widget.Mask({"style": "desktop", "zIndex": 50000});
- // this.mask.loadNode(this.app.content);
- if (!this.formValidation("", "")) {
- this.app.content.unmask();
- // if (callback) callback();
- return false;
- }
- var setSize = function (notRecenter) {
- var dlg = this;
- if (!dlg || !dlg.node) return;
- dlg.node.setStyle("display", "block");
- var size = processNode.getSize();
- dlg.content.setStyles({
- "height": size.y,
- "width": size.x
- });
- var s = dlg.setContentSize();
- if (dlg.content.getStyle("overflow-y") === "auto" && dlg.content.getStyle("overflow-x") !== "auto") {
- dlg.node.setStyle("width", dlg.node.getStyle("width").toInt() + 20 + "px");
- dlg.content.setStyle("width", dlg.content.getStyle("width").toInt() + 20 + "px");
- }
- if (!notRecenter) dlg.reCenter();
- }
- //var node = new Element("div", {"styles": this.css.rollbackAreaNode});
- var processNode = new Element("div", { "styles": this.app.css.processNode_Area }).inject(this.app.content);
- this.setProcessNode(processNode, "process", function () {
- this.processDlg = o2.DL.open({
- "title": this.app.lp.process,
- "style": this.json.dialogStyle || "user",
- "isResize": false,
- "content": processNode,
- "positionHeight": 800,
- "maxHeight": 800,
- "maxHeightPercent": "98%",
- "minTop": 5,
- "width": "auto", //processNode.retrieve("width") || 1000, //600,
- "height": "auto", //processNode.retrieve("height") || 401,
- "buttonList": [
- {
- "type": "ok",
- "text": MWF.LP.process.button.ok,
- "action": function (d, e) {
- if (this.processor) this.processor.okButton.click();
- }.bind(this)
- },
- {
- "type": "cancel",
- "text": MWF.LP.process.button.cancel,
- "action": function () { this.processDlg.close(); }.bind(this)
- }
- ],
- "onPostLoad": function () {
- setSize.call(this)
- }
- });
- }.bind(this), function () {
- setSize.call(this.processDlg, true)
- }.bind(this));
- }
- },
- processWork_mobile: function () {
- if (this.app.inBrowser) {
- this.app.content.setStyle("height", document.body.getSize().y);
- }
- this.fireEvent("beforeProcessWork");
- if (this.app && this.app.fireEvent) this.app.fireEvent("beforeProcessWork");
- var position = this.app.content.getPosition(this.app.content.getOffsetParent());
- if (this.json.mode != "Mobile") {
- this.app.content.mask({
- "destroyOnHide": true,
- "style": this.app.css.maskNode,
- "useIframeShim": true,
- "iframeShimOptions": { "browsers": true },
- "onShow": function () {
- this.shim.shim.setStyles({
- "opacity": 0,
- "top": "" + position.y + "px",
- "left": "" + position.x + "px"
- });
- }
- });
- }
- if (!this.formCustomValidation("", "")) {
- this.app.content.unmask();
- // if (callback) callback();
- return false;
- }
- // MWF.require("MWF.widget.Mask", function() {
- // this.mask = new MWF.widget.Mask({"style": "desktop", "zIndex": 50000});
- // this.mask.loadNode(this.app.content);
- if (!this.formValidation("", "")) {
- this.app.content.unmask();
- // if (callback) callback();
- return false;
- }
- var processNode = this.createProcessNode();
- //this.setProcessNode(processNode);
- this.setProcessNode(processNode);
- this.showProcessNode(processNode);
- processNode.setStyle("overflow", "auto");
- //}.bind(this));
- },
- createProcessNode: function () {
- var fromCss = this.app.css.processNode_from;
- var css = this.app.css.processNode;
- if (layout.mobile) {
- fromCss = this.app.css.processNodeMobile_from;
- css = this.app.css.processNodeMobile;
- // var contentSize = this.app.content.getSize();
- fromCss.width = "100%";
- css.width = "100%";
- fromCss.height = "100%";
- css.height = "100%";
- }
- if (this.json.mode == "Mobile") {
- var processNode = new Element("div", { "styles": fromCss }).inject(document.body);
- } else {
- var processNode = new Element("div", { "styles": fromCss }).inject(this.app.content);
- }
- processNode.position({
- relativeTo: this.app.content,
- position: "topcenter",
- edge: "topcenter"
- });
- return processNode;
- },
- getOpinion: function () {
- var opinion = "";
- var medias = [];
- Object.each(this.forms, function (m, id) {
- if (m.json.type === "Opinion") if (this.businessData.data[id]) opinion += " " + m._getBusinessSectionDataByPerson();
- if (m.handwritingFile) if (m.handwritingFile[layout.session.user.distinguishedName]) medias.push(m.handwritingFile[layout.session.user.distinguishedName]);
- if (m.soundFile) if (m.soundFile[layout.session.user.distinguishedName]) medias.push(m.soundFile[layout.session.user.distinguishedName]);
- if (m.videoFile) if (m.videoFile[layout.session.user.distinguishedName]) medias.push(m.videoFile[layout.session.user.distinguishedName]);
- }.bind(this));
- return { "opinion": opinion.trim(), "medias": medias };
- },
- setProcessNode: function (processNode, style, postLoadFun, resizeFun) {
- var _self = this;
- MWF.xDesktop.requireApp("process.Work", "Processor", function () {
- var op = this.getOpinion();
- var mds = op.medias;
- var innerNode;
- if (layout.mobile) {
- innerNode = new Element("div").inject(processNode);
- }
- this.processor = new MWF.xApplication.process.Work.Processor(innerNode || processNode, this.businessData.task, {
- "style": (layout.mobile) ? "mobile" : (style || "default"),
- "opinion": op.opinion,
- "tabletWidth": this.json.tabletWidth || 0,
- "tabletHeight": this.json.tabletHeight || 0,
- "onPostLoad": function () {
- if (postLoadFun) postLoadFun();
- }.bind(this),
- "onResize": function () {
- if (resizeFun) resizeFun();
- },
- "onCancel": function () {
- processNode.destroy();
- _self.app.content.unmask();
- delete this;
- },
- "onSubmit": function (routeName, opinion, medias, appendTaskIdentityList, processorOrgList, callbackBeforeSave) {
- if (!medias || !medias.length) {
- medias = mds;
- } else {
- medias = medias.concat(mds)
- }
- _self.submitWork(routeName, opinion, medias, function () {
- this.destroy();
- processNode.destroy();
- if (_self.processDlg) _self.processDlg.close();
- delete this;
- }.bind(this), this, null, appendTaskIdentityList, processorOrgList, callbackBeforeSave);
- }
- }, this);
- }.bind(this));
- },
- showProcessNode: function (processNode) {
- if (layout.mobile) {
- processNode.setStyles(this.app.css.processNodeMobile)
- } else {
- var size = this.app.content.getSize();
- var nodeSize = processNode.getSize();
- var top = size.y / 2 - nodeSize.y / 2 - 20;
- var left = size.x / 2 - nodeSize.x / 2;
- if (top < 0) top = 0;
- this.app.css.processNode.top = "" + top + "px";
- this.app.css.processNode.left = "" + left + "px";
- var morph = new Fx.Morph(processNode, {
- "duration": 300,
- "transition": Fx.Transitions.Expo.easeOut
- });
- morph.start(this.app.css.processNode);
- }
- },
- confirm: function (type, e, title, text, width, height, ok, cancel, callback, mask, style) {
- MWF.require("MWF.xDesktop.Dialog", function () {
- var size = this.container.getSize();
- var x = 0;
- var y = 0;
- if (typeOf(e) === "element") {
- var position = e.getPosition(this.app.content);
- x = position.x;
- y = position.y;
- } else {
- if (Browser.name == "firefox") {
- x = parseFloat(e.event.clientX || e.event.x);
- y = parseFloat(e.event.clientY || e.event.y);
- } else {
- x = parseFloat(e.event.x);
- y = parseFloat(e.event.y);
- }
- if (e.target) {
- var position = e.target.getPosition(this.app.content);
- //var position = e.target.getPosition();
- x = position.x;
- y = position.y;
- }
- }
- // if (Browser.Platform.ios){
- // $("textdiv").set("text", "$(document.body).getScroll().y: "+$(document.body).getScroll().y);
- // y = y-$(document.body).getScroll().y;
- // }
- if (x + parseFloat(width) > size.x) {
- x = x - parseFloat(width);
- }
- if (x < 0) x = 10;
- if (y + parseFloat(height) > size.y) {
- y = y - parseFloat(height);
- }
- if (y < 0) y = 10;
- //var x = parseFloat((Browser.name==="firefox") ? e.event.clientX : e.event.x);
- //var y = parseFloat((Browser.name==="firefox") ? e.event.clientY : e.event.y);
- // if (x+parseFloat(width)>size.x){
- // x = x-parseFloat(width);
- // }
- if (x < 0) x = 20;
- var dlg = new MWF.xDesktop.Dialog({
- "title": title,
- "style": style || "o2",
- "top": y,
- "left": x - 20,
- "fromTop": e.event.y,
- "fromLeft": (Browser.name === "firefox") ? e.event.clientX - 20 : e.event.x - 20,
- "width": width,
- "height": height,
- "text": text,
- "container": this.app.content,
- "maskNode": mask || this.app.content,
- "buttonList": [
- {
- "type": "ok",
- "text": MWF.LP.process.button.ok,
- "action": ok
- },
- {
- "type": "cancel",
- "text": MWF.LP.process.button.cancel,
- "action": cancel
- }
- ]
- });
- switch (type.toLowerCase()) {
- case "success":
- if (this.json.confirmIcon && this.json.confirmIcon.success) {
- dlg.content.setStyle("background-image", "url(" + this.json.confirmIcon.success + ")");
- } else {
- dlg.content.setStyle("background-image", "url(data:image/png;base64,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)");
- }
- break;
- case "error":
- if (this.json.confirmIcon && this.json.confirmIcon.error) {
- dlg.content.setStyle("background-image", "url(" + this.json.confirmIcon.error + ")");
- } else {
- dlg.content.setStyle("background-image", "url(data:image/png;base64,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)");
- }
- break;
- case "info":
- if (this.json.confirmIcon && this.json.confirmIcon.info) {
- dlg.content.setStyle("background-image", "url(" + this.json.confirmIcon.info + ")");
- } else {
- dlg.content.setStyle("background-image", "url(data:image/png;base64,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)");
- }
- break;
- case "warn":
- if (this.json.confirmIcon && this.json.confirmIcon.warn) {
- dlg.content.setStyle("background-image", "url(" + this.json.confirmIcon.warn + ")");
- } else {
- dlg.content.setStyle("background-image", "url(data:image/png;base64,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)");
- }
- break;
- default:
- if (this.json.confirmIcon && this.json.confirmIcon.warn) {
- dlg.content.setStyle("background-image", "url(" + this.json.confirmIcon.warn + ")");
- }
- break;
- }
- dlg.show();
- }.bind(this));
- },
- alert: function (type, title, text, width, height) {
- this.app.alert(type, "center", title, text, width, height);
- },
- notice: function (content, type, target, where, offset, option) {
- if (!where) where = { "x": "right", "y": "top" };
- //if (!target) target = this.node;
- if (!type) type = "ok";
- var noticeTarget = target || this.app.window.content;
- var off = offset;
- if (!off) {
- off = {
- x: 10,
- y: where.y.toString().toLowerCase() == "bottom" ? 10 : 10
- };
- }
- var options = {
- type: type,
- position: where,
- move: false,
- target: noticeTarget,
- delayClose: (type === "error") ? 10000 : 5000,
- //delayClose: 20000000,
- offset: off,
- content: content
- }
- if (this.json.noticeStyle) {
- options = Object.merge(options, this.json.noticeStyle);
- }
- if (this.json["notice" + type.capitalize() + "Style"]) {
- options = Object.merge(options, this.json["notice" + type.capitalize() + "Style"]);
- }
- if (option && typeOf(option) === "object") {
- options = Object.merge(options, option);
- }
- new mBox.Notice(options);
- },
- addSplit: function () {
- if (!this.businessData.control["allowAddSplit"]) {
- MWF.xDesktop.notice("error", { x: "right", y: "top" }, "Permission Denied");
- return false;
- }
- MWF.require("MWF.xDesktop.Dialog", function () {
- var width = 600;
- var height = 230;
- var p = MWF.getCenterPosition(this.app.content, width, height);
- var _self = this;
- var dlg = new MWF.xDesktop.Dialog({
- "title": this.app.lp.addSplit,
- //"style": "work","
- "style": this.json.dialogStyle || "user",
- "top": p.y - 100,
- "left": p.x,
- "fromTop": p.y - 100,
- "fromLeft": p.x,
- "width": width,
- "height": height,
- "url": this.app.path + "split.html",
- "container": this.app.content,
- "isClose": true,
- "buttonList": [
- {
- "type": "ok",
- "text": MWF.LP.process.button.ok,
- "action": function (d, e) {
- //this.doResetWork(dlg);
- var input = dlg.content.getElement("input");
- var checks = dlg.content.getElements(".o2_addSplit_radio");
- var value = input.get("value");
- var trimExist = true;
- if (checks[1].checked) trimExist = false;
- _self.doAddSplit(dlg, value, trimExist);
- }.bind(this)
- },
- {
- "type": "cancel",
- "text": MWF.LP.process.button.cancel,
- "action": function () { dlg.close(); }
- }
- ],
- "onPostShow": function () {
- //var okButton = dlg.content.getElement(".o2_addSplit_okButton");
- //var cancelButton = dlg.content.getElement(".o2_addSplit_cancelButton");
- var selectButton = dlg.content.getElement(".o2_addSplit_selector");
- var input = dlg.content.getElement("input");
- var checks = dlg.content.getElements(".o2_addSplit_radio");
- //okButton.addEvent("click", function(){
- // var value = input.get("value");
- // var trimExist = true;
- // if (checks[1].checked) trimExist = false;
- // _self.doAddSplit(this, value, trimExist);
- //}.bind(this));
- //cancelButton.addEvent("click", function(){
- // this.close();
- //}.bind(this));
- selectButton.addEvent("click", function () {
- var value = input.get("value");
- MWF.xDesktop.requireApp("Selector", "package", function () {
- new o2.O2Selector(_self.app.content, {
- "type": "",
- "count": 0,
- "values": (value) ? value.split(o2.splitStr) : [],
- "types": ["unit", "identity", "group", "role"],
- "onComplete": function (items) {
- var v = [];
- items.each(function (item) {
- v.push(item.data.distinguishedName);
- });
- input.set("value", v.join(", "));
- }
- });
- }.bind(this));
- //_self.selectSplitUnit(this);
- }.bind(this));
- }
- });
- dlg.show();
- }.bind(this));
- },
- doAddSplit: function (dlg, splitValues, trimExist) {
- if (!splitValues) {
- this.app.notice(MWF.xApplication.process.Xform.LP.inputSplitValue, "error", dlg.node);
- return false;
- }
- MWF.require("MWF.widget.Mask", function () {
- var splitValue = splitValues.split(o2.splitStr);
- this.mask = new MWF.widget.Mask({ "style": "desktop", "zIndex": 50000 });
- this.mask.loadNode(this.app.content);
- this.fireEvent("beforeAddSplit");
- if (this.app && this.app.fireEvent) this.app.fireEvent("beforeAddSplit");
- this.addSplitWork(splitValue, trimExist, function (json) {
- this.fireEvent("afterAddSplit");
- if (this.app && this.app.fireEvent) this.app.fireEvent("afterAddSplit");
- this.addAddSplitMessage(json.data);
- // this.workAction.loadWork(function(workJson){
- // this.fireEvent("afterAddSplit");
- // if (this.app && this.app.fireEvent) this.app.fireEvent("afterAddSplit");
- // this.addAddSplitMessage(workJson.data);
- // }.bind(this), null, this.businessData.work.id);
- dlg.close();
- if (this.mask) { this.mask.hide(); this.mask = null; }
- }.bind(this), function (xhr, text, error) {
- var errorText = error + ":" + text;
- if (xhr) errorText = xhr.responseText;
- this.app.notice("request json error: " + errorText, "error", dlg.node);
- if (this.mask) { this.mask.hide(); this.mask = null; }
- }.bind(this));
- }.bind(this));
- },
- addSplitWork: function (splitValue, trimExist, success, failure) {
- var data = { "splitValueList": splitValue, "trimExist": trimExist };
- if (this.options.readonly) {
- this.workAction.addSplit(
- function (json) {
- if (success) success(json);
- }.bind(this),
- function (xhr, text, error) {
- if (failure) failure(xhr, text, error);
- },
- this.businessData.work.id, data
- );
- } else {
- this.saveFormData(
- function (json) {
- this.workAction.addSplit(
- function (json) {
- if (success) success(json);
- }.bind(this),
- function (xhr, text, error) {
- if (failure) failure(xhr, text, error);
- },
- this.businessData.work.id, data
- );
- }.bind(this),
- function (xhr, text, error) {
- if (failure) failure(xhr, text, error);
- }, true, null, true
- );
- }
- },
- setRollBackChecked: function (item) {
- item.store("isSelected", true);
- item.setStyles(this.css.rollbackItemNode_current);
- item.getFirst().setStyles(this.css.rollbackItemIconNode_current);
- var node = item.getLast().getFirst();
- node.getFirst().setStyles(this.css.rollbackItemActivityNode_current);
- node.getLast().setStyles(this.css.rollbackItemTimeNode_current);
- node = item.getLast().getLast();
- node.getFirst().setStyles(this.css.rollbackItemTaskTitleNode_current);
- node.getLast().setStyles(this.css.rollbackItemTaskNode_current);
- var checkeds = item.getElements("input");
- if (checkeds) checkeds.set("checked", true);
- },
- setRollBackUnchecked: function (item) {
- item.store("isSelected", false);
- item.setStyles(this.css.rollbackItemNode);
- item.getFirst().setStyles(this.css.rollbackItemIconNode);
- var node = item.getLast().getFirst();
- node.getFirst().setStyles(this.css.rollbackItemActivityNode);
- node.getLast().setStyles(this.css.rollbackItemTimeNode);
- node = item.getLast().getLast();
- node.getFirst().setStyles(this.css.rollbackItemTaskTitleNode);
- node.getLast().setStyles(this.css.rollbackItemTaskNode);
- var checkeds = item.getElements("input");
- if (checkeds) checkeds.set("checked", false);
- },
- getRollbackLogs: function (rollbackItemNode) {
- var _self = this;
- o2.Actions.load("x_processplatform_assemble_surface").WorkLogAction.listRollbackWithWorkOrWorkCompleted(this.businessData.work.id, function (json) {
- json.data.each(function (log) {
- //if (!log.splitting && log.connected && (log.taskCompletedList.length || log.readList.length || log.readCompletedList.length)) {
- if (!log.splitting && log.connected) {
- var node = new Element("div", { "styles": this.css.rollbackItemNode }).inject(rollbackItemNode);
- node.store("log", log);
- var iconNode = new Element("div", { "styles": this.css.rollbackItemIconNode }).inject(node);
- var contentNode = new Element("div", { "styles": this.css.rollbackItemContentNode }).inject(node);
- var div = new Element("div", { "styles": { "overflow": "hidden" } }).inject(contentNode);
- var activityNode = new Element("div", { "styles": this.css.rollbackItemActivityNode, "text": log.fromActivityName }).inject(div);
- var timeNode = new Element("div", { "styles": this.css.rollbackItemTimeNode, "text": log.arrivedTime }).inject(div);
- div = new Element("div", { "styles": { "overflow": "hidden" } }).inject(contentNode);
- var taskTitleNode = new Element("div", { "styles": this.css.rollbackItemTaskTitleNode, "text": this.app.lp.taskCompletedPerson + ": " }).inject(div);
- if (log.taskCompletedList.length) {
- log.taskCompletedList.each(function (o) {
- var text = o2.name.cn(o.person) + "(" + o.completedTime + ")";
- var check = new Element("input", {
- "value": o.identity,
- "type": "checkbox",
- "styles": this.css.rollbackItemTaskCheckNode
- }).inject(div);
- check.addEvent("click", function (e) {
- e.stopPropagation();
- });
- var taskNode = new Element("div", { "styles": this.css.rollbackItemTaskNode, "text": text }).inject(div);
- }.bind(this));
- } else {
- var text = this.app.lp.systemFlow;
- var taskNode = new Element("div", { "styles": this.css.rollbackItemTaskNode, "text": text }).inject(div);
- }
- node.addEvents({
- "mouseover": function () {
- var isSelected = this.retrieve("isSelected");
- if (!isSelected) this.setStyles(_self.css.rollbackItemNode_over);
- },
- "mouseout": function () {
- var isSelected = this.retrieve("isSelected");
- if (!isSelected) this.setStyles(_self.css.rollbackItemNode)
- },
- "click": function () {
- var isSelected = this.retrieve("isSelected");
- if (isSelected) {
- _self.setRollBackUnchecked(this);
- } else {
- var items = rollbackItemNode.getChildren();
- items.each(function (item) {
- _self.setRollBackUnchecked(item);
- });
- _self.setRollBackChecked(this);
- }
- }
- });
- }
- }.bind(this));
- }.bind(this), null, false);
- },
- rollback: function () {
- if (!this.businessData.control["allowRollback"]) {
- MWF.xDesktop.notice("error", { x: "right", y: "top" }, "Permission Denied");
- return false;
- }
- var node = new Element("div", { "styles": this.css.rollbackAreaNode });
- var html = "<div style=\"line-height: 30px; height: 30px; color: #333333; overflow: hidden;float:left;\">请选择文件要回溯到的位置:</div>";
- html += "<div style=\"line-height: 30px; height: 30px; color: #333333; overflow: hidden;float:right;\"><input class='rollback_flowOption' checked type='checkbox' />并尝试继续流转</div>";
- html += "<div style=\"clear:both; max-height: 300px; margin-bottom:10px; margin-top:10px; overflow-y:auto;\"></div>";
- node.set("html", html);
- var rollbackItemNode = node.getLast();
- this.getRollbackLogs(rollbackItemNode);
- node.inject(this.app.content);
- var dlg = o2.DL.open({
- "title": this.app.lp.rollback,
- "style": this.json.dialogStyle || "user",
- "isResize": false,
- "content": node,
- "width": 600,
- "buttonList": [
- {
- "type": "ok",
- "text": MWF.LP.process.button.ok,
- "action": function (d, e) {
- this.doRollback(node, e, dlg);
- }.bind(this)
- },
- {
- "type": "cancel",
- "text": MWF.LP.process.button.cancel,
- "action": function () { dlg.close(); }
- }
- ]
- });
- },
- doRollback: function (node, e, dlg) {
- var rollbackItemNode = node.getLast();
- var items = rollbackItemNode.getChildren();
- var flowOption = (node.getElement(".rollback_flowOption").checked);
- var _self = this;
- for (var i = 0; i < items.length; i++) {
- if (items[i].retrieve("isSelected")) {
- var text = this.app.lp.rollbackConfirmContent;
- var log = items[i].retrieve("log");
- var checks = items[i].getElements("input:checked");
- var idList = [];
- checks.each(function (check) {
- var id = check.get("value");
- if (idList.indexOf(id) == -1) idList.push(id);
- });
- text = text.replace("{log}", log.fromActivityName + "(" + log.arrivedTime + ")");
- this.app.confirm("infor", e, this.app.lp.rollbackConfirmTitle, text, 450, 120, function () {
- _self.doRollbackAction(log.id, flowOption, dlg, idList);
- dlg.close();
- this.close();
- }, function () {
- this.close();
- }, null, null, this.json.confirmStyle);
- break;
- }
- }
- },
- doRollbackAction: function (log, flowOption, dlg, idList) {
- MWF.require("MWF.widget.Mask", function () {
- this.mask = new MWF.widget.Mask({ "style": "desktop", "zIndex": 50000 });
- this.mask.loadNode(this.app.content);
- this.fireEvent("beforeRollback");
- if (this.app && this.app.fireEvent) this.app.fireEvent("beforeRollback");
- this.doRollbackActionInvoke(log, flowOption, idList, function (json) {
- if (json.data.properties) {
- if (this.app && this.app.fireEvent) this.app.fireEvent("afterRollback");
- this.addRollbackMessage(json.data);
- } else {
- var id = json.data.id;
- this.workAction.listTaskByWork(function (workJson) {
- this.fireEvent("afterRollback");
- if (this.app && this.app.fireEvent) this.app.fireEvent("afterRollback");
- this.addRollbackMessage_old(workJson.data);
- //this.app.notice(MWF.xApplication.process.Xform.LP.rollbackOk+": "+MWF.name.cns(names).join(", "), "success");
- //if (!this.app.inBrowser) this.app.close();
- }.bind(this), null, id);
- }
- if (!this.app.inBrowser) this.app.close();
- if (this.mask) { this.mask.hide(); this.mask = null; }
- }.bind(this), function (xhr, text, error) {
- var errorText = error + ":" + text;
- if (xhr) errorText = xhr.responseText;
- this.app.notice("request json error: " + errorText, "error");
- if (this.mask) { this.mask.hide(); this.mask = null; }
- }.bind(this));
- }.bind(this));
- },
- doRollbackActionInvoke: function (id, flowOption, idList, success, failure) {
- if (this.businessData.work.completedTime) {
- var method = "rollbackWorkcompleted";
- o2.Actions.get("x_processplatform_assemble_surface")[method](this.businessData.work.id, { "workLog": id }, function (json) {
- if (success) success(json);
- }.bind(this), function (xhr, text, error) {
- if (failure) failure(xhr, text, error)
- }.bind(this));
- } else {
- var body = {
- "workLog": id,
- "taskCompletedIdentityList": idList,
- "processing": !!flowOption
- }
- o2.Actions.load("x_processplatform_assemble_surface").WorkAction.V2Rollback(this.businessData.work.id, body, function (json) {
- //o2.Actions.get("x_processplatform_assemble_surface")[method](this.businessData.work.id, { "workLog": id }, function (json) {
- if (success) success(json);
- }.bind(this), function (xhr, text, error) {
- if (failure) failure(xhr, text, error)
- }.bind(this));
- }
- },
- inBrowserDkg: function (content) {
- if (this.mask) this.mask.hide();
- if (this.json.submitedDlgUseNotice) {
- MWF.xDesktop.notice("success", { x: "right", y: "top" }, content);
- if (this.json.isPrompt !== false) {
- if (this.json.promptCloseTime != 0) {
- var t = this.json.promptCloseTime || 2;
- t = t.toInt() * 1000;
- var _work = this;
- window.setTimeout(function () { _work.app.close(); }, t);
- }
- } else {
- this.app.close();
- }
- } else {
- var div = new Element("div", { "styles": { "margin": "10px 10px 0px 10px", "padding": "5px", "overflow": "hidden" } }).inject(this.app.content);
- div.set("html", content);
- if (this.json.isPrompt !== false) {
- var options = {
- "content": div,
- "isTitle": false,
- "width": 350,
- "height": 180,
- "buttonList": [
- {
- "text": MWF.xApplication.process.Xform.LP.ok,
- "action": function () { dlg.close(); this.app.close(); }.bind(this)
- }
- ]
- }
- var size = this.app.content.getSize();
- switch (this.json.promptPosition || "righttop") {
- case "lefttop":
- options.top = 10;
- options.left = 10;
- options.fromTop = 10;
- options.fromLeft = 10;
- break;
- case "righttop":
- options.top = 10;
- options.left = size.x - 360;
- options.fromTop = 10;
- options.fromLeft = size.x - 10;
- break;
- case "leftbottom":
- options.top = size.y - 190;
- options.left = 10;
- options.fromTop = size.y - 10;
- options.fromLeft = 10;
- break;
- case "rightbottom":
- options.top = size.y - 190;
- options.left = size.x - 360;
- options.fromTop = size.y - 10;
- options.fromLeft = size.x - 10;
- break;
- default:
- delete options.top;
- delete options.left;
- delete options.fromTop;
- delete options.fromLeft;
- }
- var dlg = o2.DL.open(options);
- if (this.json.promptCloseTime != 0) {
- var t = this.json.promptCloseTime || 2;
- t = t.toInt() * 1000;
- var _work = this;
- window.setTimeout(function () { dlg.close(); _work.app.close(); }, t);
- }
- } else {
- this.app.close();
- }
- }
- },
- addRollbackMessage_old: function (data) {
- var users = [];
- data.each(function (task) {
- users.push(MWF.name.cn(task.person) + "(" + MWF.name.cn(task.unit) + ")");
- }.bind(this));
- 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>";
- if (layout.desktop.message) {
- var msg = {
- "subject": MWF.xApplication.process.Xform.LP.workRollback,
- "content": "<div>" + MWF.xApplication.process.Xform.LP.rollbackWorkInfor + "“" + this.businessData.work.title + "”</div>" + content
- };
- layout.desktop.message.addTooltip(msg);
- return layout.desktop.message.addMessage(msg);
- } else {
- if (this.app.inBrowser) {
- this.inBrowserDkg("<div>" + MWF.xApplication.process.Xform.LP.rollbackWorkInfor + "“" + this.businessData.work.title + "”</div>" + content);
- }
- }
- },
- addRollbackMessage: function (data) {
- if (layout.desktop.message) {
- var msg = {
- "subject": MWF.xApplication.process.Xform.LP.workRollback,
- "content": this.getMessageContent(data, 0, MWF.xApplication.process.Xform.LP.rollbackWorkInfor)
- };
- layout.desktop.message.addTooltip(msg);
- return layout.desktop.message.addMessage(msg);
- } else {
- if (this.app.inBrowser) {
- this.inBrowserDkg(this.getMessageContent(data, 0, MWF.xApplication.process.Xform.LP.rollbackWorkInfor));
- }
- }
- },
- pressWork: function (e) {
- if (e && e.setDisable) e.setDisable(true);
- o2.Actions.get("x_processplatform_assemble_surface").press(this.businessData.work.id, function (json) {
- var users = o2.name.cns(json.data.valueList).join(", ");
- this.app.notice("已经向待办人:" + users + ", 发送了提醒", "success");
- if (e && e.setDisable) e.setDisable(false);
- }.bind(this), function (xhr, text, error) {
- //e.setDisable(false);
- if (xhr.status != 0) {
- var errorText = error;
- if (xhr) {
- var json = JSON.decode(xhr.responseText);
- if (json) {
- errorText = json.message.trim() || "request json error";
- } else {
- errorText = "request json error: " + xhr.responseText;
- }
- }
- MWF.xDesktop.notice("error", { x: "right", y: "top" }, errorText);
- }
- });
- },
- downloadAll:function(){
- var htmlFormId = "";
- o2.Actions.load("x_processplatform_assemble_surface").AttachmentAction.uploadWorkInfo(this.businessData.work.id,"pdf",{
- "workHtml":this.app.content.get("html")
- },function( json ){
- htmlFormId = json.data.id;
- }.bind(this),null,false);
- htmlFormId = htmlFormId.replace("#","%23");
- var url = "/x_processplatform_assemble_surface/jaxrs/attachment/batch/download/work/"+this.businessData.work.id+"/site/(0)/stream";
- window.open( o2.Actions.getHost( "x_processplatform_assemble_surface" )+url + "?fileName=&flag=" + htmlFormId);
- },
- resetWork: function () {
- if (!this.businessData.control["allowReset"]) {
- MWF.xDesktop.notice("error", { x: "right", y: "top" }, "Permission Denied");
- return false;
- }
- MWF.require("MWF.xDesktop.Dialog", function () {
- var width = 680;
- var height = 300;
- var p = MWF.getCenterPosition(this.app.content, width, height);
- var _self = this;
- var dlg = new MWF.xDesktop.Dialog({
- "title": this.app.lp.reset,
- "style": this.json.dialogStyle || "user", //|| "work",
- "top": p.y - 100,
- "left": p.x,
- "fromTop": p.y - 100,
- "fromLeft": p.x,
- "width": width,
- "height": height,
- "url": this.app.path + "reset.html",
- "container": this.app.content,
- "isClose": true,
- "buttonList": [
- {
- "type": "ok",
- "text": MWF.LP.process.button.ok,
- "action": function (d, e) {
- this.doResetWork(dlg);
- }.bind(this)
- },
- {
- "type": "cancel",
- "text": MWF.LP.process.button.cancel,
- "action": function () { dlg.close(); }
- }
- ],
- "onPostShow": function () {
- //$("resetWork_okButton").addEvent("click", function(){
- // _self.doResetWork(this);
- //}.bind(this));
- //$("resetWork_cancelButton").addEvent("click", function(){
- // this.close();
- //}.bind(this));
- $("resetWork_selPeopleButton").addEvent("click", function () {
- _self.selectPeople(this);
- }.bind(this));
- }
- });
- dlg.show();
- }.bind(this));
- },
- selectPeople: function (dlg) {
- var range = this.businessData.activity.resetRange || "department";
- var count = this.businessData.activity.resetCount || 0;
- switch (range) {
- case "unit":
- this.selectPeopleUnit(dlg, this.businessData.task.unit, count);
- // this.personActions.getDepartmentByIdentity(function(json){
- // this.selectPeopleDepartment(dlg, json.data, count);
- // }.bind(this), null, this.businessData.task.identity);
- break;
- case "topUnit":
- MWF.require("MWF.xScript.Actions.UnitActions", function () {
- orgActions = new MWF.xScript.Actions.UnitActions();
- var data = { "unitList": [this.businessData.task.unit] };
- orgActions.listUnitSupNested(data, function (json) {
- v = json.data[0];
- this.selectPeopleUnit(dlg, v, count);
- }.bind(this));
- }.bind(this));
- // this.personActions.getCompanyByIdentity(function(json){
- // this.selectPeopleCompany(dlg, json.data, count)
- // }.bind(this), null, this.businessData.task.identity);
- break;
- default:
- this.selectPeopleAll(dlg, count);
- }
- },
- selectPeopleUnit: function (dlg, unit, count) {
- var names = dlg.identityList || [];
- var areaNode = $("resetWork_selPeopleArea");
- var options = {
- "values": names,
- "type": "identity",
- "count": count,
- "units": (unit) ? [unit] : [],
- "title": this.app.lp.reset,
- "onComplete": function (items) {
- areaNode.empty();
- var identityList = [];
- items.each(function (item) {
- new MWF.widget.O2Identity(item.data, areaNode, { "style": "reset" });
- identityList.push(item.data.distinguishedName);
- }.bind(this));
- dlg.identityList = identityList;
- }.bind(this)
- };
- MWF.xDesktop.requireApp("Selector", "package", function () {
- var selector = new MWF.O2Selector(this.app.content, options);
- }.bind(this));
- },
- selectPeopleAll: function (dlg, count) {
- var names = dlg.identityList || [];
- var areaNode = $("resetWork_selPeopleArea");
- var options = {
- "values": names,
- "type": "identity",
- "count": count,
- "title": this.app.lp.reset,
- "onComplete": function (items) {
- areaNode.empty();
- var identityList = [];
- items.each(function (item) {
- new MWF.widget.O2Identity(item.data, areaNode, { "style": "reset" });
- identityList.push(item.data.distinguishedName);
- }.bind(this));
- dlg.identityList = identityList;
- }.bind(this)
- };
- MWF.xDesktop.requireApp("Selector", "package", function () {
- var selector = new MWF.O2Selector(this.app.content, options);
- }.bind(this));
- },
- doResetWork: function (dlg) {
- var names = dlg.identityList || [];
- if (!names.length) {
- this.app.notice(MWF.xApplication.process.Xform.LP.inputResetPeople, "error", dlg.node);
- return false;
- }
- var opinion = $("resetWork_opinion").get("value");
- var checkbox = dlg.content.getElement(".resetWork_keepOption");
- var keep = (checkbox.checked);
- var nameText = [];
- names.each(function (n) { nameText.push(MWF.name.cn(n)); });
- if (!opinion) {
- opinion = MWF.xApplication.process.Xform.LP.resetTo + ": " + nameText.join(", ");
- }
- MWF.require("MWF.widget.Mask", function () {
- this.mask = new MWF.widget.Mask({ "style": "desktop", "zIndex": 50000 });
- this.mask.loadNode(this.app.content);
- this.fireEvent("beforeReset");
- if (this.app && this.app.fireEvent) this.app.fireEvent("beforeReset");
- this.resetWorkToPeson(names, opinion, keep, function (workJson) {
- //this.workAction.loadWork(function (workJson) {
- this.fireEvent("afterReset");
- if (this.app && this.app.fireEvent) this.app.fireEvent("afterReset");
- this.addResetMessage(workJson.data);
- //this.app.notice(MWF.xApplication.process.Xform.LP.resetOk + ": " + MWF.name.cns(names).join(", "), "success");
- if (!this.app.inBrowser) this.app.close();
- //}.bind(this), null, this.businessData.work.id);
- dlg.close();
- if (this.mask) { this.mask.hide(); this.mask = null; }
- }.bind(this), function (xhr, text, error) {
- var errorText = error + ":" + text;
- if (xhr) errorText = xhr.responseText;
- this.app.notice("request json error: " + errorText, "error", dlg.node);
- if (this.mask) { this.mask.hide(); this.mask = null; }
- }.bind(this));
- }.bind(this));
- //var data = {
- // "opinion": opinion,
- // "routeName": MWF.xApplication.process.Xform.LP.reset,
- // "identityList": names
- //}
- //
- //this.workAction.resetWork(function(json){
- //
- //}.bind(this), null, this.businessData.task.id, data);
- },
- resetWorkToPeson: function (identityList, opinion, keep, success, failure) {
- var data = {
- "opinion": opinion,
- "routeName": MWF.xApplication.process.Xform.LP.reset,
- "identityList": identityList,
- "keep": !!keep
- };
- this.saveFormData(
- function (json) {
- o2.Actions.load("x_processplatform_assemble_surface").TaskAction.V2Reset(
- //this.workAction.resetWork(
- function (json) {
- if (success) success(json);
- }.bind(this),
- function (xhr, text, error) {
- if (failure) failure(xhr, text, error);
- },
- this.businessData.task.id, data
- );
- }.bind(this),
- function (xhr, text, error) {
- if (failure) failure(xhr, text, error);
- }, true, null, true
- );
- },
- addAddSplitMessage: function (data) {
- // var content = "";
- // if (data && data.length) {
- // data.each(function (work) {
- // var users = [];
- // work.taskList.each(function (task) {
- // users.push(MWF.name.cn(task.person) + "(" + MWF.name.cn(task.unit) + ")");
- // }.bind(this));
- // 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>";
- // }.bind(this));
- // } else {
- // content += MWF.xApplication.process.Xform.LP.workCompleted;
- // }
- if (layout.desktop.message) {
- //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>";
- var msg = {
- "subject": MWF.xApplication.process.Xform.LP.addSplitWork,
- "content": this.getMessageContent(data, 0, MWF.xApplication.process.Xform.LP.addSplitWorkInfor)
- };
- layout.desktop.message.addTooltip(msg);
- return layout.desktop.message.addMessage(msg);
- } else {
- if (this.app.inBrowser) {
- this.inBrowserDkg(this.getMessageContent(data, 0, MWF.xApplication.process.Xform.LP.addSplitWorkInfor));
- }
- }
- },
- addResetMessage: function (data) {
- // var content = "";
- // if (data.completed){
- // content += MWF.xApplication.process.Xform.LP.workCompleted;
- // }else{
- // if (data.properties.nextManualList && data.properties.nextManualList.length){
- // var activityUsers = [];
- // data.properties.nextManualList.each(function(a){
- // var ids = [];
- // a.taskIdentityList.each(function(i){
- // ids.push(o2.name.cn(i))
- // });
- // 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>";
- // activityUsers.push(t);
- // });
- // content += activityUsers.join("<br>");
- // }else{
- // content += MWF.xApplication.process.Xform.LP.taskCompleted;
- // }
- // }
- if (layout.desktop.message) {
- var msg = {
- "subject": MWF.xApplication.process.Xform.LP.workReset,
- "content": this.getMessageContent(data, 0, MWF.xApplication.process.Xform.LP.resetWorkInfor)
- };
- layout.desktop.message.addTooltip(msg);
- return layout.desktop.message.addMessage(msg);
- } else {
- if (this.app.inBrowser) {
- this.inBrowserDkg(this.getMessageContent(data, 0, MWF.xApplication.process.Xform.LP.resetWorkInfor));
- }
- }
- },
- retractWork: function (e, ev) {
- var _self = this;
- if (this.json.mode == "Mobile") {
- //window.confirm 在ios移动端不可用 ??
- if (window.confirm(MWF.xApplication.process.Xform.LP.retractText)) {
- _self.app.content.mask({
- "style": {
- "background-color": "#999",
- "opacity": 0.6
- }
- });
- MWF.require("MWF.widget.Mask", function () {
- _self.mask = new MWF.widget.Mask({ "style": "desktop", "zIndex": 50000 });
- _self.mask.loadNode(_self.app.content);
- _self.fireEvent("beforeRetract");
- if (_self.app && _self.app.fireEvent) _self.app.fireEvent("beforeRetract");
- _self.doRetractWork(function () {
- //_self.workAction.getJobByWork(function(workJson){
- _self.fireEvent("afterRetract");
- if (_self.app && _self.app.fireEvent) _self.app.fireEvent("afterRetract");
- _self.app.notice(MWF.xApplication.process.Xform.LP.workRetract, "success");
- _self.app.content.unmask();
- if (_self.mask) { _self.mask.hide(); _self.mask = null; }
- _self.finishOnMobile()
- }.bind(this), function (xhr, text, error) {
- _self.app.content.unmask();
- var errorText = error + ":" + text;
- if (xhr) errorText = xhr.responseText;
- _self.app.notice("request json error: " + errorText, "error");
- if (_self.mask) { _self.mask.hide(); _self.mask = null; }
- });
- }.bind(this));
- }
- } else {
- var p = MWF.getCenterPosition(this.app.content, 300, 150);
- var event = {
- "event": {
- "x": p.x,
- "y": p.y - 200,
- "clientX": p.x,
- "clientY": p.y - 200
- }
- };
- this.app.confirm("infor", event, MWF.xApplication.process.Xform.LP.retractTitle, MWF.xApplication.process.Xform.LP.retractText, 300, 120, function () {
- _self.app.content.mask({
- "style": {
- "background-color": "#999",
- "opacity": 0.6
- }
- });
- MWF.require("MWF.widget.Mask", function () {
- _self.mask = new MWF.widget.Mask({ "style": "desktop", "zIndex": 50000 });
- _self.mask.loadNode(_self.app.content);
- _self.fireEvent("beforeRetract");
- if (_self.app && _self.app.fireEvent) _self.app.fireEvent("beforeRetract");
- _self.doRetractWork(function (json) {
- //_self.workAction.getJobByWork(function(workJson){
- _self.fireEvent("afterRetract");
- if (_self.app && _self.app.fireEvent) _self.app.fireEvent("afterRetract");
- //_self.addRetractMessage(json.data);
- _self.app.notice(MWF.xApplication.process.Xform.LP.workRetract, "success");
- _self.app.content.unmask();
- _self.app.reload();
- //}, null, _self.businessData.work.id);
- this.close();
- if (_self.mask) { _self.mask.hide(); _self.mask = null; }
- }.bind(this), function (xhr, text, error) {
- _self.app.content.unmask();
- var errorText = error + ":" + text;
- if (xhr) errorText = xhr.responseText;
- _self.app.notice("request json error: " + errorText, "error");
- if (_self.mask) { _self.mask.hide(); _self.mask = null; }
- });
- }.bind(this));
- //this.close();
- }, function () {
- this.close();
- }, null, null, this.json.confirmStyle);
- }
- },
- doRetractWork: function (success, failure) {
- if (this.businessData.control["allowRetract"]) {
- o2.Actions.load("x_processplatform_assemble_surface").WorkAction.V2Retract(this.businessData.work.id, null, function (json) {
- if (success) success(json);
- }.bind(this), function (xhr, text, error) {
- if (failure) failure(xhr, text, error);
- });
- // this.workAction.retractWork(function (json) {
- // if (success) success();
- // }.bind(this), function (xhr, text, error) {
- // if (failure) failure(xhr, text, error);
- // }, this.businessData.work.id);
- } else {
- if (failure) failure(null, "Permission Denied", "");
- }
- },
- addRetractMessage: function (data) {
- // var users = [];
- // data.taskList.each(function (task) {
- // users.push(MWF.name.cn(task.person) + "(" + MWF.name.cn(task.unit) + ")");
- // }.bind(this));
- // 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>";
- if (layout.desktop.message) {
- var msg = {
- "subject": MWF.xApplication.process.Xform.LP.workRetract,
- "content": this.getMessageContent(data, 0, MWF.xApplication.process.Xform.LP.retractWorkInfor)
- };
- layout.desktop.message.addTooltip(msg);
- return layout.desktop.message.addMessage(msg);
- } else {
- if (this.app.inBrowser) {
- this.inBrowserDkg(this.getMessageContent(data, 0, MWF.xApplication.process.Xform.LP.retractWorkInfor));
- }
- }
- },
- rerouteWork: function (e, ev) {
- if (!this.businessData.control["allowReroute"]) {
- MWF.xDesktop.notice("error", { x: "right", y: "top" }, "Permission Denied");
- return false;
- }
- MWF.require("MWF.xDesktop.Dialog", function () {
- var width = 560;
- var height = 260;
- var p = MWF.getCenterPosition(this.app.content, width, height);
- var _self = this;
- var dlg = new MWF.xDesktop.Dialog({
- "title": this.app.lp.reroute,
- "style": this.json.dialogStyle || "user", //|| "work",
- "top": p.y - 100,
- "left": p.x,
- "fromTop": p.y - 100,
- "fromLeft": p.x,
- "width": width,
- "height": height,
- "url": this.app.path + "reroute.html",
- "container": this.app.content,
- "isClose": true,
- "buttonList": [
- {
- "type": "ok",
- "text": MWF.LP.process.button.ok,
- "action": function (d, e) {
- _self.doRerouteWork(dlg);
- }.bind(this)
- },
- {
- "type": "cancel",
- "text": MWF.LP.process.button.cancel,
- "action": function () { dlg.close(); }
- }
- ],
- "onPostShow": function () {
- //$("rerouteWork_okButton").addEvent("click", function(){
- // _self.doRerouteWork(this);
- //}.bind(this));
- //$("rerouteWork_cancelButton").addEvent("click", function(){
- // this.close();
- //}.bind(this));
- var select = $("rerouteWork_selectActivity");
- _self.workAction.getRerouteTo(_self.businessData.work.process, function (json) {
- json.data.agentList.each(function (activity) {
- new Element("option", {
- "value": activity.id + "#agent",
- "text": activity.name
- }).inject(select);
- }.bind(_self));
- json.data.cancelList.each(function (activity) {
- new Element("option", {
- "value": activity.id + "#cancel",
- "text": activity.name
- }).inject(select);
- }.bind(_self));
- json.data.choiceList.each(function (activity) {
- new Element("option", {
- "value": activity.id + "#choice",
- "text": activity.name
- }).inject(select);
- }.bind(_self));
- // json.data.controllerList.each(function(activity){
- // new Element("option", {
- // "value": activity.id+"#condition",
- // "text": activity.name
- // }).inject(select);
- // }.bind(_self));
- json.data.delayList.each(function (activity) {
- new Element("option", {
- "value": activity.id + "#delay",
- "text": activity.name
- }).inject(select);
- }.bind(_self));
- json.data.embedList.each(function (activity) {
- new Element("option", {
- "value": activity.id + "#embed",
- "text": activity.name
- }).inject(select);
- }.bind(_self));
- json.data.endList.each(function (activity) {
- new Element("option", {
- "value": activity.id + "#end",
- "text": activity.name
- }).inject(select);
- }.bind(_self));
- json.data.invokeList.each(function (activity) {
- new Element("option", {
- "value": activity.id + "#invoke",
- "text": activity.name
- }).inject(select);
- }.bind(_self));
- json.data.manualList.each(function (activity) {
- new Element("option", {
- "value": activity.id + "#manual",
- "text": activity.name
- }).inject(select);
- }.bind(_self));
- json.data.mergeList.each(function (activity) {
- new Element("option", {
- "value": activity.id + "#merge",
- "text": activity.name
- }).inject(select);
- }.bind(_self));
- json.data.messageList.each(function (activity) {
- new Element("option", {
- "value": activity.id + "#message",
- "text": activity.name
- }).inject(select);
- }.bind(_self));
- json.data.parallelList.each(function (activity) {
- new Element("option", {
- "value": activity.id + "#parallel",
- "text": activity.name
- }).inject(select);
- }.bind(_self));
- json.data.serviceList.each(function (activity) {
- new Element("option", {
- "value": activity.id + "#service",
- "text": activity.name
- }).inject(select);
- }.bind(_self));
- json.data.splitList.each(function (activity) {
- new Element("option", {
- "value": activity.id + "#split",
- "text": activity.name
- }).inject(select);
- }.bind(_self));
- }.bind(_self));
- var selPeopleButton = this.content.getElement(".rerouteWork_selPeopleButton");
- selPeopleButton.addEvent("click", function () {
- _self.selectReroutePeople(this);
- }.bind(this));
- }
- });
- dlg.show();
- }.bind(this));
- },
- selectReroutePeople: function (dlg) {
- var names = dlg.identityList || [];
- var areaNode = dlg.content.getElement(".rerouteWork_selPeopleArea");
- var options = {
- "values": names,
- "type": "identity",
- "count": 0,
- "title": this.app.lp.reroute,
- "onComplete": function (items) {
- areaNode.empty();
- var identityList = [];
- items.each(function (item) {
- new MWF.widget.O2Identity(item.data, areaNode, { "style": "reset" });
- identityList.push(item.data.distinguishedName);
- }.bind(this));
- dlg.identityList = identityList;
- }.bind(this)
- };
- MWF.xDesktop.requireApp("Selector", "package", function () {
- var selector = new MWF.O2Selector(this.app.content, options);
- }.bind(this));
- },
- doRerouteWork: function (dlg) {
- var opinion = $("rerouteWork_opinion").get("value");
- var select = $("rerouteWork_selectActivity");
- var activity = select.options[select.selectedIndex].get("value");
- var activityName = select.options[select.selectedIndex].get("text");
- var tmp = activity.split("#");
- activity = tmp[0];
- var type = tmp[1];
- var nameArr = [];
- var names = dlg.identityList || [];
- names.each(function (n) { nameArr.push(n); });
- //var nameText = nameArr.join(", ");
- // if (!opinion) {
- // opinion = MWF.xApplication.process.Xform.LP.resetTo + ": " + nameText.join(", ");
- // }
- MWF.require("MWF.widget.Mask", function () {
- this.mask = new MWF.widget.Mask({ "style": "desktop", "zIndex": 50000 });
- this.mask.loadNode(this.app.content);
- this.fireEvent("beforeReroute");
- if (this.app && this.app.fireEvent) this.app.fireEvent("afterRetract");
- this.rerouteWorkToActivity(activity, type, opinion, nameArr, function (workJson) {
- //this.workAction.loadWork(function (workJson) {
- this.fireEvent("afterReroute");
- if (this.app && this.app.fireEvent) this.app.fireEvent("afterReroute");
- this.addRerouteMessage(workJson.data);
- this.app.notice(MWF.xApplication.process.Xform.LP.rerouteOk + ": " + activityName, "success");
- if (!this.app.inBrowser) this.app.close();
- //}.bind(this), null, this.businessData.work.id);
- dlg.close();
- if (this.mask) { this.mask.hide(); this.mask = null; }
- }.bind(this), function (xhr, text, error) {
- var errorText = error + ":" + text;
- if (xhr) errorText = xhr.responseText;
- this.app.notice("request json error: " + errorText, "error", dlg.node);
- if (this.mask) { this.mask.hide(); this.mask = null; }
- }.bind(this));
- }.bind(this));
- },
- rerouteWorkToActivity: function (activity, type, opinion, nameArr, success, failure) {
- debugger;
- var body = {
- "activity": activity,
- "activityType": type,
- "mergeWork": false,
- "manualForceTaskIdentityList": nameArr
- };
- if (this.businessData.task) {
- this.saveFormData(function (json) {
- o2.Actions.load("x_processplatform_assemble_surface").WorkAction.V2Reroute(this.businessData.work.id, body, function (json) {
- if (success) success(json);
- }.bind(this), function (xhr, text, error) {
- if (failure) failure(xhr, text, error);
- });
- // this.workAction.rerouteWork(function (json) {
- // if (success) success();
- // }.bind(this), function (xhr, text, error) {
- // if (failure) failure(xhr, text, error);
- // }, this.businessData.work.id, activity, type);
- }.bind(this), function (xhr, text, error) {
- if (failure) failure(xhr, text, error);
- }, true, null, true);
- } else {
- o2.Actions.load("x_processplatform_assemble_surface").WorkAction.V2Reroute(this.businessData.work.id, body, function (json) {
- if (success) success(json);
- }.bind(this), function (xhr, text, error) {
- if (failure) failure(xhr, text, error);
- });
- // this.workAction.rerouteWork(function (json) {
- // if (success) success();
- // }.bind(this), function (xhr, text, error) {
- // if (failure) failure(xhr, text, error);
- // }, this.businessData.work.id, activity, type);
- }
- },
- addRerouteMessage: function (data) {
- if (layout.desktop.message) {
- var msg = {
- "subject": MWF.xApplication.process.Xform.LP.workReroute,
- "content": this.getMessageContent(data, 0, MWF.xApplication.process.Xform.LP.rerouteWorkInfor)
- };
- layout.desktop.message.addTooltip(msg);
- return layout.desktop.message.addMessage(msg);
- } else {
- if (this.app.inBrowser) {
- this.inBrowserDkg(this.getMessageContent(data, 0, MWF.xApplication.process.Xform.LP.rerouteWorkInfor));
- }
- }
- },
- deleteWork: function () {
- var _self = this;
- if (this.json.mode === "Mobile") {
- if (window.confirm(MWF.xApplication.process.Xform.LP.deleteWorkText.text)) {
- MWF.require("MWF.widget.Mask", function () {
- _self.mask = new MWF.widget.Mask({ "style": "desktop", "zIndex": 50000 });
- _self.mask.loadNode(_self.app.content);
- _self.fireEvent("beforeDelete");
- if (_self.app && _self.app.fireEvent) _self.app.fireEvent("beforeDelete");
- _self.doDeleteWork(function () {
- _self.fireEvent("afterDelete");
- if (_self.app && _self.app.fireEvent) _self.app.fireEvent("afterDelete");
- _self.app.notice(MWF.xApplication.process.Xform.LP.workDelete + ": “" + _self.businessData.work.title + "”", "success");
- if (_self.mask) { _self.mask.hide(); _self.mask = null; }
- _self.finishOnMobile()
- }.bind(this), function (xhr, text, error) {
- var errorText = error + ":" + text;
- if (xhr) errorText = xhr.responseText;
- _self.app.notice("request json error: " + errorText, "error", dlg.node);
- if (_self.mask) { _self.mask.hide(); _self.mask = null; }
- }.bind(this));
- }.bind(this));
- }
- } else {
- var p = MWF.getCenterPosition(this.app.content, 380, 150);
- var event = {
- "event": {
- "x": p.x,
- "y": p.y - 200,
- "clientX": p.x,
- "clientY": p.y - 200
- }
- };
- this.app.confirm("infor", event, MWF.xApplication.process.Xform.LP.deleteWorkTitle, MWF.xApplication.process.Xform.LP.deleteWorkText, 380, 120, function () {
- // _self.app.content.mask({
- // "style": {
- // "background-color": "#999",
- // "opacity": 0.6
- // }
- // });
- MWF.require("MWF.widget.Mask", function () {
- _self.mask = new MWF.widget.Mask({ "style": "desktop", "zIndex": 50000 });
- _self.mask.loadNode(_self.app.content);
- _self.fireEvent("beforeDelete");
- if (_self.app && _self.app.fireEvent) _self.app.fireEvent("beforeDelete");
- _self.doDeleteWork(function () {
- _self.fireEvent("s");
- if (_self.app && _self.app.fireEvent) _self.app.fireEvent("afterDelete");
- _self.app.notice(MWF.xApplication.process.Xform.LP.workDelete + ": “" + _self.businessData.work.title + "”", "success");
- _self.app.close();
- this.close();
- if (_self.mask) { _self.mask.hide(); _self.mask = null; }
- }.bind(this), function (xhr, text, error) {
- var errorText = error + ":" + text;
- if (xhr) errorText = xhr.responseText;
- _self.app.notice("request json error: " + errorText, "error", dlg.node);
- if (_self.mask) { _self.mask.hide(); _self.mask = null; }
- }.bind(this));
- }.bind(this));
- //_self.workAction.deleteWork(function(json){
- // _self.app.notice(MWF.xApplication.process.Xform.LP.workDelete+": “"+_self.businessData.work.title+"”", "success");
- // _self.app.close();
- // this.close();
- //}.bind(this), null, _self.businessData.work.id);
- //this.close();
- }, function () {
- this.close();
- }, null, this.app.content, this.json.confirmStyle);
- }
- },
- doDeleteWork: function (success, failure) {
- if (this.businessData.control["allowDelete"]) {
- this.workAction.deleteWork(function (json) {
- if (success) success(json);
- }.bind(this), function (xhr, text, error) {
- if (failure) failure(xhr, text, error);
- }, this.businessData.work.id);
- } else {
- if (failure) failure(null, "Permission Denied", "");
- }
- },
- //printWork: function(){
- // var form = this.json.id;
- // if (this.json.printForm){
- // form = this.json.printForm;
- // }
- // window.open("/x_desktop/printWork.html?workid="+this.businessData.work.id+"&app="+this.businessData.work.application+"&form="+form);
- //},
- printWork: function (app, form) {
- var application = app || (this.businessData.work) ? this.businessData.work.application : this.businessData.workCompleted.application;
- var form = form;
- if (!form) {
- form = this.json.id;
- if (this.json.printForm) form = this.json.printForm;
- }
- if (this.businessData.workCompleted) {
- var application = app || this.businessData.workCompleted.application;
- window.open("/x_desktop/printWork.html?workCompletedId=" + this.businessData.workCompleted.id + "&app=" + application + "&form=" + form);
- } else {
- var application = app || this.businessData.work.application;
- window.open("/x_desktop/printWork.html?workid=" + this.businessData.work.id + "&app=" + application + "&form=" + form);
- }
- },
- readedWork: function (e) {
- this.fireEvent("beforeReaded");
- var _self = this;
- var title = this.businessData.work.title;
- if (title.length > 75) {
- title = title.substr(0, 74) + "..."
- }
- var text = "您确定要将“" + title + "”标记为已阅吗?";
- this.app.confirm("infor", e, "标记已阅确认", text, 300, 120, function () {
- var read = null;
- for (var i = 0; i < _self.businessData.readList.length; i++) {
- if (_self.businessData.readList[i].person === layout.session.user.distinguishedName) {
- read = _self.businessData.readList[i];
- break;
- }
- }
- if (read) {
- _self.app.action.setReaded(function () {
- this.fireEvent("afterReaded");
- _self.app.reload();
- }.bind(_self), null, read.id, read);
- } else {
- _self.app.reload();
- }
- if (layout.mobile) {
- //移动端页面关闭
- _self.finishOnMobile()
- } else {
- this.close();
- }
- }, function () {
- this.close();
- }, null, this.app.content, this.json.confirmStyle);
- },
- openWindow: function (form, app) {
- //var application = app || (this.businessData.work) ? this.businessData.work.application : this.businessData.workCompleted.application;
- var form = form;
- if (!form) {
- form = this.json.id;
- //if (this.json.printForm) form = this.json.printForm;
- }
- if (this.businessData.workCompleted) {
- var application = app || this.businessData.workCompleted.application;
- window.open("/x_desktop/printWork.html?workCompletedId=" + this.businessData.workCompleted.id + "&app=" + application + "&form=" + form);
- } else {
- var application = app || this.businessData.work.application;
- window.open("/x_desktop/printWork.html?workid=" + this.businessData.work.id + "&app=" + application + "&form=" + form);
- }
- //window.open("/x_desktop/printWork.html?workid="+this.businessData.work.id+"&app="+this.businessData.work.application+"&form="+form);
- },
- uploadedAttachment: function (site, id) {
- this.workAction.getAttachment(id, this.businessData.work.id, function (json) {
- var att = this.all[site];
- if (att) {
- if (json.data) att.attachmentController.addAttachment(json.data);
- att.attachmentController.checkActions();
- att.fireEvent("upload", [json.data]);
- }
- }.bind(this));
- },
- replacedAttachment: function (site, id) {
- this.workAction.getAttachment(id, this.businessData.work.id, function (json) {
- var att = this.all[site];
- if (att) {
- var attachmentController = att.attachmentController;
- var attachment = null;
- for (var i = 0; i < attachmentController.attachments.length; i++) {
- if (attachmentController.attachments[i].data.id === id) {
- attachment = attachmentController.attachments[i];
- break;
- }
- }
- attachment.data = json.data;
- attachment.reload();
- attachmentController.checkActions();
- }
- }.bind(this))
- },
- //移动端页面 工作处理完成后
- finishOnMobile: function () {
- if (window.o2android && window.o2android.closeWork) {
- window.o2android.closeWork("");
- } else if (window.webkit && window.webkit.messageHandlers && window.webkit.messageHandlers.closeWork) {
- window.webkit.messageHandlers.closeWork.postMessage("");
- } else {
- var len = window.history.length;
- if (len > 1) {
- history.back();
- } else {
- var uri = new URI(window.location.href);
- var redirectlink = uri.getData("redirectlink");
- if (redirectlink) {
- history.replaceState(null, "work", redirectlink);
- redirectlink.toURI().go();
- } else {
- window.location = "appMobile.html?app=process.TaskCenter";
- history.replaceState(null, "work", "/x_desktop/appMobile.html?app=process.TaskCenter");
- "appMobile.html?app=process.TaskCenter".toURI().go();
- }
- }
- }
- }
- });
|