/**
* StatementInfor 查询配置信息
* @typedef {Object} StatementInfor
* @example
* {
"query": "26d21c71-5114-4496-8ca1-a69e56324841", //所属应用id
"id": "ee334220-66d3-4f78-afce-8ccf6b995c8c", //查询id
"name": "测试查询", //名称
"alias": "", //别名
"description": "", //描述
"table": "", //自建表的id
"entityClassName": "com.x.processplatform.core.entity.content.Task", //系统表表名
"entityCategory": "official", //表类型 official(系统表) 或 dynamic(自建表)
"format": "jpql", //语句类型,jpql 或者 script(脚本)
"type": "select", //select/update/delete
"data": "SELECT o FROM Task o where o.person = :person", //查询语句
"countData": "SELECT count(o.id) FROM Task o where o.person = :person", //总数语句
"countScriptText" : "", //总数语句脚本
"scriptText" : "", //查询语句脚本
"viewJson": { ... } //视图相关信息
}
*/
/**
* ViewInfor 视图配置信息
* @typedef {Object} ViewInfor
* @example
* {
"application": "db9fc893-7dbc-4e0f-a617-99089d2c6323", //视图所在应用
"query": "db9fc893-7dbc-4e0f-a617-99089d2c6323", //视图所在应用,同application
"name": "视图自定义测试", //视图名称
"viewName": "视图自定义测试", //视图名称,同name
"isExpand": "no", //如果有分类,默认是否展开开
"id": "705ce967-2f9c-425c-8873-3bd729249e1d", //视图id
"alias": "", //视图别名
"description": "", //视图描述
"display": true, //视图是否显示
"type": "cms", //视图嵌入的数据类型, cms 或 process
"count": 2000, //最多返回2000条
"pageSize": 20, //每页的条数
"createTime": "2019-09-02 10:18:27",
"updateTime": "2020-03-26 15:53:03"
}
*/
/**
* @readonly
* @enum {String} ViewFilterDataLogic
* @property {String} or color for a white square or piece.
* @property {String} and color for a black square or piece.
*/
/**
* ViewFilter 视图过滤条件
* @typedef {Object} ViewFilter
* @property {String} logic - 可选值:“and”或者“or”,表示和前一个条件的逻辑运算关系。
* @property {String} path - 要过滤的data数据的路径。
* @property {String} comparison - 比较运算符,可选值:
*
* equals 或 == 或:表示等于。
* notEquals 或 != :表示不等于。
* greaterThan 或 > :表示大于。
* greaterThanOrEqualTo 或 => :表示大于或等于。
* lessThan 或 < :表示小于。
* lessThanOrEqualTo 或 <= :表示小于等于。
* like :表示部分匹配。
* notLike :表示不匹配。
* range :表示一定的范围。
* in :表示在某几个特定的值当中。
*
* @property {String} formatType - 过滤数据的数据类型,可选值:
* @property {(String|Number|Boolean)} value - 过滤的值,根据formatType提供匹配的数据类型的值,如果是dateTimeValue数据类型,则提供日期格式的字符串,格式如“YYYY-MM-DD HH:MM:SS”。当comparison值为“range”时,此值表示范围中的第一个值。当comparison值为“in”时,多个值用半角逗号","分开。
* @property {(String|Number|Boolean)} otherValue - 当comparison值为“range”时,此值表示范围中的第二个值。当comparison值不为“range”时,忽略此值。
* @example
* {
* "logic":"and",
* "path":"$work.title",
* "comparison":"like",
* "value":"7月",
* "formatType":"textValue"
* }
*/
MWF.xScript = MWF.xScript || {};
MWF.xScript.ViewEnvironment = function (ev) {
var _form = ev.view;
this.library = COMMON;
//this.library.version = "4.0";
//data
// var getJSONData = function (jData) {
// return new MWF.xScript.JSONData(jData, function (data, key, _self) {
// var p = { "getKey": function () { return key; }, "getParent": function () { return _self; } };
// while (p && !_forms[p.getKey()]) p = p.getParent();
// if (p) if (p.getKey()) if (_forms[p.getKey()]) _forms[p.getKey()].resetData();
// });
// };
// this.setData = function (data) {
// this.data = getJSONData(data);
// this.data.save = function (callback) {
// var formData = {
// "data": data,
// "sectionList": _form.getSectionList()
// };
// form.workAction.saveData(function (json) { if (callback) callback(); }.bind(this), null, work.id, jData);
// }
// };
// this.setData(_data);
//dict
this.Dict = MWF.xScript.createDict();
//org
var orgActions = null;
var getOrgActions = function () {
if (!orgActions) {
MWF.require("MWF.xScript.Actions.UnitActions", null, false);
orgActions = new MWF.xScript.Actions.UnitActions();
}
};
var getNameFlag = function (name) {
var t = typeOf(name);
if (t === "array") {
var v = [];
name.each(function (id) {
v.push((typeOf(id) === "object") ? (id.distinguishedName || id.id || id.unique || id.name) : id);
});
return v;
} else {
return [(t === "object") ? (name.distinguishedName || name.id || name.unique || name.name) : name];
}
};
this.org = {
//群组***************
//获取群组--返回群组的对象数组
getGroup: function(name, async){
getOrgActions();
var data = {"groupList": getNameFlag(name)};
var v = null;
var cb = function(json){
v = json.data;
v = (v && v.length===1) ? v[0] : v
if (async && o2.typeOf(async)=="function") return async(v);
return v;
};
var promise = orgActions.listGroup(data, cb, null, !!async);
return (!!async) ? promise : v;
// var v = null;
// orgActions.listGroup(data, function(json){v = json.data;}, null, false);
// return (v && v.length===1) ? v[0] : v;
},
//查询下级群组--返回群组的对象数组
//nested 布尔 true嵌套下级;false直接下级;默认false;
listSubGroup: function(name, nested, async){
getOrgActions();
var data = {"groupList": getNameFlag(name)};
var v = null;
// var cb = ((async && o2.typeOf(async)=="function") ? (async.isAG ? async : async.ag()) : null) || function(json){
// v = json.data;
// return v;
// }.ag().catch(function(json){ return json; });
var cb = function(json){
v = json.data;
if (async && o2.typeOf(async)=="function") return async(v);
return v;
};
var promise;
if (nested){
promise = orgActions.listSubGroupNested(data, cb, null, !!async);
}else{
promise = orgActions.listSubGroupDirect(data, cb, null, !!async);
}
return (!!async) ? promise : v;
// var v = null;
// if (nested){
// orgActions.listSubGroupNested(data, function(json){v = json.data;}, null, false);
// }else{
// orgActions.listSubGroupDirect(data, function(json){v = json.data;}, null, false);
// }
// return v;
},
//查询上级群组--返回群组的对象数组
//nested 布尔 true嵌套上级;false直接上级;默认false;
listSupGroup:function(name, nested, async){
getOrgActions();
var data = {"groupList": getNameFlag(name)};
var v = null;
var cb = function(json){
v = json.data;
if (async && o2.typeOf(async)=="function") return async(v);
return v;
};
var promise
if (nested){
var promise = orgActions.listSupGroupNested(data, cb, null, !!async);
}else{
var promise = orgActions.listSupGroupDirect(data, cb, null, !!async);
}
return (!!async) ? promise : v;
// var v = null;
// if (nested){
// orgActions.listSupGroupNested(data, function(json){v = json.data;}, null, false);
// }else{
// orgActions.listSupGroupDirect(data, function(json){v = json.data;}, null, false);
// }
// return v;
},
//人员所在群组(嵌套)--返回群组的对象数组
listGroupWithPerson:function(name, async){
getOrgActions();
var data = {"personList": getNameFlag(name)};
var v = null;
var cb = function(json){
v = json.data;
if (async && o2.typeOf(async)=="function") return async(v);
return v;
};
var promise = orgActions.listGroupWithPerson(data, cb, null, !!async);
return (!!async) ? promise : v;
// var v = null;
// orgActions.listGroupWithPerson(data, function(json){v = json.data;}, null, false);
// return v;
},
//群组是否拥有角色--返回true, false
groupHasRole: function(name, role, async){
getOrgActions();
nameFlag = (typeOf(name)==="object") ? (name.distinguishedName || name.id || name.unique || name.name) : name;
var data = {"group":nameFlag,"roleList":getNameFlag(role)};
var v = false;
var cb = function(json){
v = json.data.value;
if (async && o2.typeOf(async)=="function") return async(v);
return v;
};
var promise = orgActions.groupHasRole(data, cb, null, !!async);
return (!!async) ? promise : v;
// var v = false;
// orgActions.groupHasRole(data, function(json){v = json.data.value;}, null, false);
// return v;
},
//角色***************
//获取角色--返回角色的对象数组
getRole: function(name, async){
getOrgActions();
var data = {"roleList": getNameFlag(name)};
var v = null;
var cb = function(json){
v = json.data;
v = (v && v.length===1) ? v[0] : v;
if (async && o2.typeOf(async)=="function") return async(v);
return v;
};
var promise = orgActions.listRole(data, cb, null, !!async);
return (!!async) ? promise : v;
// var v = null;
// orgActions.listRole(data, function(json){v = json.data;}, null, false);
// return (v && v.length===1) ? v[0] : v;
},
//人员所有角色(嵌套)--返回角色的对象数组
listRoleWithPerson:function(name, async){
getOrgActions();
var data = {"personList": getNameFlag(name)};
var v = null;
var cb = function(json){
v = json.data;
if (async && o2.typeOf(async)=="function") return async(v);
return v;
};
var promise = orgActions.listRoleWithPerson(data, cb, null, !!async);
return (!!async) ? promise : v;
// var v = null;
// orgActions.listRoleWithPerson(data, function(json){v = json.data;}, null, false);
// return v;
},
//人员***************
//人员是否拥有角色--返回true, false
personHasRole: function(name, role, async){
getOrgActions();
nameFlag = (typeOf(name)==="object") ? (name.distinguishedName || name.id || name.unique || name.name) : name;
var data = {"person":nameFlag,"roleList":getNameFlag(role)};
var v = false;
var cb = function(json){
v = json.data.value;
if (async && o2.typeOf(async)=="function") return async(v);
return v;
};
var promise = orgActions.listRoleWithPerson(data, cb, null, !!async);
return (!!async) ? promise : v;
// var v = false;
// orgActions.personHasRole(data, function(json){v = json.data.value;}, null, false);
// return v;
},
//获取人员--返回人员的对象数组
getPerson: function(name, async){
getOrgActions();
var data = {"personList": getNameFlag(name)};
var v = null;
var cb = function(json){
v = json.data;
v = (v && v.length===1) ? v[0] : v;
if (async && o2.typeOf(async)=="function") return async(v);
return v;
};
var promise = orgActions.listPerson(data, cb, null, !!async);
return (!!async) ? promise : v;
// var v = null;
// orgActions.listPerson(data, function(json){v = json.data;}, null, false);
// return (v && v.length===1) ? v[0] : v;
},
//查询下级人员--返回人员的对象数组
//nested 布尔 true嵌套下级;false直接下级;默认false;
listSubPerson: function(name, nested, async){
getOrgActions();
var data = {"personList": getNameFlag(name)};
var v = null;
var cb = function(json){
v = json.data;
if (async && o2.typeOf(async)=="function") return async(v);
return v;
};
var promise;
if (nested){
promise = orgActions.listPersonSubNested(data, cb, null, !!async);
}else{
promise = orgActions.listPersonSubDirect(data, cb, null, !!async);
}
return (!!async) ? promise : v;
},
//查询上级人员--返回人员的对象数组
//nested 布尔 true嵌套上级;false直接上级;默认false;
listSupPerson: function(name, nested, async){
getOrgActions();
var data = {"personList": getNameFlag(name)};
var v = null;
var cb = function(json){
v = json.data;
if (async && o2.typeOf(async)=="function") return async(v);
return v;
};
var promise;
if (nested){
promise = orgActions.listPersonSupNested(data, cb, null, !!async);
}else{
promise = orgActions.listPersonSupDirect(data, cb, null, !!async);
}
return (!!async) ? promise : v;
},
//获取群组的所有人员--返回人员的对象数组
listPersonWithGroup: function(name, async){
getOrgActions();
var data = {"groupList": getNameFlag(name)};
var v = null;
var cb = function(json){
v = json.data;
if (async && o2.typeOf(async)=="function") return async(v);
return v;
};
var promise = orgActions.listPersonWithGroup(data, cb, null, !!async);
return (!!async) ? promise : v;
},
//获取角色的所有人员--返回人员的对象数组
listPersonWithRole: function(name, async){
getOrgActions();
var data = {"roleList": getNameFlag(name)};
var v = null;
var cb = function(json){
v = json.data;
if (async && o2.typeOf(async)=="function") return async(v);
return v;
};
var promise
promise = orgActions.listPersonWithRole(data, cb, null, !!async);
return (!!async) ? promise : v;
},
//获取身份的所有人员--返回人员的对象数组
listPersonWithIdentity: function(name, async){
getOrgActions();
var data = {"identityList": getNameFlag(name)};
var v = null;
var cb = function(json){
v = json.data;
if (async && o2.typeOf(async)=="function") return async(v);
return v;
};
var promise = orgActions.listPersonWithIdentity(data, cb, null, !!async);
return (!!async) ? promise : v;
},
//获取身份的所有人员--返回人员的对象数组或人员对象
getPersonWithIdentity: function(name, async){
getOrgActions();
var data = {"identityList": getNameFlag(name)};
var v = null;
var cb = function(json){
v = json.data;
v = (v && v.length===1) ? v[0] : v;
if (async && o2.typeOf(async)=="function") return async(v);
return v;
};
var promise = orgActions.listPersonWithIdentity(data, cb, null, !!async);
return (!!async) ? promise : v;
},
//查询组织成员的人员--返回人员的对象数组
//nested 布尔 true嵌套的所有成员;false直接成员;默认false;
listPersonWithUnit: function(name, nested, async){
getOrgActions();
var data = {"unitList": getNameFlag(name)};
var v = null;
var cb = function(json){
v = json.data;
if (async && o2.typeOf(async)=="function") return async(v);
return v;
};
var promise;
if (nested){
promise = orgActions.listPersonWithUnitNested(data, cb, null, !!async);
}else{
promise = orgActions.listPersonWithUnitDirect(data, cb, null, !!async);
}
return (!!async) ? promise : v;
},
//根据属性查询人员--返回人员的对象数组
//name string 属性名
//value string 属性值
listPersonWithAttribute: function(name, value, async){
getOrgActions();
var data = {"name": name, "attribute": value};
var v = null;
var cb = function(json){
v = json.data;
if (async && o2.typeOf(async)=="function") return async(v);
return v;
};
var promise = orgActions.listPersonWithAttribute(data, cb, null, !!async);
return (!!async) ? promise : v;
},
//根据属性查询人员--返回人员的全称数组
//name string 属性名
//value string 属性值
listPersonNameWithAttribute: function(name, value, async){
getOrgActions();
var data = {"name": name, "attribute": value};
var v = null;
var cb = function(json){
v = json.data.personList;
if (async && o2.typeOf(async)=="function") return async(v);
return v;
};
var promise = orgActions.listPersonWithAttributeValue(data, cb, null, !!async);
return (!!async) ? promise : v;
},
//人员属性************
//添加人员属性值(在属性中添加values值,如果没有此属性,则创建一个)
appendPersonAttribute: function(person, attr, values, success, failure, async){
getOrgActions();
var personFlag = (typeOf(person)==="object") ? (person.distinguishedName || person.id || person.unique || person.name) : person;
var data = {"attributeList":values,"name":attr,"person":personFlag};
var cb = function(json){
if (success) return success(json);
}.ag().catch(function(xhr, text, error){
if (failure) return failure(xhr, text, error);
});
orgActions.appendPersonAttribute(data, cb, null, !!async);
},
//设置人员属性值(将属性值修改为values,如果没有此属性,则创建一个)
setPersonAttribute: function(person, attr, values, success, failure, async){
getOrgActions();
var personFlag = (typeOf(person)==="object") ? (person.distinguishedName || person.id || person.unique || person.name) : person;
var data = {"attributeList":values,"name":attr,"person":personFlag};
var cb = function(json){
if (success) return success(json);
}.ag().catch(function(xhr, text, error){
if (failure) return failure(xhr, text, error);
});
orgActions.setPersonAttribute(data, cb, null, !!async);
},
//获取人员属性值
getPersonAttribute: function(person, attr, async){
getOrgActions();
var personFlag = (typeOf(person)==="object") ? (person.distinguishedName || person.id || person.unique || person.name) : person;
var data = {"name":attr,"person":personFlag};
var v = null;
var cb = function(json){
v = json.data.attributeList;
if (async && o2.typeOf(async)=="function") return async(v);
return v;
};
var promise = orgActions.getPersonAttribute(data, cb, null, !!async);
return (!!async) ? promise : v;
},
//列出人员所有属性的名称
listPersonAttributeName: function(name, async){
getOrgActions();
var data = {"personList":getNameFlag(name)};
var v = null;
var cb = function(json){
v = json.data.nameList;
if (async && o2.typeOf(async)=="function") return async(v);
return v;
};
var promise = orgActions.listPersonAttributeName(data, cb, null, !!async);
return (!!async) ? promise : v;
},
//列出人员的所有属性
listPersonAllAttribute: function(name, async){
getOrgActions();
var data = {"personList":getNameFlag(name)};
var v = null;
var cb = function(json){
v = json.data;
if (async && o2.typeOf(async)=="function") return async(v);
return v;
};
var promise = orgActions.listPersonAllAttribute(data, cb, null, !!async);
return (!!async) ? promise : v;
},
//身份**********
//获取身份
getIdentity: function(name, async){
getOrgActions();
var data = {"identityList":getNameFlag(name)};
var v = null;
var cb = function(json){
v = json.data;
v = (v && v.length===1) ? v[0] : v;
if (async && o2.typeOf(async)=="function") return async(v);
return v;
};
var promise = orgActions.listIdentity(data, cb, null, !!async);
return (!!async) ? promise : v;
},
//列出人员的身份
listIdentityWithPerson: function(name, async){
getOrgActions();
var data = {"personList":getNameFlag(name)};
var v = null;
var cb = function(json){
v = json.data;
if (async && o2.typeOf(async)=="function") return async(v);
return v;
};
var promise = orgActions.listIdentityWithPerson(data, cb, null, !!async);
return (!!async) ? promise : v;
},
//查询组织成员身份--返回身份的对象数组
//nested 布尔 true嵌套的所有成员;false直接成员;默认false;
listIdentityWithUnit: function(name, nested, async){
getOrgActions();
var data = {"unitList": getNameFlag(name)};
var v = null;
// var cb = function(json){
// v = json.data;
// if (async && o2.typeOf(async)=="function") return async(v);
// return v;
// }.ag().catch(function(json){ return json; });
var cb = function(json){
v = json.data;
if (async && o2.typeOf(async)=="function") return async(v);
return v;
};
var method = (nested) ? "listIdentityWithUnitNested" : "listIdentityWithUnitDirect";
var promise = orgActions[method](data, cb, null, !!async);
promise.name = "org";
//
// if (nested){
// orgActions.listIdentityWithUnitNested(data, cb, null, !!async);
// }else{
// orgActions.listIdentityWithUnitDirect(data, cb, null, !!async);
// }
return (!!async) ? promise : v;
},
//组织**********
//获取组织
getUnit: function(name, async){
getOrgActions();
var data = {"unitList":getNameFlag(name)};
var v = null;
var cb = function(json){
v = json.data;
v = (v && v.length===1) ? v[0] : v;
if (async && o2.typeOf(async)=="function") return async(v);
return v;
};
var promise = orgActions.listUnit(data, cb, null, !!async);
return (!!async) ? promise : v;
},
//查询组织的下级--返回组织的对象数组
//nested 布尔 true嵌套下级;false直接下级;默认false;
listSubUnit: function(name, nested, async){
getOrgActions();
var data = {"unitList": getNameFlag(name)};
var v = null;
var cb = function(json){
v = json.data;
if (async && o2.typeOf(async)=="function") return async(v);
return v;
};
var promise;
if (nested){
promise = orgActions.listUnitSubNested(data, cb, null, !!async);
}else{
promise = orgActions.listUnitSubDirect(data, cb, null, !!async);
}
return (!!async) ? promise : v;
},
//查询组织的上级--返回组织的对象数组
//nested 布尔 true嵌套上级;false直接上级;默认false;
//async 布尔 true异步请求
listSupUnit: function(name, nested, async){
getOrgActions();
var data = {"unitList": getNameFlag(name)};
var v = null;
var cb = function(json){
v = json.data;
if (async && o2.typeOf(async)=="function") return async(v);
return v;
};
var promise;
if (nested){
promise = orgActions.listUnitSupNested(data, cb, null, !!async);
}else{
promise = orgActions.listUnitSupDirect(data, cb, null, !!async);
}
return (!!async) ? promise : v;
// if (callback){
// if (nested){
// orgActions.listUnitSupNested(data, function(json){v = json.data; o2.runCallback(callback, "success", [v], this);});
// }else{
// orgActions.listUnitSupDirect(data, function(json){v = json.data; o2.runCallback(callback, "success", [v], this);});
// }
// }else{
// var v = null;
// if (nested){
// orgActions.listUnitSupNested(data, function(json){v = json.data;}, null, false);
// }else{
// orgActions.listUnitSupDirect(data, function(json){v = json.data;}, null, false);
// }
// return v;
// }
},
//根据个人身份获取组织
//flag 数字 表示获取第几层的组织
// 字符串 表示获取指定类型的组织
// 空 表示获取直接所在的组织
getUnitByIdentity: function(name, flag, async){
getOrgActions();
var getUnitMethod = "current";
var v;
if (flag){
if (typeOf(flag)==="string") getUnitMethod = "type";
if (typeOf(flag)==="number") getUnitMethod = "level";
}
var cb;
var promise;
switch (getUnitMethod){
case "current":
var data = {"identityList":getNameFlag(name)};
// var cb = ((async && o2.typeOf(async)=="function") ? (async.isAG ? async : async.ag()) : null) || function(json){
// v = json.data; v=(v&&v.length===1) ? v[0] : v; return v;
// }.ag().catch(function(json){ return json; });
cb = function(json){
v = json.data; v=(v&&v.length===1) ? v[0] : v;
if (async && o2.typeOf(async)=="function") return async(v);
return v;
};
promise = orgActions.listUnitWithIdentity(data, cb, null, !!async);
break;
case "type":
var data = {"identity":(typeOf(name)==="object") ? (name.distinguishedName || name.id || name.unique || name.name) : name,"type":flag};
cb = function(json){
v = json.data;
if (async && o2.typeOf(async)=="function") return async(v);
return v;
};
// var cb = ((async && o2.typeOf(async)=="function") ? (async.isAG ? async : async.ag()) : null) || function(json){
// v = json.data; return v;
// }.ag().catch(function(json){ return json; });
promise = orgActions.getUnitWithIdentityAndType(data, cb, null, !!async);
break;
case "level":
var data = {"identity":(typeOf(name)==="object") ? (name.distinguishedName || name.id || name.unique || name.name) : name,"level":flag};
cb = function(json){
v = json.data; v=(v&&v.length===1) ? v[0] : v;
if (async && o2.typeOf(async)=="function") return async(v);
return v;
};
// var cb = ((async && o2.typeOf(async)=="function") ? (async.isAG ? async : async.ag()) : null) || function(json){
// v = json.data; return v;
// }.ag().catch(function(json){ return json; });
promise = orgActions.getUnitWithIdentityAndLevel(data, cb, null, !!async);
break;
}
return (!!async) ? promise : v;
},
//列出身份所在组织的所有上级组织
listAllSupUnitWithIdentity: function(name, async){
getOrgActions();
var data = {"identityList":getNameFlag(name)};
var v = null;
var cb = function(json){
v = json.data;
if (async && o2.typeOf(async)=="function") return async(v);
return v;
};
var promise = orgActions.listUnitSupNestedWithIdentity(data, cb, null, !!async);
return (!!async) ? promise : v;
},
//获取人员所在的所有组织
listUnitWithPerson: function(name, async){
getOrgActions();
var data = {"personList":getNameFlag(name)};
var v = null;
var cb = function(json){
v = json.data;
if (async && o2.typeOf(async)=="function") return async(v);
return v;
};
var promise = orgActions.listUnitWithPerson(data, cb, null, !!async);
return (!!async) ? promise : v;
},
//列出人员所在组织的所有上级组织
listAllSupUnitWithPerson: function(name, async){
getOrgActions();
var data = {"personList":getNameFlag(name)};
var v = null;
var cb = function(json){
v = json.data;
if (async && o2.typeOf(async)=="function") return async(v);
return v;
};
var promise = orgActions.listUnitSupNestedWithPerson(data, cb, null, !!async);
return (!!async) ? promise : v;
},
//根据组织属性,获取所有符合的组织
listUnitWithAttribute: function(name, attribute, async){
getOrgActions();
var data = {"name":name,"attribute":attribute};
var v = null;
var cb = function(json){
v = json.data;
if (async && o2.typeOf(async)=="function") return async(v);
return v;
};
promise = orgActions.listUnitWithAttribute(data, cb, null, !!async);
return (!!async) ? promise : v;
},
//根据组织职务,获取所有符合的组织
listUnitWithDuty: function(name, id, async){
getOrgActions();
var data = {"name":name,"identity":(typeOf(id)==="object") ? (id.distinguishedName || id.id || id.unique || id.name) : id};
var v = null;
var cb = function(json){
v = json.data;
if (async && o2.typeOf(async)=="function") return async(v);
return v;
};
var promise = orgActions.listUnitWithDuty(data, cb, null, !!async);
return (!!async) ? promise : v;
},
//组织职务***********
//获取指定的组织职务的身份
getDuty: function(duty, id, async){
getOrgActions();
var data = {"name":duty,"unit":(typeOf(id)==="object") ? (id.distinguishedName || id.id || id.unique || id.name) : id};
var v = null;
var cb = function(json){
v = json.data;
if (async && o2.typeOf(async)=="function") return async(v);
return v;
};
var promise = orgActions.getDuty(data, cb, null, !!async);
return (!!async) ? promise : v;
},
//获取身份的所有职务名称
listDutyNameWithIdentity: function(name, async){
getOrgActions();
var data = {"identityList":getNameFlag(name)};
var v = null;
var cb = function(json){
v = json.data.nameList;
if (async && o2.typeOf(async)=="function") return async(v);
return v;
};
var promise = orgActions.listDutyNameWithIdentity(data, cb, null, !!async);
return (!!async) ? promise : v;
},
//获取组织的所有职务名称
listDutyNameWithUnit: function(name, async){
getOrgActions();
var data = {"unitList":getNameFlag(name)};
var v = null;
var cb = function(json){
v = json.data.nameList;
if (async && o2.typeOf(async)=="function") return async(v);
return v;
};
var promise = orgActions.listDutyNameWithUnit(data, cb, null, !!async);
return (!!async) ? promise : v;
},
//获取组织的所有职务
listUnitAllDuty: function(name, async){
getOrgActions();
var data = {"unitList":getNameFlag(name)};
var v = null;
var cb = function(json){
v = json.data;
if (async && o2.typeOf(async)=="function") return async(v);
return v;
};
var promise = orgActions.listUnitAllDuty(data, cb, null, !!async);
return (!!async) ? promise : v;
},
//列出顶层组织
listTopUnit: function(async){
var action = MWF.Actions.get("x_organization_assemble_control");
var v = null;
var cb = function(json){
v = json.data;
if (async && o2.typeOf(async)=="function") return async(v);
return v;
};
var promise = action.listTopUnit(cb, null, !!async);
return (!!async) ? promise : v;
},
//组织属性**************
//添加组织属性值(在属性中添加values值,如果没有此属性,则创建一个)
appendUnitAttribute: function(unit, attr, values, success, failure, async){
getOrgActions();
var unitFlag = (typeOf(unit)==="object") ? (unit.distinguishedName || unit.id || unit.unique || unit.name) : unit;
var data = {"attributeList":values,"name":attr,"unit":unitFlag};
var cb = function(json){
if (success) return success(json);
}.ag().catch(function(xhr, text, error){
if (failure) return failure(xhr, text, error);
});
orgActions.appendPersonAttribute(data, cb, null, !!async);
// orgActions.appendUnitAttribute(data, function(json){
// if (json.data.value){
// if (success) success();
// }else{
// if (failure) failure(null, "", "append values failed");
// }
// }, function(xhr, text, error){
// if (failure) failure(xhr, text, error);
// }, false);
},
//设置组织属性值(将属性值修改为values,如果没有此属性,则创建一个)
setUnitAttribute: function(unit, attr, values, success, failure, async){
getOrgActions();
var unitFlag = (typeOf(unit)==="object") ? (unit.distinguishedName || unit.id || unit.unique || unit.name) : unit;
var data = {"attributeList":values,"name":attr,"unit":unitFlag};
var cb = function(json){
if (success) return success(json);
}.ag().catch(function(xhr, text, error){
if (failure) return failure(xhr, text, error);
});
orgActions.setUnitAttribute(data, cb, null, !!async);
// orgActions.setUnitAttribute(data, function(json){
// if (json.data.value){
// if (success) success();
// }else{
// if (failure) failure(null, "", "append values failed");
// }
// }, function(xhr, text, error){
// if (failure) failure(xhr, text, error);
// }, false);
},
//获取组织属性值
getUnitAttribute: function(unit, attr, async){
getOrgActions();
var unitFlag = (typeOf(unit)==="object") ? (unit.distinguishedName || unit.id || unit.unique || unit.name) : unit;
var data = {"name":attr,"unit":unitFlag};
var v = null;
var cb = function(json){
v = json.data.attributeList;
if (async && o2.typeOf(async)=="function") return async(v);
return v;
};
var promise = orgActions.getUnitAttribute(data, cb, null, !!async);
return (!!async) ? promise : v;
},
//列出组织所有属性的名称
listUnitAttributeName: function(name, async){
getOrgActions();
var data = {"unitList":getNameFlag(name)};
var v = null;
var cb = function(json){
v = json.data.nameList;
if (async && o2.typeOf(async)=="function") return async(v);
return v;
};
var promise = orgActions.listUnitAttributeName(data, cb, null, !!async);
return (!!async) ? promise : v;
},
//列出组织的所有属性
listUnitAllAttribute: function(name, async){
getOrgActions();
var data = {"unitList":getNameFlag(name)};
var v = null;
var cb = function(json){
v = json.data;
if (async && o2.typeOf(async)=="function") return async(v);
return v;
};
var promise = orgActions.listUnitAllAttribute(data, cb, null, !!async);
return (!!async) ? promise : v;
}
};
this.Action = (function () {
var actions = [];
return function (root, json) {
var action = actions[root] || (actions[root] = new MWF.xDesktop.Actions.RestActions("", root, ""));
action.getActions = function (callback) {
if (!this.actions) this.actions = {};
Object.merge(this.actions, json);
if (callback) callback();
};
this.invoke = function (option) {
action.invoke(option)
}
}
})();
this.service = {
"jaxwsClient": {},
"jaxrsClient": {}
};
var lookupAction = null;
var getLookupAction = function (callback) {
if (!lookupAction) {
MWF.require("MWF.xDesktop.Actions.RestActions", function () {
lookupAction = new MWF.xDesktop.Actions.RestActions("", "x_processplatform_assemble_surface", "");
lookupAction.getActions = function (actionCallback) {
this.actions = {
//"lookup": {"uri": "/jaxrs/view/flag/{view}/application/flag/{application}"},
//"getView": {"uri": "/jaxrs/view/{id}/design"}
"lookup": { "uri": "/jaxrs/queryview/flag/{view}/application/flag/{application}/execute", "method": "PUT" },
"getView": { "uri": "/jaxrs/queryview/flag/{view}/application/flag/{application}" }
};
if (actionCallback) actionCallback();
}
if (callback) callback();
});
} else {
if (callback) callback();
}
};
this.view = {
"lookup": function (view, callback, async) {
var filterList = { "filterList": (view.filter || null) };
MWF.Actions.get("x_query_assemble_surface").loadView(view.view, view.application, filterList, function (json) {
var data = {
"grid": json.data.grid || json.data.groupGrid,
"groupGrid": json.data.groupGrid
};
if (callback) callback(data);
}, null, async);
},
"lookupV1": function (view, callback) {
getLookupAction(function () {
lookupAction.invoke({
"name": "lookup", "async": true, "parameter": { "view": view.view, "application": view.application }, "success": function (json) {
var data = {
"grid": json.data.grid,
"groupGrid": json.data.groupGrid
};
if (callback) callback(data);
}.bind(this)
});
}.bind(this));
},
"select": function (view, callback, options) {
if (view.view) {
var viewJson = {
"application": view.application || _form.json.application,
"viewName": view.view || "",
"isTitle": (view.isTitle === false) ? "no" : "yes",
"select": (view.isMulti === false) ? "single" : "multi",
"filter": view.filter
};
if (!options) options = {};
options.width = view.width;
options.height = view.height;
options.title = view.caption;
var width = options.width || "700";
var height = options.height || "400";
if (layout.mobile) {
var size = document.body.getSize();
width = size.x;
height = size.y;
options.style = "viewmobile";
}
width = width.toInt();
height = height.toInt();
var size = _form.app.content.getSize();
var x = (size.x - width) / 2;
var y = (size.y - height) / 2;
if (x < 0) x = 0;
if (y < 0) y = 0;
if (layout.mobile) {
x = 20;
y = 0;
}
var _self = this;
MWF.require("MWF.xDesktop.Dialog", function () {
var dlg = new MWF.xDesktop.Dialog({
"title": options.title || "select view",
"style": options.style || "view",
"top": y,
"left": x - 20,
"fromTop": y,
"fromLeft": x - 20,
"width": width,
"height": height,
"html": "",
"maskNode": _form.app.content,
"container": _form.app.content,
"buttonList": [
{
"text": MWF.LP.process.button.ok,
"action": function () {
//if (callback) callback(_self.view.selectedItems);
if (callback) callback(_self.view.getData());
this.close();
}
},
{
"text": MWF.LP.process.button.cancel,
"action": function () { this.close(); }
}
]
});
dlg.show();
if (layout.mobile) {
var backAction = dlg.node.getElement(".MWF_dialod_Action_back");
var okAction = dlg.node.getElement(".MWF_dialod_Action_ok");
if (backAction) backAction.addEvent("click", function (e) {
dlg.close();
}.bind(this));
if (okAction) okAction.addEvent("click", function (e) {
//if (callback) callback(this.view.selectedItems);
if (callback) callback(this.view.getData());
dlg.close();
}.bind(this));
}
MWF.xDesktop.requireApp("query.Query", "Viewer", function () {
this.view = new MWF.xApplication.query.Query.Viewer(dlg.content.getFirst(), viewJson, { "style": "select" }, _form.app, _form.Macro);
}.bind(this));
}.bind(this));
}
}
};
this.statement = {
"execute": function (statement, callback, async) {
var parameter = this.parseParameter(statement.parameter);
var filterList = this.parseFilter(statement.filter, parameter);
var obj = {
"filterList": filterList,
"parameter" : parameter
};
MWF.Actions.load("x_query_assemble_surface").StatementAction.executeV2(
statement.name, statement.mode || "data", statement.page || 1, statement.pageSize || 20, obj,
function (json) {
if (callback) callback(json);
}, null, async);
},
parseFilter : function( filter, parameter ){
if( typeOf(filter) !== "array" )return [];
var filterList = [];
( filter || [] ).each( function (d) {
var parameterName = d.path.replace(/\./g, "_");
var value = d.value;
if( d.comparison === "like" || d.comparison === "notLike" ){
if( value.substr(0, 1) !== "%" )value = "%"+value;
if( value.substr(value.length-1,1) !== "%" )value = value+"%";
parameter[ parameterName ] = value; //"%"+value+"%";
}else{
if( d.formatType === "dateTimeValue" || d.formatType === "datetimeValue"){
value = "{ts '"+value+"'}"
}else if( d.formatType === "dateValue" ){
value = "{d '"+value+"'}"
}else if( d.formatType === "timeValue" ){
value = "{t '"+value+"'}"
}
parameter[ parameterName ] = value;
}
d.value = parameterName;
filterList.push( d );
}.bind(this));
return filterList;
},
parseParameter : function( obj ){
if( typeOf(obj) !== "object" )return {};
var parameter = {};
//传入的参数
for( var p in obj ){
var value = obj[p];
if( typeOf( value ) === "date" ){
value = "{ts '"+value.format("db")+"'}"
}
parameter[ p ] = value;
}
return parameter;
},
"select": function (statement, callback, options) {
if (statement.name) {
// var parameter = this.parseParameter(statement.parameter);
// var filterList = this.parseFilter(statement.filter, parameter);
var statementJson = {
"statementId": statement.name || "",
"isTitle": (statement.isTitle === false) ? "no" : "yes",
"select": (statement.isMulti === false) ? "single" : "multi",
"filter": statement.filter,
"parameter": statement.parameter
};
if (!options) options = {};
options.width = statement.width;
options.height = statement.height;
options.title = statement.caption;
var width = options.width || "700";
var height = options.height || "400";
if (layout.mobile) {
var size = document.body.getSize();
width = size.x;
height = size.y;
options.style = "viewmobile";
}
width = width.toInt();
height = height.toInt();
var size = _form.app.content.getSize();
var x = (size.x - width) / 2;
var y = (size.y - height) / 2;
if (x < 0) x = 0;
if (y < 0) y = 0;
if (layout.mobile) {
x = 20;
y = 0;
}
var _self = this;
MWF.require("MWF.xDesktop.Dialog", function () {
var dlg = new MWF.xDesktop.Dialog({
"title": options.title || "select statement view",
"style": options.style || "view",
"top": y,
"left": x - 20,
"fromTop": y,
"fromLeft": x - 20,
"width": width,
"height": height,
"html": "",
"maskNode": _form.app.content,
"container": _form.app.content,
"buttonList": [
{
"text": MWF.LP.process.button.ok,
"action": function () {
//if (callback) callback(_self.view.selectedItems);
if (callback) callback(_self.statement.getData());
this.close();
}
},
{
"text": MWF.LP.process.button.cancel,
"action": function () { this.close(); }
}
]
});
dlg.show();
if (layout.mobile) {
var backAction = dlg.node.getElement(".MWF_dialod_Action_back");
var okAction = dlg.node.getElement(".MWF_dialod_Action_ok");
if (backAction) backAction.addEvent("click", function (e) {
dlg.close();
}.bind(this));
if (okAction) okAction.addEvent("click", function (e) {
//if (callback) callback(this.view.selectedItems);
if (callback) callback(this.statement.getData());
dlg.close();
}.bind(this));
}
MWF.xDesktop.requireApp("query.Query", "Statement", function () {
this.statement = new MWF.xApplication.query.Query.Statement(dlg.content.getFirst(), statementJson, { "style": "select" }, _form.app, _form.Macro);
}.bind(this));
}.bind(this));
}
}
};
//include 引用脚本
//optionsOrName : {
// type : "", 默认为portal, 可以为 portal process cms
// application : "", 门户/流程/CMS的名称/别名/id, 默认为当前应用
// name : "" // 脚本名称/别名/id
//}
//或者name: "" // 脚本名称/别名/id
// if( !window.includedScripts ){
// var includedScripts = window.includedScripts = [];
// }else{
// var includedScripts = window.includedScripts;
// }
var includedScripts = [];
this.include = function (optionsOrName, callback) {
var options = optionsOrName;
if (typeOf(options) == "string") {
options = { name: options };
}
var name = options.name;
var type = (options.type && options.application) ? options.type : "portal";
var application = options.application || _form.json.application;
var key = type + "-" + application + "-" + name;
if (includedScripts.indexOf(key) > -1) {
if (callback) callback.apply(this);
return;
}
//if (includedScripts.indexOf( name )> -1){
// if (callback) callback.apply(this);
// return;
//}
var scriptAction;
switch (type) {
case "portal":
if (this.scriptActionPortal) {
scriptAction = this.scriptActionPortal;
} else {
MWF.require("MWF.xScript.Actions.PortalScriptActions", null, false);
scriptAction = this.scriptActionPortal = new MWF.xScript.Actions.PortalScriptActions();
}
break;
case "process":
if (this.scriptActionProcess) {
scriptAction = this.scriptActionProcess;
} else {
MWF.require("MWF.xScript.Actions.ScriptActions", null, false);
scriptAction = this.scriptActionProcess = new MWF.xScript.Actions.ScriptActions();
}
break;
case "cms":
if (this.scriptActionCMS) {
scriptAction = this.scriptActionCMS;
} else {
MWF.require("MWF.xScript.Actions.CMSScriptActions", null, false);
scriptAction = this.scriptActionCMS = new MWF.xScript.Actions.CMSScriptActions();
}
break;
}
scriptAction.getScriptByName(application, name, includedScripts, function (json) {
if (json.data) {
includedScripts.push(key);
//名称、别名、id
json.data.importedList.each( function ( flag ) {
if( type === "portal" ){
includedScripts.push( type + "-" + json.data.portal + "-" + flag );
if( json.data.portalName )includedScripts.push( type + "-" + json.data.portalName + "-" + flag );
if( json.data.portalAlias )includedScripts.push( type + "-" + json.data.portalAlias + "-" + flag );
}else if( type === "cms" ){
includedScripts.push( type + "-" + json.data.appId + "-" + flag );
if( json.data.appName )includedScripts.push( type + "-" + json.data.appName + "-" + flag );
if( json.data.appAlias )includedScripts.push( type + "-" + json.data.appAlias + "-" + flag );
}else if( type === "process" ){
includedScripts.push( type + "-" + json.data.application + "-" + flag );
if( json.data.appName )includedScripts.push( type + "-" + json.data.appName + "-" + flag );
if( json.data.appAlias )includedScripts.push( type + "-" + json.data.appAlias + "-" + flag );
}
});
includedScripts = includedScripts.concat(json.data.importedList);
MWF.Macro.exec(json.data.text, this);
if (callback) callback.apply(this);
} else {
if (callback) callback.apply(this);
}
}.bind(this), null, false);
};
this.define = function (name, fun, overwrite) {
var over = true;
if (overwrite === false) over = false;
var o = {};
o[name] = { "value": fun, "configurable": over };
MWF.defineProperties(this, o);
}.bind(this);
//仅前台对象-----------------------------------------
//form
/**
* 当查询设计中使用了select语句,并且配置了视图,可以在查询视图中使用本章API。
* queryStatement对象在查询视图中可用。它的很多方法与queryView类似。(仅前端脚本可用)
* @module queryStatement
* @borrows module:queryView.confirm as confirm
* @borrows module:queryView.alert as alert
* @borrows module:queryView.notice as notice
* @borrows module:queryView.addEvent as addEvent
* @borrows module:queryView.openWork as openWork
* @borrows module:queryView.openJob as openJob
* @borrows module:queryView.openDocument as openDocument
* @borrows module:queryView.openPortal as openPortal
* @borrows module:queryView.openCMS as openCMS
* @borrows module:queryView.openProcess as openProcess
* @borrows module:queryView.openApplication as openApplication
* @borrows module:queryView.createDocument as createDocument
* @borrows module:queryView.startProcess as startProcess
* @example
* //您可以在查询视图中,通过this来获取queryStatement对象,如下:
* var queryStatement = this.queryStatement;
*/
/**
* 当查询视图被嵌入到门户页面、流程表单或内容管理表单的时候,可以通过这个方法来获取页面或表单的上下文。
* @method getParentEnvironment
* @static
* @return {MWF.xScript.Environment|MWF.xScript.CMSEnvironment} 页面或表单的上下文.
* @example
* this.queryStatement.getParentEnvironment();
* @example
* var env = this.queryStatement.getParentEnvironment(); //当视图被嵌入到页面的时候,可以在视图里获取页面的上下文
* env.page.toPortal( "公文门户" ); //调用page的toPage() 跳转到其他门户
*/
/**
* 获取查询视图当前页的基本信息。
* @method getPageInfor
* @memberOf module:queryStatement
* @static
* @return {Object} 当前页的信息,格式如下:
*{
* "pages": 3, //总页数
* "perPageCount": 50, //每页的条数
* "currentPageNumber": 1 // 当前页数
* }
*
* @example
* this.queryStatement.getPageInfor();
*/
/**
* 获取当前页的数据。
* @method getPageData
* @memberOf module:queryStatement
* @static
* @return {Object[]} 当前页数据。
* 数据格式和 jpql 语句的写法有关
* 如: "select o from table o" 返回 json数组
*[
{
"id" : "id1",
"title" : "title1"
},
{
"id" : "id2",
"title" : "title2"
},
...
*]
*
* 如:"select id, title from table o" 返回 二维数组:
*[
["id1", "title1"],
["id2", "title2"],
...
*]
*
* @example
* var data = this.queryStatement.getPageData();
*/
/**
* 跳转到指定的页面。
* @method toPage
* @memberOf module:queryStatement
* @static
* @param {Number} pageNumber - 需要跳转的页码。
* @param {Function} [callback ] - 跳转的页面数据加载完成以后的回调方法。
* @example
* var data = this.queryStatement.toPage( pageNumber, callback );
* @example
* // 跳转到第2页并且获取该页的数据。
* this.queryStatement.toPage( 2, function(){
* var data = this.queryStatement.getPageData();
* }.bind(this) )
*/
/**
* 当查询视图设置了允许多选的时候,可以通过这个方法全部选中当前页面的条目。
* @method selectAll
* @memberOf module:queryStatement
* @static
* @example
* this.queryStatement.selectAll();
*/
/**
* 当查询视图设置了允许多选的时候,可以通过这个方法取消选中的条目。
* @method unSelectAll
* @memberOf module:queryStatement
* @static
* @example
* this.queryStatement.unSelectAll();
*/
/**
* 获取选中的条目的数据。
* @method getSelectedData
* @memberOf module:queryStatement
* @static
* @return {Object[]} 选中的条目的数据。
* 数据格式和 jpql 语句的写法有关
* 如: "select o from table o" 返回 json数组
*[
{
"id" : "id1",
"title" : "title1"
},
{
"id" : "id2",
"title" : "title2"
},
...
*]
*
* 如:"select id, title from table o" 返回 二维数组:
*[
["id1", "title1"],
["id2", "title2"],
...
*]
*
* @example
* var data = this.queryStatement.getSelectedData();
*/
/**获取queryView对应的DOM对象。
* @method node
* @static
* @methodOf module:queryStatement
* @see module:form.node
*/
/**
* queryView对象可在视图中可用。它的很多方法与form类似。(仅前端脚本可用)
* @module queryView
* @example
* //您可以在视图中,通过this来获取queryView对象,如下:
* var queryView = this.queryView;
*/
this.page = this.form = this.queryView = this.queryStatement = {
/**
* 当视图被嵌入到门户页面、流程表单或内容管理表单的时候,可以通过这个方法来获取页面或表单的上下文。
* @method getParentEnvironment
* @static
* @return {MWF.xScript.Environment|MWF.xScript.CMSEnvironment} 页面或表单的上下文.
* @example
* this.queryView.getParentEnvironment();
* @example
* var env = this.queryView.getParentEnvironment(); //当视图被嵌入到页面的时候,可以在视图里获取页面的上下文
* env.page.toPortal( "公文门户" ); //调用page的toPage() 跳转到其他门户
*/
"getParentEnvironment" : function () { return _form.getParentEnvironment(); }, //视图嵌入的表单或页面的上下文
/**
* 获取查询的配置信息。
* @method getStatementInfor
* @memberOf module:queryStatement
* @static
* @return {StatementInfor} 查询的配置信息.
* @example
* this.queryStatement.getStatementInfor();
*/
"getStatementInfor" : function () { return _form.getStatementInfor ? _form.getStatementInfor() : null; },
/**
* 获取查询的配置信息。
* @method getViewInfor
* @memberOf module:queryView
* @static
* @return {ViewInfor} 视图的配置信息.
* @example
* this.queryView.getViewInfor();
*/
"getViewInfor" : function () { return _form.getViewInfor(); },
/**
* 获取视图或查询视图当前页的基本信息。
* @method getPageInfor
* @memberOf module:queryView
* @static
* @return {Object} 当前页的信息,格式如下:
*{
* "pages": 3, //总页数
* "perPageCount": 50, //每页的条数
* "currentPageNumber": 1 // 当前页数
* }
*
* @example
* //视图中的用法
* this.queryView.getPageInfor();
*
* //查询视图中的用法
* this.queryStatement.getPageInfor();
*/
"getPageInfor" : function () { return _form.getPageInfor(); },
/**
* 获取当前页的数据。
* @method getPageData
* @memberOf module:queryView
* @static
* @return {Object[]} 当前页数据。
* 没有分类时候,数据格式如下:
*[
* {
* "bundle": "099ed3c9-dfbc-4094-a8b7-5bfd6c5f7070", //cms 的 documentId, process 的 jobId
* "data": { //视图中配置的数据
* "title": "考勤管理-配置-统计周期设置", //列名称及列值
* "time": "2018-08-25 11:29:45"
* }
* },
* ...
*]
*
* 有分类的时候,数据格式如下:
*[
* {
* "group": "工作日志", //分类1
* "list": [ //分类下的数据
* {
* "bundle": "001257be-725a-43cf-9679-3892bbab696a", //cms 的 documentId, process 的 jobId
* "data": { //视图中配置的数据
* "title": "标题", //列名称及列值
* "time": "2018-07-31 15:39:13",
* "category": "工作日志"
* }
* },
* ...
* ]
* },
* ...
*]
*
* @example
* var data = this.queryView.getPageData();
*/
"getPageData" : function () { return _form.getPageData(); },
/**
* 跳转到指定的页面。
* @method toPage
* @memberOf module:queryView
* @static
* @param {Number} pageNumber - 需要跳转的页码。
* @param {Function} [callback ] - 跳转的页面数据加载完成以后的回调方法。
* @example
* var data = this.queryView.toPage( pageNumber, callback );
* @example
* // 跳转到第2页并且获取该页的数据。
* this.queryView.toPage( 2, function(){
* var data = this.queryView.getPageData();
* }.bind(this) )
*/
"toPage" : function ( pageNumber, callback ) { return _form.toPage(pageNumber, callback); },
/**
* 当视图设置了允许多选的时候,可以通过这个方法全部选中当前页面的条目。
* @method selectAll
* @memberOf module:queryView
* @static
* @example
* this.queryView.selectAll();
*/
"selectAll" : function () { return _form.selectAll(); },
/**
* 当视图设置了允许多选的时候,可以通过这个方法取消选中的条目。
* @method unSelectAll
* @memberOf module:queryView
* @static
* @example
* this.queryView.unSelectAll();
*/
"unSelectAll" : function () { return _form.unSelectAll(); },
/**
* 获取选中的条目的数据。
* @method getSelectedData
* @memberOf module:queryView
* @static
* @return {Object[]} 选中的条目的数据。
* 格式如下:
*
* [
{
"bundle": "099ed3c9-dfbc-4094-a8b7-5bfd6c5f7070", //cms 的 documentId, process 的 jobId
"data": { //视图中配置的数据
"title": "考勤管理-配置-统计周期设置", //列名称及列值
"time": "2018-08-25 11:29:45"
}
},
...
* ]
* @example
* var data = this.queryView.getSelectedData();
*/
"getSelectedData" : function () { return _form.getSelectedData(); },
/**
* 设置视图的过滤条件,该方法不能修改视图中默认的过滤条件(在开发视图的时候添加的过滤条件),而是在这上面新增。
* @method setFilter
* @memberOf module:queryView
* @static
* @param {(ViewFilter[]|ViewFilter|Null)} [filter] 过滤条件。
* 当不传参数、参数为null或为空数组的情况下,表示清空非视图默认的过滤条件。
* 如果传入对象或者非空数组的时候,参数如下:
* [
* {
* "logic":"and",
* "path":"$work.title",
* "comparison":"like",
* "value":"7月",
* "formatType":"textValue"
* }
*]
*
* @param {Function} [callback] 过滤完成并重新加载数据后的回调方法。
* @example
* var filter = [
* {
* "logic":"and",
* "path":"$work.title",
* "comparison":"like",
* "value":"7月",
* "formatType":"textValue"
* }
*];
* this.queryView.setFilter( filter );
*/
"setFilter" : function ( filter, callback ) { return _form.setFilter(filter, callback); },
"setStatementFilter" : function ( filter , parameter, callback) { return _form.setFilter(filter, parameter, callback); },
/**
* 把当前视图切换成另外一个视图。
* @method switchView
* @memberOf module:queryView
* @static
* @param {Object} options 需要跳转的参数配置。参数说明如下:
*
* {
* "application": application, //必选,视图的所在应用id
* "viewName": viewName, //必选,视图的名称
* "filter": [
* {
* "logic":"and",
* "path":"$work.title",
* "comparison":"like",
* "value":"7月",
* "formatType":"textValue"
* }
* ], //可选,增加视图的过滤条件(ViewFilter),如果不传,则使用原视图的配置;如果需要去掉原视图的配置,则传入空数组 []
* "isTitle": "yes", //可选,是否显示t视图的标题行,可选值有:yes no
* "select": "none", //可选,是否允许新视图选择,如果不传,则使用原视图的配置, 可选值有: 不允许选择 none, 单选 single,多选 multi
* "titleStyles": {
* "color" : "red",
* "font-size" : "14px"
* }, //可选,标题行样式,如果不传,则使用原视图的配置
* "itemStyles": {
* "color" : "#333",
* "font-size" : "12px"
* }, //可选,内容行样式,如果不传,则使用原视图的配置
* "isExpand": "no", //可选,默认是否展开分类,如果不传,则使用原视图的配置, 可选值有:yes no
* }
*
* @example
* this.queryView.switchView( options );
*/
"switchView" : function ( options ) { return _form.switchView(options); },
"switchStatement" : function ( options ) { if(_form.switchStatement)_form.switchStatement(options) ; },
/**
* 重新加载视图。
* @method reload
* @methodOf module:queryView
* @static
* @example
* this.queryView.reload();
*/
"reload" : function () { _form.reload(); },
// "getInfor": function () { return ev.pageInfor; },
// "infor": ev.pageInfor,
// "getApp": function () { return _form.app; },
// "app": _form.app,
/**获取queryView对应的DOM对象。
* @method node
* @static
* @methodOf module:queryView
* @see module:form.node
*/
"node": function () { return _form.node; },
// "get": function (name) { return (_form.all) ? _form.all[name] : null; },
// "getWidgetModule": function (widget, moduleName) {
// if (!_form.widgetModules || !_form.widgetModules[widget]) return null;
// var module = _form.widgetModules[widget][moduleName];
// return module || null;
// },
// "getField": function (name) { return _forms[name]; },
// "getAction": function () { return _form.workAction },
"getDesktop": function () { return _form.app ? _form.app.desktop : null},
// "getData": function () { return new MWF.xScript.JSONData(_form.getData()); },
//"save": function(callback){_form.saveWork(callback);},
// "close": function () { _form.closeWork(); },
// "print": function (application, form) {
// _form.printWork(application, form);
// },
/**弹出一个确认框。
* @method confirm
* @static
* @methodOf module:queryView
* @see module:form.confirm
*/
"confirm": function (type, title, text, width, height, ok, cancel, callback, mask, style) {
// var p = MWF.getCenter({"x": width, "y": height});
// e = {"event": {"clientX": p.x,"x": p.x,"clientY": p.y,"y": p.y}};
// _form.confirm(type, e, title, text, width, height, ok, cancel, callback, mask, style);
if ((arguments.length <= 1) || o2.typeOf(arguments[1]) === "string") {
var p = MWF.getCenter({ "x": width, "y": height });
e = { "event": { "clientX": p.x, "x": p.x, "clientY": p.y, "y": p.y } };
_form.confirm(type, e, title, text, width, height, ok, cancel, callback, mask, style);
} else {
e = (arguments.length > 1) ? arguments[1] : null;
title = (arguments.length > 2) ? arguments[2] : null;
text = (arguments.length > 3) ? arguments[3] : null;
width = (arguments.length > 4) ? arguments[4] : null;
height = (arguments.length > 5) ? arguments[5] : null;
ok = (arguments.length > 6) ? arguments[6] : null;
cancel = (arguments.length > 7) ? arguments[7] : null;
callback = (arguments.length > 8) ? arguments[8] : null;
mask = (arguments.length > 9) ? arguments[9] : null;
style = (arguments.length > 10) ? arguments[10] : null;
_form.confirm(type, e, title, text, width, height, ok, cancel, callback, mask, style);
}
},
/**显示一个带关闭按钮的信息框。
* @method alert
* @static
* @methodOf module:queryView
* @see module:form.alert
*/
"alert": function(type, title, text, width, height){
_form.alert(type, title, text, width, height);
},
/**显示一个信息框。
* @method notice
* @static
* @methodOf module:queryView
* @see module:form.notice
*/
"notice": function (content, type, target, where, offset, option) {
_form.notice(content, type, target, where, offset, option);
},
/** 给视图添加事件。
* @method addEvent
* @static
* @methodOf module:queryView
* @see module:form.addEvent
*/
"addEvent": function (e, f) { _form.addEvent(e, f); },
// "openWindow": function (form, app) {
// _form.openWindow(form, app);
// },
// "toPage": function (name, par, nohis) {
// _form.app.toPage(name, par, nohis);
// },
// "toPortal": function (portal, page, par) {
// _form.app.toPortal(portal, page, par);
// },
/**打开一个在流转或已完成的流程实例。
* @method openWork
* @static
* @methodOf module:queryView
* @see module:form.openWork
*/
"openWork": function (id, completedId, title, options) {
var op = options || {};
op.workId = id;
op.workCompletedId = completedId;
op.docTitle = title;
op.appId = "process.Work" + (op.workId || op.workCompletedId);
return layout.desktop.openApplication(this.event, "process.Work", op);
},
/**根据流程的jobId打开工作。
* @method openJob
* @static
* @methodOf module:queryView
* @see module:form.openJob
*/
"openJob": function (id, choice, options) {
var workData = null;
o2.Actions.get("x_processplatform_assemble_surface").listWorkByJob(id, function (json) {
if (json.data) workData = json.data;
}.bind(this), null, false);
if (workData) {
var len = workData.workList.length + workData.workCompletedList.length;
if (len) {
if (len > 1 && choice) {
var node = new Element("div", { "styles": { "padding": "20px", "width": "500px" } }).inject(_form.node);
workData.workList.each(function (work) {
var workNode = new Element("div", {
"styles": {
"background": "#ffffff",
"border-radius": "10px",
"clear": "both",
"margin-bottom": "10px",
"height": "40px",
"padding": "10px 10px"
}
}).inject(node);
var html = "" +
"" + o2.LP.widget.open + "
" +
"" + work.title + "
" +
"" + work.activityName + "
" +
"
" + work.activityArrivedTime + "
" +
"
" + (work.manualTaskIdentityText || "") + "
";
workNode.set("html", html);
var action = workNode.getElement(".MWFAction");
action.store("work", work);
action.addEvent("click", function (e) {
var work = e.target.retrieve("work");
if (work) this.openWork(work.id, null, work.title, options);
dlg.close();
}.bind(this));
}.bind(this));
workData.workCompletedList.each(function (work) {
var workNode = new Element("div", {
"styles": {
"background": "#ffffff",
"border-radius": "10px",
"clear": "both",
"margin-bottom": "10px",
"height": "40px",
"padding": "10px 10px"
}
}).inject(node);
var html = "" +
"" + o2.LP.widget.open + "
" +
"" + work.title + "
" +
"" + o2.LP.widget.workcompleted + "
" +
"
" + work.completedTime + "
";
workNode.set("html", html);
var action = workNode.getElement(".MWFAction");
action.store("work", work);
action.addEvent("click", function (e) {
var work = e.target.retrieve("work");
if (work) this.openWork(null, work.id, work.title, options);
dlg.close();
}.bind(this));
}.bind(this));
var height = node.getSize().y + 20;
if (height > 600) height = 600;
var dlg = o2.DL.open({
"title": o2.LP.widget.choiceWork,
"style": "user",
"isResize": false,
"content": node,
"buttonList": [
{
"type": "cancel",
"text": o2.LP.widget.close,
"action": function () { dlg.close(); }
}
]
});
} else {
if (workData.workList.length) {
var work = workData.workList[0];
return this.openWork(work.id, null, work.title, options);
} else {
var work = workData.workCompletedList[0];
return this.openWork(null, work.id, work.title, options);
}
}
}
}
},
/**打开一个内容管理文档。
* @method openDocument
* @static
* @methodOf module:queryView
* @see module:form.openDocument
*/
"openDocument": function (id, title, options) {
var op = options || {};
op.documentId = id;
op.docTitle = title || "";
layout.desktop.openApplication(this.event, "cms.Document", op);
},
/**打开一个门户页面。
* @method openPortal
* @static
* @methodOf module:queryView
* @see module:form.openPortal
*/
"openPortal": function (name, page, par) {
var action = MWF.Actions.get("x_portal_assemble_surface");
action.getApplication(name, function (json) {
if (json.data) {
if (page) {
action.getPageByName(page, json.data.id, function (pageJson) {
var pageId = (pageJson.data) ? pageJson.data.id : "";
layout.desktop.openApplication(null, "portal.Portal", {
"portalId": json.data.id,
"pageId": pageId,
"parameters": par,
"appId": (par && par.appId) || ("portal.Portal" + json.data.id + pageId)
})
});
} else {
layout.desktop.openApplication(null, "portal.Portal", {
"portalId": json.data.id,
"parameters": par,
"appId": (par && par.appId) || ("portal.Portal" + json.data.id)
})
}
}
});
},
/**打开一个内容管理栏目。
* @method openCMS
* @static
* @methodOf module:queryView
* @see module:form.openCMS
*/
"openCMS": function (name) {
var action = MWF.Actions.get("x_cms_assemble_control");
action.getColumn(name, function (json) {
if (json.data) {
layout.desktop.openApplication(null, "cms.Module", {
"columnId": json.data.id,
"appId": "cms.Module" + json.data.id
});
}
});
},
/**打开一个流程应用。
* @method openProcess
* @static
* @methodOf module:queryView
* @see module:form.openProcess
*/
"openProcess": function (name) {
var action = MWF.Actions.get("x_processplatform_assemble_surface");
action.getApplication(name, function (json) {
if (json.data) {
layout.desktop.openApplication(null, "process.Application", {
"id": json.data.id,
"appId": "process.Application" + json.data.id
});
}
});
},
/**打开一个任意一个component应用。
* @method openApplication
* @static
* @methodOf module:queryView
* @see module:form.openApplication
*/
"openApplication": function (name, options) {
layout.desktop.openApplication(null, name, options);
},
/**创建一个内容管理文档。
* @method createDocument
* @static
* @methodOf module:queryView
* @see module:form.createDocument
*/
"createDocument": function (columnOrOptions, category, data, identity, callback, target, latest, selectColumnEnable, ignoreTitle) {
var column = columnOrOptions;
var onAfterPublish, onPostPublish;
if (typeOf(columnOrOptions) == "object") {
column = columnOrOptions.column;
category = columnOrOptions.category;
data = columnOrOptions.data;
identity = columnOrOptions.identity;
callback = columnOrOptions.callback;
target = columnOrOptions.target;
latest = columnOrOptions.latest;
selectColumnEnable = columnOrOptions.selectColumnEnable;
ignoreTitle = columnOrOptions.ignoreTitle;
onAfterPublish = columnOrOptions.onAfterPublish;
onPostPublish = columnOrOptions.onPostPublish;
}
if (target) {
if (layout.app && layout.app.inBrowser) {
layout.app.content.empty();
layout.app = null;
}
}
MWF.xDesktop.requireApp("cms.Index", "Newer", function () {
var starter = new MWF.xApplication.cms.Index.Newer(null, null, _form.app, null, {
"documentData": data,
"identity": identity,
"ignoreTitle": ignoreTitle === true,
"ignoreDrafted": latest === false,
"selectColumnEnable": !category || selectColumnEnable === true,
"restrictToColumn": !!category && selectColumnEnable !== true,
"categoryFlag": category, //category id or name
"columnFlag": column, //column id or name,
"onStarted": function (documentId, data) {
if (callback) callback();
},
"onPostPublish": function () {
if(onPostPublish)onPostPublish();
},
"onAfterPublish": function () {
if(onAfterPublish)onAfterPublish();
}
});
starter.load();
})
},
/** 启动一个流程实例。
* @method startProcess
* @static
* @methodOf module:queryView
* @see module:form.startProcess
*/
"startProcess": function (app, process, data, identity, callback, target, latest) {
if (arguments.length > 2) {
for (var i = 2; i < arguments.length; i++) {
if (typeOf(arguments[i]) == "boolean") {
target = arguments[i];
break;
}
}
}
if (target) {
if (layout.app && layout.app.inBrowser) {
//layout.app.content.empty();
layout.app.$openWithSelf = true;
}
}
var action = MWF.Actions.get("x_processplatform_assemble_surface").getProcessByName(process, app, function (json) {
if (json.data) {
MWF.xDesktop.requireApp("process.TaskCenter", "ProcessStarter", function () {
var starter = new MWF.xApplication.process.TaskCenter.ProcessStarter(json.data, _form.app, {
"workData": data,
"identity": identity,
"latest": latest,
"onStarted": function (data, title, processName) {
if (data.work){
var work = data.work;
var options = {"draft": work, "appId": "process.Work"+(new o2.widget.UUID).toString(), "desktopReload": false};
layout.desktop.openApplication(null, "process.Work", options);
}else{
var currentTask = [];
data.each(function(work){
if (work.currentTaskIndex != -1) currentTask.push(work.taskList[work.currentTaskIndex].work);
}.bind(this));
if (currentTask.length==1){
var options = {"workId": currentTask[0], "appId": currentTask[0]};
layout.desktop.openApplication(null, "process.Work", options);
}else{}
}
// var currentTask = [];
// data.each(function (work) {
// if (work.currentTaskIndex != -1) currentTask.push(work.taskList[work.currentTaskIndex].work);
// }.bind(this));
//
// if (currentTask.length == 1) {
// var options = { "workId": currentTask[0], "appId": currentTask[0] };
// layout.desktop.openApplication(null, "process.Work", options);
// } else { }
if (callback) callback(data);
}.bind(this)
});
starter.load();
}.bind(this));
}
});
}
//"app": _form.app
};
// this.form.currentRouteName = _form.json.currentRouteName;
// this.form.opinion = _form.json.opinion;
this.target = ev.target;
this.event = ev.event;
this.status = ev.status;
this.session = layout.desktop.session;
this.Actions = o2.Actions;
this.query = function (option) {
// options = {
// "name": "statementName",
// "data": "json data",
// "firstResult": 1,
// "maxResults": 100,
// "success": function(){},
// "error": function(){},
// "async": true or false, default is true
// }
if (option) {
var json = (option.data) || {};
if (option.firstResult) json.firstResult = option.firstResult.toInt();
if (option.maxResults) json.maxResults = option.maxResults.toInt();
o2.Actions.get("x_query_assemble_surface").executeStatement(option.name, json, success, error, options.async);
}
};
// this.Table = MWF.xScript.createTable();
};
if( !MWF.xScript.dictLoaded )MWF.xScript.dictLoaded = {};
if( !MWF.xScript.createDict ){
MWF.xScript.addDictToCache = function ( options, path, json ) {
if( !path )path = "root";
if( path.indexOf("root") !== 0 )path = "root." + path ;
var type = options.appType || "process";
var enableAnonymous = options.enableAnonymous || false;
var appFlagList = [];
if( options.application )appFlagList.push( options.application );
if( options.appId )appFlagList.push( options.appId );
if( options.appName )appFlagList.push( options.appName );
if( options.appAlias )appFlagList.push( options.appAlias );
var dictFlagList = [];
if( options.id )dictFlagList.push( options.id );
if( options.name )dictFlagList.push( options.name );
if( options.alias )dictFlagList.push( options.alias );
var cache = {};
cache[path] = json;
for( var i=0; i