| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333 |
- MWF.xDesktop.requireApp("process.Xform", "$Module", null, false);
- MWF.xApplication.process.Xform.Subform = MWF.APPSubform = new Class({
- Extends: MWF.APP$Module,
- _loadUserInterface: function () {
- this.node.empty();
- if (this.json.isDelay) {
- if (this.form.subformLoadedCount) {
- this.form.subformLoadedCount++;
- } else {
- this.form.subformLoadedCount = 1
- }
- this.form.checkSubformLoaded();
- this.checked = true;
- } else {
- this.getSubform(function () {
- this.loadSubform();
- }.bind(this));
- }
- },
- active: function () {
- if (!this.loaded) {
- this.reload()
- }
- },
- reload: function () {
- this.node.empty();
- this.getSubform(function () {
- this.loadSubform();
- }.bind(this));
- }
- ,
- loadCss: function () {
- if (this.subformData.json.css && this.subformData.json.css.code) {
- var cssText = this.form.parseCSS(this.subformData.json.css.code);
- var rex = new RegExp("(.+)(?=\\{)", "g");
- var match;
- var id = this.form.json.id.replace(/\-/g, "");
- while ((match = rex.exec(cssText)) !== null) {
- var prefix = ".css" + id + " ";
- 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 = $("style" + this.form.json.id);
- if (!styleNode) {
- var styleNode = document.createElement("style");
- styleNode.setAttribute("type", "text/css");
- styleNode.id = "style" + this.form.json.id;
- styleNode.inject(this.form.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);
- }
- }
- }
- ,
- checkSubformNested: function (id) {
- if (this.parentformIdList) {
- return !this.parentformIdList.contains(id);
- } else {
- return ![this.form.json.id].contains(id);
- }
- }
- ,
- checkSubformUnique: function (id) {
- if (!this.form.subformLoaded)return true;
- return !this.form.subformLoaded.contains(id);
- }
- ,
- getParentformIdList: function () {
- var parentformIdList;
- if (this.parentformIdList) {
- parentformIdList = Array.clone(this.parentformIdList);
- parentformIdList.push(this.subformData.json.id)
- } else {
- parentformIdList = [this.form.json.id, this.subformData.json.id];
- }
- return parentformIdList;
- }
- ,
- loadSubform: function () {
- if (this.subformData) {
- if (!this.checkSubformNested(this.subformData.json.id)) {
- this.form.notice(MWF.xApplication.process.Xform.LP.subformNestedError, "error");
- } else if (!this.checkSubformUnique(this.subformData.json.id)) {
- this.form.notice(MWF.xApplication.process.Xform.LP.subformUniqueError, "error");
- } else {
- //this.form.addEvent("postLoad", function(){
- this.loadCss();
- this.node.set("html", this.subformData.html);
- Object.each(this.subformData.json.moduleList, function (module, key) {
- var formKey = key;
- if (this.form.json.moduleList[key]) {
- formKey = this.json.id + "_" + key;
- var moduleNode = this.node.getElement("#" + key);
- if (moduleNode) moduleNode.set("id", formKey);
- module.id = formKey;
- }
- this.form.json.moduleList[formKey] = module;
- }.bind(this));
- var moduleNodes = this.form._getModuleNodes(this.node);
- moduleNodes.each(function (node) {
- if (node.get("MWFtype") !== "form") {
- var _self = this;
- var json = this.form._getDomjson(node);
- //if( json.type === "Subform" || json.moduleName === "subform" )this.form.subformCount++;
- var module = this.form._loadModule(json, node, function () {
- this.parentformIdList = _self.getParentformIdList();
- });
- this.form.modules.push(module);
- }
- }.bind(this));
- this.form.subformLoaded.push(this.subformData.json.id);
- //}.bind(this));
- }
- }
- if (!this.checked) {
- if (this.form.subformLoadedCount) {
- this.form.subformLoadedCount++;
- } else {
- this.form.subformLoadedCount = 1
- }
- this.form.checkSubformLoaded();
- }
- //console.log( "add subformLoadedCount , this.form.subformLoadedCount = "+ this.form.subformLoadedCount)
- this.loaded = true;
- this.checked = true;
- }
- ,
- getSubform: function (callback) {
- var method = (this.form.json.mode !== "Mobile" && !layout.mobile) ? "getForm" : "getFormMobile";
- if (this.json.subformType === "script") {
- if (this.json.subformScript && this.json.subformScript.code) {
- var data = this.form.Macro.exec(this.json.subformScript.code, this);
- if (data) {
- var formName, app;
- if (typeOf(data) === "string") {
- formName = data;
- } else {
- if (data.application)app = data.application;
- if (data.subform)formName = data.subform;
- }
- if (formName) {
- if (!app)app = (this.form.businessData.work || this.form.businessData.workCompleted).application;
- MWF.Actions.get("x_processplatform_assemble_surface")[method](formName, app, function (json) {
- this.getSubformData(json.data);
- if (callback) callback();
- }.bind(this));
- } else {
- if (callback) callback();
- }
- } else {
- if (callback) callback();
- }
- }
- } else {
- if (this.json.subformSelected && this.json.subformSelected !== "none") {
- var app;
- if (this.json.subformAppSelected) {
- app = this.json.subformAppSelected;
- } else {
- app = (this.form.businessData.work || this.form.businessData.workCompleted).application;
- }
- MWF.Actions.get("x_processplatform_assemble_surface")[method](this.json.subformSelected, app, function (json) {
- this.getSubformData(json.data);
- if (callback) callback();
- }.bind(this));
- } else {
- if (callback) callback();
- }
- }
- }
- ,
- getSubformData: function (data) {
- if (!data || typeOf(data) !== "object")return;
- var subformDataStr = null;
- // if ( this.form.json.mode !== "Mobile" && !layout.mobile){
- // subformDataStr = data.data;
- // }else{
- // subformDataStr = data.mobileData;
- // }
- subformDataStr = data.data;
- this.subformData = null;
- if (subformDataStr) {
- this.subformData = JSON.decode(MWF.decodeJsonString(subformDataStr));
- this.subformData.updateTime = data.updateTime;
- }
- }
- });
- MWF.xApplication.process.Xform.SubmitForm = MWF.APPSubmitform = new Class({
- Extends: MWF.APPSubform,
- _loadUserInterface: function () {
- // this.node.empty();
- this.getSubform(function () {
- this.loadSubform();
- }.bind(this));
- },
- reload: function () {
- // this.node.empty();
- this.getSubform(function () {
- this.loadSubform();
- }.bind(this));
- },
- show: function () {
- if (this.json.submitScript && this.json.submitScript.code) {
- this.form.Macro.exec(this.json.submitScript.code, this);
- }
- // this.fireSubFormEvent("load");
- },
- // fireSubFormEvent : function( name ){
- // var events = this.subformData.json.events;
- // if( events && events[name] && events[name]["code"] ){
- // this.form.Macro.exec(events[name]["code"], this);
- // }
- // },
- loadSubform: function () {
- if (this.subformData) {
- if (!this.checkSubformUnique(this.subformData.json.id)) { //如果提交表单已经嵌入到表单中,那么把这个表单弹出来
- // this.form.notice(MWF.xApplication.process.Xform.LP.subformUniqueError, "error");
- this.isEmbedded = true;
- this.fireEvent("afterModulesLoad");
- } else if (!this.checkSubformNested(this.subformData.json.id)) {
- this.form.notice(MWF.xApplication.process.Xform.LP.subformNestedError, "error");
- } else {
- //this.form.addEvent("postLoad", function(){
- // this.fireSubFormEvent("queryLoad");
- this.loadCss();
- this.node.set("html", this.subformData.html);
- Object.each(this.subformData.json.moduleList, function (module, key) {
- var formKey = key;
- if (this.form.json.moduleList[key]) {
- formKey = this.json.id + "_" + key;
- var moduleNode = this.node.getElement("#" + key);
- if (moduleNode) moduleNode.set("id", formKey);
- module.id = formKey;
- }
- this.form.json.moduleList[formKey] = module;
- }.bind(this));
- var moduleNodes = this.form._getModuleNodes(this.node);
- moduleNodes.each(function (node) {
- if (node.get("MWFtype") !== "form") {
- var _self = this;
- var json = this.form._getDomjson(node);
- //if( json.type === "Subform" || json.moduleName === "subform" )this.form.subformCount++;
- var module = this.form._loadModule(json, node, function () {
- this.parentformIdList = _self.getParentformIdList();
- });
- this.form.modules.push(module);
- }
- }.bind(this));
- this.form.subformLoaded.push(this.subformData.json.id);
- this.fireEvent("afterModulesLoad");
- // this.fireSubFormEvent("postLoad");
- // this.fireSubFormEvent("load");
- // this.fireSubFormEvent("afterLoad");
- }
- }
- // if( this.form.subformLoadedCount ){
- // this.form.subformLoadedCount++;
- // }else{
- // this.form.subformLoadedCount = 1
- // }
- // this.form.checkSubformLoaded();
- },
- getSubform: function (callback) {
- var method = (this.form.json.mode !== "Mobile" && !layout.mobile) ? "getForm" : "getFormMobile";
- if (this.json.submitFormType === "script") {
- if (this.json.submitFormScript && this.json.submitFormScript.code) {
- var data = this.form.Macro.exec(this.json.submitFormScript.code, this);
- if (data) {
- var formName, app;
- if (typeOf(data) === "string") {
- formName = data;
- } else {
- if (data.application)app = data.application;
- if (data.form)formName = data.form;
- }
- if (formName) {
- if (!app)app = (this.form.businessData.work || this.form.businessData.workCompleted).application;
- MWF.Actions.get("x_processplatform_assemble_surface")[method](formName, app, function (json) {
- this.getSubformData(json.data);
- if (callback) callback();
- }.bind(this));
- } else {
- if (callback) callback();
- }
- } else {
- if (callback) callback();
- }
- }
- } else {
- if (this.json.submitFormSelected && this.json.submitFormSelected !== "none") {
- var app;
- if (this.json.submitFormAppSelected) {
- app = this.json.submitFormAppSelected;
- } else {
- app = (this.form.businessData.work || this.form.businessData.workCompleted).application;
- }
- MWF.Actions.get("x_processplatform_assemble_surface")[method](this.json.submitFormSelected, app, function (json) {
- this.getSubformData(json.data);
- if (callback) callback();
- }.bind(this));
- } else {
- if (callback) callback();
- }
- }
- }
- });
|