/**
* @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 - 比较运算符,可选值:
*
值 | *应用类型 | *
---|---|
cms | *内容管理 | *
process | *流程管理 | *
portal | *门户管理 | *
query | *数据中心 | *
var dict = new this.Dict("bulletinDictionary"); //数据字典的名称、别名或id
*
* var dict = new this.Dict({
* //type: 应用类型。可以为process cms portal service。
* //在流程和内容管理中如果没有该选项或者值为空字符串,则表示应用脚本和被应用的脚本配置类型相同。
* //比如在流程的A应用脚本中引用流程B应用的脚本配置,则type可以省略。
* //为了兼容老版本,在门户中使用需要指定type,否则默认值为process
* type : "cms",
* application : "bulletin", //数据字典所在的流程、门户、CMS的名称、别名、id, 默认为当前应用,服务管理中忽略该参数
* name : "bulletinDictionary", // 数据字典的名称、别名、id
* anonymous : true //允许用户在未登录的情况下读取cms的数据字典, type为cms的时候改参数才有效,默认为false,该参数名也可以是 enableAnonymous
* });
*
* //引用服务管理中的数据字典
* var dict = new this.Dict({
* "type": "service",
* "name": "dictName"
* });
*
* //引用流程管理中的数据字典
* var dict = new this.Dict({
* "type": "process",
* "application": "appName",
* "name": "dictName"
* });
*
* //引用内容管理中的数据字典
* var dict = new this.Dict({
* "type": "cms",
* "application": "appName",
* "name": "dictName"
* });
*
* //引用门户管理中的数据字典
* var dict = new this.Dict({
* "type": "portal",
* "application": "appName",
* "name": "dictName"
* });
*
*
* @return {Object} Dict对象
* @o2syntax
* //您可以在页面、表单、流程各个嵌入脚本中,通过this.Dict()对本应用或其他应用的数据字典中的数据进行增删改查,如下:
* var dict = new this.Dict( options )
*/
/**
* 根据路径获取数据字典中的数据。
* @method get
* @methodOf module:Dict
* @static
* @param {String} [path] 数据字典中的数据路径,允许使用中文。当路径为多级时,用点号(.)分隔。当值为空的时候,表示获取数据字典中的所有数据。
* @param {Function} [success] 获取数据成功时的回调函数。
* @param {Function} [failure] 获取数据失败时的回调。
* @param {Boolean} [async] 是否异步执行,默认为false。
* @param {Boolean} [refresh] 是否忽略本地缓存直接从服务器获取,默认为false。如果需要在脚本中该数据字典是变化的(比如编号),需设置为true。
* @return {(Promise|Object|Array|String|Number|Boolean)}
* 当async为true时返回Promise({@link https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Promise|Promise说明});
* 否则返回数据字典的数据,类型和配置数据字典时候指定的一致。
* @o2syntax
* var data = dict.get( path, success, failure, async, refresh )
* @example
* var dict = new this.Dict("bulletinDictionary");
*
* //没有参数的时候,表示同步获取获取所有数据
* var data = dict.get()
*
* //同步执行,获取category下key为subCategory的数据
* var data = dict.get("category.subCategory");
*
* //异步执行,使用回调处理数据,如果category为数组,获取第0项数据
* dict.get("category.0", function(data){
* //data 是数据字典的数据
* }, function(xhr){
* //xhr 为 xmlHttpRequest
* }, true //异步执行
* )
*
* //异步执行,使用Promise处理结果
* var promise = dict.get("category", null, null, true);
* promise.then( function(data){
* //data 是数据字典的数据
* })
* @example
* [ value1, value2 ]
* @o2syntax
* //同步执行,返回该人员的属性值数组。
* var attributeList = this.org.getPersonAttribute( person, attr );
*
* //异步执行,返回Promise对象
* var promise = this.org.getPersonAttribute( person, attr, true);
* promise.then(function(attributeList){
* //attributeList 为返回该人员的属性值数组。
* })
*
* //异步执行,在回调方法中获取
* this.org.getPersonAttribute( person, attr, function(attributeList){
* //attributeList 为返回该人员的属性值数组。
* })
*/
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;
},
//列出人员所有属性的名称
/**
列出人员所有属性的名称数组。
* @method listPersonAttributeName
* @o2membercategory personAttribute
* @methodOf module:org
* @static
* @param {PersonFlag|PersonFlag[]} name - 人员的distinguishedName、id、unique属性值,人员对象,或上述属性值和对象的数组。
* @param {(Boolean|Function)} [asyncOrCallback] 当参数为boolean,表示是否异步执行,默认为false。当参数为function,表示回调方法。
* @return {String[]} 当async为true时,返回
* {@link https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Promise|Promise}。
* 否则返回人员属性名称数组,
* 如:[ attributeName1, attributeName2 ]
* @o2syntax
* //同步执行,返回人员所有属性的名称数组。
* var attributeNameList = this.org.listPersonAttributeName( person );
*
* //异步执行,返回Promise对象
* var promise = this.org.listPersonAttributeName( person, true);
* promise.then(function(attributeNameList){
* //attributeNameList 为人员所有属性的名称数组。
* })
*
* //异步执行,在回调方法中获取
* this.org.listPersonAttributeName( person, function(attributeNameList){
* //attributeNameList 为人员所有属性的名称数组。
* })
*/
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;
},
//列出人员的所有属性
/**
列出人员的所有属性对象数组。
* @method listPersonAllAttribute
* @o2membercategory personAttribute
* @methodOf module:org
* @static
* @param {PersonFlag|PersonFlag[]} name - 人员的distinguishedName、id、unique属性值,人员对象,或上述属性值和对象的数组。
* @param {(Boolean|Function)} [asyncOrCallback] 当参数为boolean,表示是否异步执行,默认为false。当参数为function,表示回调方法。
* @return {Object[]} 当async为true时,返回
* {@link https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Promise|Promise}。
* 否则返回人员属性对象数组,如:
* [{
* "name": "住址",
* "person": "张三@zhangsan@P",
* "attributeList": [
* "杭州市","绍兴市"
* ]
* }]
* @o2syntax
* //同步执行,返回人员所有属性的对象数组。
* var attributeObjectList = this.org.listPersonAllAttribute( person );
*
* //异步执行,返回Promise对象
* var promise = this.org.listPersonAllAttribute( person, true);
* promise.then(function(attributeObjectList){
* //attributeObjectList 为人员所有属性的对象数组。
* })
*
* //异步执行,在回调方法中获取
* this.org.listPersonAllAttribute( person, function(attributeObjectList){
* //attributeObjectList 为人员所有属性的对象数组。
* })
*/
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;
},
//组织属性**************
//添加组织属性值(在属性中添加values值,如果没有此属性,则创建一个)
/**
* 添加组织属性值(在属性中添加values值,如果没有此属性,则创建一个)
* @method appendUnitAttribute
* @o2membercategory unitAttribute
* @methodOf module:org
* @static
* @param {UnitFlag} unit - 组织的distinguishedName、id、unique属性值,组织对象。
* @param {String} attribute 属性名称。
* @param {String[]} valueArray 属性值,必须为数组。
* @param {Function} [success] 执行成功的回调。
* @param {Function} [failure] 执行失败的回调。
* @param {(Boolean)} [async] 当参数为boolean,表示是否异步执行,默认为false。
* @o2syntax
* //同步执行
* this.org.appendUnitAttribute( unit, attribute, valueArray);
*
* //异步执行
* this.org.appendUnitAttribute( unit, attribute, valueArray, function(){
* //执行成功的回调
* }, null, true);
*/
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 v = null;
var cb = function(json){
v = json.data;
if (async && o2.typeOf(async)=="function") return async(v);
return v;
};
var promise = orgActions.appendUnitAttribute(data, cb, null, !!async);
return (!!async) ? promise : v;
// 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,如果没有此属性,则创建一个)
/**
* 设置组织属性值(将属性值修改为values,如果没有此属性,则创建一个)
* @method setUnitAttribute
* @o2membercategory unitAttribute
* @methodOf module:org
* @static
* @param {UnitFlag} unit - 组织的distinguishedName、id、unique属性值,组织对象。
* @param {String} attribute 属性名称。
* @param {String[]} valueArray 属性值,必须为数组。
* @param {Function} [success] 执行成功的回调。
* @param {Function} [failure] 执行失败的回调。
* @param {(Boolean)} [async] 当参数为boolean,表示是否异步执行,默认为false。
* @o2syntax
* //同步执行
* this.org.setUnitAttribute( unit, attribute, valueArray);
*
* //异步执行
* this.org.setUnitAttribute( unit, attribute, valueArray, function(){
* //执行成功的回调
* }, null, true);
*/
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 v = null;
var cb = function(json){
v = json.data;
if (async && o2.typeOf(async)=="function") return async(v);
return v;
};
var promise = orgActions.setUnitAttribute(data, cb, null, !!async);
return (!!async) ? promise : v;
// 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);
},
//获取组织属性值
/**
根据组织标识和属性名称获取对应属性值。
* @method getUnitAttribute
* @o2membercategory unitAttribute
* @methodOf module:org
* @static
* @param {UnitFlag} unit - 组织的distinguishedName、id、unique属性值,组织对象。
* @param {String} attr 属性名称。
* @param {(Boolean|Function)} [asyncOrCallback] 当参数为boolean,表示是否异步执行,默认为false。当参数为function,表示回调方法。
* @return {String[]} 当async为true时,返回
* {@link https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Promise|Promise}。
* 否则返回属性值数组,
* 如:[ value1, value2 ]
* @o2syntax
* //同步执行,返回该组织的属性值数组。
* var attributeList = this.org.getUnitAttribute( unit, attr );
*
* //异步执行,返回Promise对象
* var promise = this.org.getUnitAttribute( unit, attr, true);
* promise.then(function(attributeList){
* //attributeList 为返回该组织的属性值数组。
* })
*
* //异步执行,在回调方法中获取
* this.org.getUnitAttribute( unit, attr, function(attributeList){
* //attributeList 为返回该组织的属性值数组。
* })
*/
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;
},
//列出组织所有属性的名称
/**
列出组织所有属性的名称数组。
* @method listUnitAttributeName
* @o2membercategory unitAttribute
* @methodOf module:org
* @static
* @param {UnitFlag|UnitFlag[]} name - 组织的distinguishedName、id、unique属性值,组织对象,或上述属性值和对象的数组。
* @param {(Boolean|Function)} [asyncOrCallback] 当参数为boolean,表示是否异步执行,默认为false。当参数为function,表示回调方法。
* @return {String[]} 当async为true时,返回
* {@link https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Promise|Promise}。
* 否则返回组织属性名称数组,
* 如:[ attributeName1, attributeName2 ]
* @o2syntax
* //同步执行,返回组织所有属性的名称数组。
* var attributeNameList = this.org.listUnitAttributeName( unit );
*
* //异步执行,返回Promise对象
* var promise = this.org.listUnitAttributeName( unit, true);
* promise.then(function(attributeNameList){
* //attributeNameList 为组织所有属性的名称数组。
* })
*
* //异步执行,在回调方法中获取
* this.org.listUnitAttributeName( unit, function(attributeNameList){
* //attributeNameList 为组织所有属性的名称数组。
* })
*/
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;
},
//列出组织的所有属性
/**
列出组织的所有属性对象数组。
* @method listUnitAllAttribute
* @o2membercategory unitAttribute
* @methodOf module:org
* @static
* @param {UnitFlag|UnitFlag[]} name - 组织的distinguishedName、id、unique属性值,组织对象,或上述属性值和对象的数组。
* @param {(Boolean|Function)} [asyncOrCallback] 当参数为boolean,表示是否异步执行,默认为false。当参数为function,表示回调方法。
* @return {Object[]} 当async为true时,返回
* {@link https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Promise|Promise}。
* 否则返回组织属性对象数组,如:
* [{
* "name": "部门类别",
* "unit": "开发部@kfb@U",
* "attributeList": [
* "生产部门",
* "二级部门"
* ]
* }]
* @o2syntax
* //同步执行,返回组织所有属性的对象数组。
* var attributeObjectList = this.org.listUnitAllAttribute( unit );
*
* //异步执行,返回Promise对象
* var promise = this.org.listUnitAllAttribute( unit, true);
* promise.then(function(attributeObjectList){
* //attributeObjectList 为组织所有属性的对象数组。
* })
*
* //异步执行,在回调方法中获取
* this.org.listUnitAllAttribute( unit, function(attributeObjectList){
* //attributeObjectList 为组织所有属性的对象数组。
* })
*/
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();
}
};
/**
* 您可以通过view对象,获取视图数据或选择视图数据。
* {
* "view" : "testView", //(String)必选,视图的名称、别名或ID
* "application" : "test数据中心应用", //(String)必选,视图所在数据应用的名称、别名或ID
* "filter": [ //(Array of Object)可选,对视图进行过滤的条件。json数组格式,每个数组元素描述一个过滤条件。
* {
* "logic":"and",
* "path":"$work.title",
* "comparison":"like",
* "value":"7月",
* "formatType":"textValue"
* }
* ]
* }
*
* @param {Function} callback - 访问成功后的回调函数
* @param {Boolean} [async] - 同步或异步调用。true:异步;false:同步。默认为true。
* @return {Promise} 返回Promise
* @o2syntax
* //通过回调方法获取数据
* this.view.lookup(view, callback, async);
*
* //返回Promise对象后处理
* var promise = this.view.lookup( view );
* promise.then(function(data){
* //data 为返回的数据。
* })
* @example
* //获取“财务管理”应用中“报销审批数据”视图中的数据
* //过滤条件为标题($work.title)包含包含(like))“7月”。
* this.view.lookup({
* "view": "报销审批数据",
* "application": "财务管理",
* "filter": [
* {
* "logic":"and",
* "path":"$work.title",
* "comparison":"like",
* "value":"7月",
* "formatType":"textValue"
* }
* ]
*}, function(data){
* var grid = data.grid; //得到过滤后的数据
* var groupGrid = data.groupGrid; //如果有分类,得到带分类的数据
* //......
*});
* @example
* //同上,通过返回值获取数据
* var promise = this.view.lookup({
* "view": "报销审批数据",
* "application": "财务管理",
* "filter": [
* {
* "logic":"and",
* "path":"$work.title",
* "comparison":"like",
* "value":"7月",
* "formatType":"textValue"
* }
* ]
*});
* promise.then(function(data){
* var grid = data.grid; //得到过滤后的数据
* var groupGrid = data.groupGrid; //如果有分类,得到带分类的数据
* //......
*})
* @example
* //获取“财务管理”应用中“报销审批数据”视图中的数据
* //过滤条件为标题($work.title)包含包含(like))“7月”,并且总金额大于500小于5000
* this.view.lookup({
* "view": "报销审批数据",
* "application": "财务管理",
* "filter": [
* {
* "logic":"and",
* "path":"$work.title",
* "comparison":"like",
* "value":"7月",
* "formatType":"textValue"
* },
* {
* "logic":"and",
* "path":"amount",
* "comparison":"range",
* "value":500,
* "otherValue":5000,
* "formatType":"numberValue"
* },
* ]
*}, function(data){
* var grid = data.grid; //得到过滤后的数据
* var groupGrid = data.groupGrid; //如果有分类,得到带分类的数据
* //......
*});
*/
"lookup": function (view, callback, async) {
var filterList = { "filterList": (view.filter || null) };
return MWF.Actions.load("x_query_assemble_surface").ViewAction.executeWithQuery(view.view, view.application, filterList, function (json) {
var data = {
"grid": json.data.grid || json.data.groupGrid,
"groupGrid": json.data.groupGrid
};
if (callback) callback(data);
return 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));
},
/**
* 通过视图进行数据选择。
* @method select
* @static
* @param {Object} view - 要访问的视图信息。数据格式如下:
* {
* "view" : "testView", //(String)必选,视图的名称、别名或ID
* "application" : "test数据中心应用", //(String)必选,视图所在数据应用的名称、别名或ID
* "isTitle" : true, //(Boolean)可选,是否显示视图标题。默认true
* "isMulti" : true, //(Boolean)可选,是否允许多选。默认true
* "width" : 700, //(Number)可选,选择框的宽度。默认700
* "height" : 400, //(Number)可选,选择框的高度。默认400
* "caption" : "标题", //(String)可选,选择框的标题
* "filter": [ //(Array of Object)可选,对视图进行过滤的条件。json数组格式,每个数组元素描述一个过滤条件。
* {
* "logic":"and",
* "path":"$work.title",
* "comparison":"like",
* "value":"7月",
* "formatType":"textValue"
* }
* ]
* }
*
* @param {Function} callback - 必选,当选择完成,点击“确定”之后的回调函数。
* @o2syntax
* this.view.select(view, callback);
* @example
* this.view.select({
* "application": "物业材料", //数据中心中的应用
* "view": "物业材料视图", //视图的名称
* "isMulti": false, //只允许单选
* }, function(items) {
* //如果选择了某个数据,将数据赋值给表单输入框
* if (items.length) {
* //物料名称,表单中输入框名为“materialName”, 视图中列的名称为“ylmc”
* this.data.materialName = items[0].data.ylmc;
* //规格,表单中输入框名为“specification”, 视图中列的名称为“gg”
* this.data.specification = items[0].data.gg;
* //单价,表单中输入框名为“price”, 视图中列的名称为“dj”
* this.data.price = items[0].data.dj;
* }
* }.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));
}
}
};
/**
* 您可以通过statement对象,获取执行查询语句或者对查询结果进行选择。
* {
* "name" : "tesStatement", //(String)必选,查询配置的名称、别名或ID
* "mode" : "all", //(String)必选,“all”、“data”或者“count”,all表示同时执行查询语句和总数语句,data表示执行查询语句,count表示执行总数语句
* "page" : 1, //(number)可选,当前页码,默认为1
* "pageSize" : 20, //(number)可选,每页的数据条数,默认为20
* "filter": [ //(Array)可选,对查询进行过滤的条件。json数组格式,每个数组元素描述一个过滤条件,每个元素数据格式如下:
* {
* "path":"o.title", //查询语句格式为jpql使用o.title,为原生sql中使用xtitle
* "comparison":"like",
* "value":"关于",
* "formatType":"textValue"
* }
* ],
* parameter : {
* "person" : "", //参数名称为下列值时,后台默认赋值,person(当前人),identityList(当前人身份列表),unitList(当前人所在直接组织), unitAllList(当前人所在所有组织), groupList(当前人所在群组),roleList(当前人拥有的角色)。v8.0以后系统自动解析,不需要再传这类参数。
* "startTime" : (new Date("2020-01-01")), //如果对比的是日期,需要传入 Date 类型
* "applicationName" : "%test%", //如果运算符用的是 like, noLike,模糊查询
* "processName" : "test流程", //其他写确定的值
* "?1": "关于" //v8.0后查询语句支持问号加数字的传参
* }
* }
*
* @param {Function} callback - 访问成功后的回调函数
* @param {Boolean} [async] - 同步或异步调用。true:异步;false:同步。默认为true。
* @return {Promise} 返回Promise
* @o2syntax
* this.statement.execute(statement, callback, async);
*
* //返回Promise对象后处理
* var promise = this.statement.execute( statement );
* promise.then(function(data){
* //data 为返回的数据。
* })
* @example
* //获取“task”查询中的数据
* //查询语句为 select o from Task o where (o.person = :person) and (o.startTime > :startTime) and (o.applicationName like :applicationName) and (o.processName = :processName)
* //总数语句为 select count(o.id) from Task o where (o.person = :person) and (o.startTime > :startTime) and (o.applicationName like :applicationName) and (o.processName = :processName)
* //过滤条件为标题o.title包含包含(like))“7月”。
* this.statement.execute({
* "name": "task",
* "mode" : "all",
* "filter": [
* {
* "path":"o.title", //查询语句格式为jpql使用o.title,为原生sql中使用xtitle
* "comparison":"like",
* "value":"7月",
* "formatType":"textValue"
* }
* ],
* "parameter" : {
* "person" : "", //参数名称为下列值时,后台默认赋值,person(当前人),identityList(当前人身份列表),unitList(当前人所在直接组织), unitAllList(当前人所在所有组织), groupList(当前人所在群组),roleList(当前人拥有的角色)。v8.0以后系统自动解析,不需要再传这类参数。
* "startTime" : (new Date("2020-01-01")), //如果对比的是日期,需要传入 Date 类型
* "applicationName" : "%test%", //如果运算符用的是 like, noLike,模糊查询
* "processName" : "test流程", //其他写确定的值
* "?1": "关于" //v8.0后查询语句支持问号加数字的传参
* }
* }, function(json){
* var count = json.count; //总数语句执行后返回的数字
* var list = json.data; //查询语句后返回的数组
* //......
* });
* @example
* //同上,使用返回值接收参数
* var promise = this.statement.execute({
* "name": "task",
* "mode" : "all",
* "filter": [
* {
* "path":"o.title", //查询语句格式为jpql使用o.title,为原生sql中使用xtitle
* "comparison":"like",
* "value":"7月",
* "formatType":"textValue"
* }
* ],
* "parameter" : {
* "person" : "", //参数名称为下列值时,后台默认赋值,person(当前人),identityList(当前人身份列表),unitList(当前人所在直接组织), unitAllList(当前人所在所有组织), groupList(当前人所在群组),roleList(当前人拥有的角色)。v8.0以后系统自动解析,不需要再传这类参数。
* "startTime" : (new Date("2020-01-01")), //如果对比的是日期,需要传入 Date 类型
* "applicationName" : "%test%", //如果运算符用的是 like, noLike,模糊查询
* "processName" : "test流程", //其他写确定的值
* "?1": "关于" //v8.0后查询语句支持问号加数字的传参
* }
* });
* promise.then(function(json){
* var count = json.count; //总数语句执行后返回的数字
* var list = json.data; //查询语句后返回的数组
* //......
* })
*/
execute: function (obj, callback, async) {
if( obj.format ){
return this._execute(obj, callback, async, obj.format);
}else{
if( this.needCheckFormat(obj) ){
var result;
var p = MWF.Actions.load("x_query_assemble_surface").StatementAction.getFormat(obj.name, function(json){
result = this._execute(obj, callback, async, json.data.format);
return result;
}.bind(this), null, async);
return result || p;
}else{
return this._execute(obj, callback, async, "");
}
}
},
needCheckFormat: function(s){
if( s.format )return false;
if( typeOf(s.parameter) === "object" ){
for( var p in s.parameter ){
if( typeOf( s.parameter[p] ) === "date" )return true;
}
}
if( typeOf(s.filter) === "array" ){
for( var i=0; i< s.filter.length; i++){
var fType = s.filter[i].formatType;
if( ["dateTimeValue", "datetimeValue", "dateValue", "timeValue"].contains( fType ) )return true;
}
}
return false;
},
_execute: function(statement, callback, async, format){
var parameter = this.parseParameter(statement.parameter, format);
var filterList = this.parseFilter(statement.filter, parameter, format);
var obj = {
"filterList": filterList,
"parameter" : parameter
};
return 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);
return json;
}, null, async);
},
parseFilter: function (filter, parameter, format) {
if (typeOf(filter) !== "array") return [];
if( !parameter )parameter = {};
var filterList = [];
(filter || []).each(function (d) {
if( !d.logic )d.logic = "and";
//var parameterName = d.path.replace(/\./g, "_");
var pName = d.path.replace(/\./g, "_");
var parameterName = pName;
var suffix = 1;
while( parameter[parameterName] ){
parameterName = pName + "_" + suffix;
suffix++;
}
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( ["sql", "sqlScript"].contains(format) ) {
if (d.formatType === "numberValue") {
value = parseFloat(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 + "'}"
} else if (d.formatType === "numberValue") {
value = parseFloat(value);
}
}
parameter[parameterName] = value;
}
d.value = parameterName;
filterList.push(d);
}.bind(this));
return filterList;
},
parseParameter : function( obj, format ){
if( typeOf(obj) !== "object" )return {};
var parameter = {};
//传入的参数
for( var p in obj ){
var value = obj[p];
if( typeOf( value ) === "date" ){
if( ["sql", "sqlScript"].contains(format) ){
value = value.format("db");
}else{
value = "{ts '"+value.format("db")+"'}"
}
}
parameter[ p ] = value;
}
return parameter;
},
/**
* 如果查询的类型是"select",并且配置了查询视图,可以通过本方法进行数据选择。
* @method select
* @static
* @param {Object} statement - 要访问的查询配置的信息。数据格式如下:
*
* {
* "name" : "tesStatement", //(String)必选,查询配置的名称、别名或ID
* "isTitle" : true, //(Boolean)可选,是否显示视图标题。默认true
* "isMulti" : true, //(Boolean)可选,是否允许多选。默认true
* "width" : 700, //(Number)可选,选择框的宽度。默认700
* "height" : 400, //(Number)可选,选择框的高度。默认400
* "caption" : "标题", //(String)可选,选择框的标题
* "filter": [ //(Array)可选,对查询进行过滤的条件。json数组格式,每个数组元素描述一个过滤条件,每个元素数据格式如下:
* {
* "path":"o.title", //查询语句格式为jpql使用o.title,为原生sql中使用xtitle
* "comparison":"like",
* "value":"关于",
* "formatType":"textValue"
* }
* ],
* parameter : {
* "person" : "", //参数名称为下列值时,后台默认赋值,person(当前人),identityList(当前人身份列表),unitList(当前人所在直接组织), unitAllList(当前人所在所有组织), groupList(当前人所在群组),roleList(当前人拥有的角色)。v8.0以后系统自动解析,不需要再传这类参数。
* "startTime" : (new Date("2020-01-01")), //如果对比的是日期,需要传入 Date 类型
* "applicationName" : "%test%", //如果运算符用的是 like, noLike,模糊查询
* "processName" : "test流程", //其他写确定的值
* "?1": "关于" //v8.0后查询语句支持问号加数字的传参
* }
* }
*
* @param {Function} callback - 访问成功后的回调函数
* @o2syntax
* this.statement.select(statement, callback);
* @example
* this.statement.select({
* "name": "物业材料查询", //查询的名称
* "isMulti": false, //只允许单选
* }, function(items) {
* //如果选择了某个数据,将数据赋值给表单输入框
* if (items.length) {
* //物料名称,表单中输入框名为“materialName”, 查询语句返回的字段名为“ylmc”
* this.data.materialName = items[0].ylmc;
* //规格,表单中输入框名为“specification”, 查询语句返回的字段名为“gg”
* this.data.specification = items[0].gg;
* //单价,表单中输入框名为“price”, 查询语句返回的字段名为“dj”
* this.data.price = items[0].dj;
* }
* }.bind(this));
*/
"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));
}
}
};
/**
* 您可以通过importer对象,执行导入模型的Excel导入数据功能。{
* "name" : "testImporter", //(String)必选,导入模型的名称、别名或ID
* "application" : "testQuery" //(String)必选,导入模型所在应用的名称、别名或ID
* }
*
* @param {Function} [callback] - 导入成功后的回调函数
* @param {Boolean} [async] - 同步或异步调用。true:异步;false:同步。默认为true。
* @o2syntax
* this.importer.upload(options, callback, async);
* @example
* this.importer.upload({
* "name": "testImporter",
* "application" : "testQuery",
* }, function(json){
*
* });
*/
"upload": function (options, callback, async) {
MWF.xDesktop.requireApp("query.Query", "Importer", function () {
var importer = new MWF.xApplication.query.Query.Importer(_form.app.content, options, {}, _form.app, _form.Macro);
importer.addEvent("afterImport", function (data) {
if(callback)callback(data);
});
importer.load();
}.bind(this));
// 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);
},
/**
* 根据指定的导入模型下载Excel模板。
* @method downloadTemplate
* @static
* @param {Object} options - 要执行的导入模型的选项。数据格式如下:
* {
* "name" : "testImporter", //(String)必选,导入模型的名称、别名或ID
* "application" : "testQuery" //(String)必选,导入模型所在应用的名称、别名或ID
* }
*
* @param {String} fileName - 导出的Excel名称
* @param {Function} callback - 整理好数据,在导出之前执行的方法,可接收参数如下:
* {
* "data" : ["标题","拟稿人"], //导出的表头数组
* "colWidthArray" : [200, 150] //列宽度
* }
*
* @o2syntax
* this.importer.downloadTemplate(object, fileName, callback);
* @example
* this.importer.downloadTemplate({
* "name": "testImporter",
* "application" : "testQuery",
* },"导入模板", function( object ){
* //添加一项
* object.data[0].push("备注");
* object.colWidthArray.push(300)
* });
*/
"downloadTemplate": function(options, fileName,callback){
MWF.xDesktop.requireApp("query.Query", "Importer", function () {
var importer = new MWF.xApplication.query.Query.Importer(_form.app.content, options, {}, _form.app, _form.Macro);
importer.downloadTemplate(fileName, callback);
}.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 = [];
var _includeSingle = function (optionsOrName, callback, async) {
var options = optionsOrName;
if (typeOf(options) == "string") {
options = { name: options };
}
var name = options.name;
var type;
if( options.type === "service" ){
type = options.type;
}else{
type = (options.type && options.application) ? options.type : "portal";
}
var application = options.application || _form.json.application;
var key = type + "-" + application + "-" + name;
if( type === "service" ){
key = type + "-" + name;
}
if (includedScripts.indexOf(key) > -1) {
if (callback) callback.apply(this);
return;
}
//if (includedScripts.indexOf( name )> -1){
// if (callback) callback.apply(this);
// return;
//}
if( ( options.enableAnonymous || options.anonymous ) && type === "cms" ){
o2.Actions.load("x_cms_assemble_control").ScriptAnonymousAction.getWithAppWithName( application, name, function(json){
if (json.data){
includedScripts.push( key );
//名称、别名、id
( json.data.importedList || [] ).each( function ( flag ) {
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 );
});
includedScripts = includedScripts.concat(json.data.importedList || []);
MWF.CMSMacro.exec(json.data.text, this);
if (callback) callback.apply(this);
}else{
if (callback) callback.apply(this);
}
}.bind(this), null, false);
}else {
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;
case "service" :
if (this.scriptActionService) {
scriptAction = this.scriptActionService;
} else {
MWF.require("MWF.xScript.Actions.ServiceScriptActions", null, false);
scriptAction = this.scriptActionService = new MWF.xScript.Actions.ServiceScriptActions();
}
break;
}
var successCallback = 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 );
}else if (type === "service") {
includedScripts.push(type + "-" + 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);
if( type === "service" ){
scriptAction.getScriptByName(name, includedScripts, successCallback, null, !!async);
}else{
scriptAction.getScriptByName(application, name, includedScripts, successCallback, null, !!async);
}
}
};
this.include = function( optionsOrName , callback, async){
if (o2.typeOf(optionsOrName)=="array"){
if (!!async){
var count = optionsOrName.length;
var loaded = 0;
optionsOrName.each(function(option){
_includeSingle.apply(this, [option, function(){
loaded++;
if (loaded>=count) if (callback) callback.apply(this);
}.bind(this), true]);
}.bind(this));
}else{
optionsOrName.each(function(option){
_includeSingle.apply(this, [option]);
}.bind(this));
if (callback) callback.apply(this);
}
}else{
_includeSingle.apply(this, [optionsOrName , callback, async])
}
};
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。{
* "pages": 3, //总页数
* "perPageCount": 50, //每页的条数
* "currentPageNumber": 1 // 当前页数
* }
*
* @o2syntax
* this.queryStatement.getPageInfor();
*/
/**
* 获取当前页的数据。
* @method getPageData
* @memberOf module:queryStatement
* @static
* @return {Object[]|Array[]} 当前页数据。
* [
{
"id" : "id1",
"title" : "title1"
},
{
"id" : "id2",
"title" : "title2"
},
...
*]
*
* 如:"select id, title from table o" 返回 二维数组:
*[
["id1", "title1"],
["id2", "title2"],
...
*]
*
* @o2syntax
* var data = this.queryStatement.getPageData();
*/
/**
* 跳转到指定的页面。
* @method toPage
* @memberOf module:queryStatement
* @static
* @param {Number} pageNumber - 需要跳转的页码。
* @param {Function} [callback ] - 跳转的页面数据加载完成以后的回调方法。
* @o2syntax
* 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
* @o2syntax
* this.queryStatement.selectAll();
*/
/**
* 当查询视图设置了允许多选的时候,可以通过这个方法取消选中的条目。
* @method unSelectAll
* @memberOf module:queryStatement
* @static
* @o2syntax
* this.queryStatement.unSelectAll();
*/
/**
* 获取选中的条目的数据。
* @method getSelectedData
* @memberOf module:queryStatement
* @static
* @return {Object[]|Array[]} 选中的条目的数据。
* [
{
"id" : "id1",
"title" : "title1"
},
{
"id" : "id2",
"title" : "title2"
},
...
*]
*
* 如:"select id, title from table o" 返回 二维数组:
*[
["id1", "title1"],
["id2", "title2"],
...
*]
*
* @o2syntax
* var data = this.queryStatement.getSelectedData();
*/
/**获取queryStatement对应的DOM对象。
* @method node
* @static
* @methodOf module:queryStatement
* @see module:form.node
*/
/**
* 重新加载查询视图。
* @method reload
* @methodOf module:queryStatement
* @static
* @o2syntax
* this.queryStatement.reload( callback );
*/
/**
* queryView对象可在视图中可用。它的很多方法与form类似。(仅前端脚本可用){
* "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(脚本) , v8.0后还有 sql, sqlScript
* "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": { ... } //视图相关信息
* }
* @o2syntax
* this.queryStatement.getStatementInfor();
*/
"getStatementInfor" : function () { return _form.getStatementInfor ? _form.getStatementInfor() : null; },
/**
* 获取查询的配置信息。
* @method getViewInfor
* @memberOf module:queryView
* @static
* @return {Object} 视图的配置信息.
* {
* "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"
* }
* @o2syntax
* this.queryView.getViewInfor();
*/
"getViewInfor" : function () { return _form.getViewInfor(); },
/**
* 获取视图当前页的基本信息。
* @method getPageInfor
* @memberOf module:queryView
* @static
* @return {Object} 当前页的信息,格式如下:
*{
* "pages": 3, //总页数
* "perPageCount": 50, //每页的条数
* "currentPageNumber": 1 // 当前页数
* }
*
* @o2syntax
* this.queryView.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": "工作日志"
* }
* },
* ...
* ]
* },
* ...
*]
*
* @o2syntax
* var data = this.queryView.getPageData();
*/
"getPageData" : function () { return _form.getPageData(); },
/**
* 跳转到指定的页面。
* @method toPage
* @memberOf module:queryView
* @static
* @param {Number} pageNumber - 需要跳转的页码。
* @param {Function} [callback ] - 跳转的页面数据加载完成以后的回调方法。
* @o2syntax
* 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
* @o2syntax
* this.queryView.selectAll();
*/
"selectAll" : function () { return _form.selectAll(); },
/**
* 当视图设置了允许多选的时候,可以通过这个方法取消选中的条目。
* @method unSelectAll
* @memberOf module:queryView
* @static
* @o2syntax
* 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"
}
},
...
* ]
* @o2syntax
* var data = this.queryView.getSelectedData();
*/
"getSelectedData" : function () { return _form.getSelectedData(); },
/**
* 设置视图的过滤条件,该方法不能修改视图中默认的过滤条件(在开发视图的时候添加的过滤条件),而是在这上面新增。
* @method setFilter
* @memberOf module:queryView
* @static
* @param {(ViewFilter[]|ViewFilter|Null)} [filter] 过滤条件。[
* {
* "logic":"and",
* "path":"$work.title",
* "comparison":"like",
* "value":"7月",
* "formatType":"textValue"
* }
*]
*
* @param {Function} [callback] 过滤完成并重新加载数据后的回调方法。
* @o2syntax
* this.queryView.setFilter( filter );
*/
"setFilter" : function ( filter, callback ) { return _form.setFilter(filter, callback); },
/**
* 增加查询语句where子句的过滤条件。
* @method setStatementFilter
* @memberOf module:queryStatement
* @static
* @param {(StatementFilter[]|Null)} [filter] 过滤条件。[
* {
* "path":"o.title", //查询语句格式为jpql使用o.title,为原生sql中使用xtitle
* "comparison":"like",
* "value":"关于",
* "formatType":"textValue"
* }
*]
*
* @param {StatementParameter} [parameter] 过滤条件。对查询语句where子句的形如":person"的参数部分进行赋值,参数如下:
*
* //假设语句为 select count(o.id) from Read o where (o.person = :person) and (o.startTime > :startTime) and (o.applicationName like :applicationName) and (o.processName = :processName)。
* //那么可能的参数如下:
* {
* "person" : "", //出于安全考虑参数名称为下列值时,不需要填写参数值,后台默认赋值,person(当前人),identityList(当前人身份列表),unitList(当前人所在直接组织), unitAllList(当前人所在所有组织), groupList(当前人所在群组),roleList(当前人拥有的角色)。v8.0以后系统自动解析,不需要再传这类参数。
* "startTime" : (new Date("2020-01-01")), //如果对比的是日期,需要传入 Date 类型
* "applicationName" : "%test%", //如果运算符用的是 like, noLike,模糊查询
* "processName" : "test流程", //其他写确定的值
* "?1": "关于" //v8.0后查询语句支持问号加数字的传参
* }
*
* @param {Function} [callback] 过滤完成并重新加载数据后的回调方法。
* @o2syntax
* this.queryStatement.setStatementFilter( filter, parameter, 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
* }
*
* @o2syntax
* this.queryView.switchView( options );
*/
"switchView" : function ( options ) { return _form.switchView(options); },
/**
* 把当前查询视图切换成另外一个查询视图。
* @method switchStatement
* @memberOf module:queryStatement
* @static
* @param {Object} options 需要跳转的参数配置。参数说明如下:
* this.queryStatement.switchStatement({
* "statementId": statementId, //必选,查询的名称、别名、id
* "isTitle": "yes", //可选,是否显示视图的标题行,可选值有:yes no
* "select": "multi", //可选,是否允许新视图选择,如果不传,则使用原视图的配置, 可选值有: 不允许选择 none, 单选 single,多选 multi
* "showActionbar": false, //可选,是否显示操作条
* "filter": [ //可选,增加查询语句where子句的过滤条件
* {
* "path": "o.title", //查询语句格式为jpql使用o.title,为原生sql中使用xtitle
* "title": "标题",
* "type": "filter",
* "comparison": "like",
* "formatType": "textValue",
* "value": "测试"
* }
* ],
* //假设语句为 select count(o.id) from Read o where (o.person = :person) and (o.startTime > :startTime) and (o.applicationName like :applicationName) and (o.processName = :processName)
* "parameter" : { //可选,对查询语句where语句的形如":person"的参数部分进行赋值
* "person" : "", //出于安全考虑参数名称为下列值时,不需要填写参数值,后台默认赋值,person(当前人),identityList(当前人身份列表),unitList(当前人所在直接组织), unitAllList(当前人所在所有组织), groupList(当前人所在群组),roleList(当前人拥有的角色)。v8.0以后系统自动解析,不需要再传这类参数。
* "startTime" : (new Date("2020-01-01")), //如果对比的是日期,需要传入 Date 类型
* "applicationName" : "%test%", //如果运算符用的是 like, noLike,模糊查询
* "processName" : "test流程" //其他写确定的值
* "?1": "关于" //v8.0后查询语句支持问号加数字的传参
* }
* })
*
* @o2syntax
* this.queryStatement.switchStatement( options );
*/
"switchStatement" : function ( options ) { if(_form.switchStatement)_form.switchStatement(options) ; },
/**
* 重新加载视图。
* @method reload
* @methodOf module:queryView
* @static
* @o2syntax
* this.queryView.reload( callback );
*/
"reload" : function ( callback ) { _form.reload( callback ); },
// "getInfor": function () { return ev.pageInfor; },
// "infor": ev.pageInfor,
/**获取打开当前页面的component对象。
* @method getApp
* @static
* @see module:form.getApp
*/
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 dialog
* @static
* @see module:form.dialog
*/
"dialog": function ( options ) {
return _form.dialog( options );
},
/**打开人员组织选择界面
* @method selectOrg
* @static
* @see module:form.selectOrg
*/
"selectOrg": function ( container, options, delayLoad) {
if( !container )container = _form.app.content;
MWF.xDesktop.requireApp("Selector", "package", null, false);
return new MWF.O2Selector(container, options, delayLoad);
},
/** 给视图添加事件。
* @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, callback) {
var workData = null, handel;
o2.Actions.get("x_processplatform_assemble_surface").listWorkByJob(id, function(json){
if (json.data) workData = json.data;
}.bind(this), null, false);
if( !layout.inBrowser && o2.typeOf(callback) === "function" ){
if( !options )options = {};
var queryLoad = options.onQueryLoad;
options.onQueryLoad = function () {
if( o2.typeOf(queryLoad) === "function" )queryLoad.call(this);
callback(this);
}
}
runCallback = function ( handel ) {
if( o2.typeOf(callback) === "function" ) {
if (layout.inBrowser) {
callback(handel);
} else if (options && options.appId) {
if (layout.desktop && layout.desktop.apps && layout.desktop.apps[options.appId]) {
callback(layout.desktop.apps[options.appId], true);
}else{
callback(handel, false);
}
}else{
callback(handel, 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 = "" +
"{
* "id": "267a7bcc-f27a-49c8-8364-f1c12061085a", //人员ID
* "genderType": "m", //性别
* "icon": "...", //头像
* "signature": "", //个人签名
* "name": "张三", //姓名
* "employee": "zhansan", //员工号
* "unique": "zhansan", //唯一标识
* "distinguishedName": "xx@zhansan@P", //人员全称
* "superior": "", //上级人员id
* "changePasswordTime": "2017-03-13", //修改密码时间
* "lastLoginTime": "2019-01-02", //最后登录时间
* "mail": "zhansan@zoneland.net", //邮件地址
* "weixin": "", //微信号
* "qq": "", //QQ
* "mobile": "18057190078", //手机号码
* "officePhone": "", //办公电话
* "createTime": "2017-03-13 12:27:04", //人员创建时间
* "updateTime": "2019-01-02 13:00:04", //人员修改时间
* "token": "...", //当前用户token
* "roleList": [ //人员角色
* "ProcessPlatformCreator@ProcessPlatformCreatorSystemRole@R",
* "ProcessPlatformManager@ProcessPlatformManagerSystemRole@R",
* "Manager@ManagerSystemRole@R"
* ],
* "identityList": [ //人员身份列表
* {
* "id": "709328c8-44a0-4f5d-a3fa-3c31208232d5", //身份ID
* "name": "xx", //身份名称
* "unique": "709328c8-44a0-4f5d-a3fa-3c31208232d5", //身份唯一标识
* "distinguishedName": "xx@709328c8-44a0-4f5d-a3fa-3c31208232d5@I", //身份全称
* "person": "267a7bcc-f27a-49c8-8364-f1c12061085a", //人员ID
* "unit": "d5356fd4-6675-45ad-9a00-5eff20b83dfa", //所属组织ID
* "unitName": "开发部", //所属组织名称
* "unitLevel": 2, //所属组织层级
* "unitLevelName": "兰德纵横/开发部", //所属组织层次名
* "major": true //是否是主身份
* },
* {
* "id": "343510af-57c2-4a55-a1f2-f30d7af6d284",
* "description": "",
* "name": "xx",
* "unique": "343510af-57c2-4a55-a1f2-f30d7af6d284",
* "distinguishedName": "xx@343510af-57c2-4a55-a1f2-f30d7af6d284@I",
* "person": "267a7bcc-f27a-49c8-8364-f1c12061085a",
* "unit": "108b1b7c-cc78-49ab-9ab1-e67073bd6541",
* "unitName": "开发部",
* "unitLevel": 2,
* "unitLevelName": "浙江兰德纵横/开发部",
* "major": false
* }
* ]
* }
*
*/
this.session = layout.desktop.session;
/**
* 本文档说明如何在前台脚本中使用Actions调用平台的RESTful服务。
* "x_processplatform_assemble_surface" //流程平台相关服务根
*
* @return {String} 对应服务跟对应的host。如:http://127.0.0.1 (v7.2之前版本可能带端口20020)
* @o2syntax
* var actions = this.Actions.getHost( root );
*/
/**
* 平台预置了Actions对象用于调用平台提供的服务,您可以使用this.Actions.load来获取这些方法。
* @method load
* @methodOf module:Actions
* @instance
* @param {String} root 平台RESTful服务根,具体服务列表参见:http://server/x_program_center/jest/list.html (v7.2之前版本需要加端口20030)。
* 如:
*
* "x_processplatform_assemble_surface" //流程平台相关服务根
*
* @return {Object} 返回action对象,用于后续服务调用
* @o2syntax
* var actions = this.Actions.load( root );
* @o2syntax
* //获取流程平台服务对象。
* var processAction = this.Actions.load("x_processplatform_assemble_surface");
* @o2syntax
*
* "x_processplatform_assemble_surface" //流程平台相关服务根
*
* @return {String} 对应服务根的host。如:http://127.0.0.1 (v7.2之前版本可能带端口20020)
* @o2syntax
* var actions = this.Actions.get( root );
* actions[ methodName ]( arguements );
*
* or
*
* this.Actions.get( root )[methodName]( arguements );
* @o2syntax
* methodName :(string)方法名称。
* arguements : 见load方法的arguements说明
* @example
*