| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340 |
- MWF.xApplication.Selector = MWF.xApplication.Selector || {};
- MWF.xDesktop.requireApp("Selector", "Person", null, false);
- MWF.xApplication.Selector.Identity = new Class({
- Extends: MWF.xApplication.Selector.Person,
- options: {
- "style": "default",
- "count": 0,
- "title": MWF.xApplication.Selector.LP.selectIdentity,
- "units": [],
- "values": [],
- "dutys": [],
- "zIndex": 1000,
- "expand": false,
- "noUnit" : false,
- "include" : [], //增加的可选项
- "exclude" : [], //排除的可选项
- "resultType" : "", //可以设置成个人,那么结果返回个人
- "expandSubEnable" : true, //是否允许展开下一层,
- "selectAllEnable" : true //分类是否允许全选下一层
- },
- loadSelectItems: function(addToNext){
- debugger;
- var afterLoadSelectItemFun = this.afterLoadSelectItem.bind(this);
- if( this.options.resultType === "person" ){
- if( this.titleTextNode ){
- this.titleTextNode.set("text", MWF.xApplication.Selector.LP.selectPerson );
- }else{
- this.options.title = MWF.xApplication.Selector.LP.selectPerson;
- }
- }
- if(this.options.noUnit){
- this.loadInclude(afterLoadSelectItemFun);
- }else if (this.options.units.length){
- var unitLoaded = 0;
- var loadUnitSuccess = function () {
- unitLoaded++;
- if( unitLoaded === this.options.units.length ){
- this.unitLoaded = true;
- if( this.includeLoaded ){
- afterLoadSelectItemFun();
- }
- }
- }.bind(this);
- var loadUnitFailure = loadUnitSuccess;
- this.loadInclude( function () {
- this.includeLoaded = true;
- if( this.unitLoaded ){
- afterLoadSelectItemFun();
- }
- }.bind(this));
- this.options.units.each(function(unit){
- var container = new Element("div").inject( this.itemAreaNode );
- if (typeOf(unit)==="string"){
- this.orgAction.getUnit(unit, function(json){
- if (json.data){
- var category = this._newItemCategory("ItemUnitCategory", json.data, this, container);
- this.subCategorys.push( category );
- }
- loadUnitSuccess();
- }.bind(this), function(){
- this.orgAction.listUnitByKey(function(json){
- if (json.data.length){
- json.data.each(function(data){
- var category = this._newItemCategory("ItemUnitCategory", data, this, container);
- this.subCategorys.push( category );
- }.bind(this))
- }
- loadUnitSuccess();
- }.bind(this), loadUnitFailure, unit);
- }.bind(this));
- }else{
- this.orgAction.getUnit(function(json){
- if (json.data){
- var category = this._newItemCategory("ItemUnitCategory", json.data, this, container);
- this.subCategorys.push( category );
- }
- loadUnitSuccess();
- }.bind(this), loadUnitFailure, unit.distinguishedName);
- //var category = this._newItemCategory("ItemCategory", unit, this, this.itemAreaNode);
- }
- }.bind(this));
- }else{
- // this.loadInclude( function () {
- // this.includeLoaded = true;
- // if( this.unitLoaded ){
- // afterLoadSelectItemFun();
- // }
- // }.bind(this));
- this.orgAction.listTopUnit(function(json){
- json.data.each(function(data){
- if( !this.isExcluded( data ) ){
- var category = this._newItemCategory("ItemUnitCategory", data, this, this.itemAreaNode);
- this.subCategorys.push( category );
- }
- }.bind(this));
- // this.unitLoaded = true;
- // if( this.includeLoaded ){
- afterLoadSelectItemFun();
- // }
- }.bind(this));
- }
- },
- loadInclude: function(afterLoadFun) {
- if (!this.includeObject){
- this.includeObject = new MWF.xApplication.Selector.Identity.Include(this, this.itemAreaNode, {
- "include": this.options.include, //增加的可选项
- "resultType": this.options.resultType, //可以设置成个人,那么结果返回个人
- "expandSubEnable": this.options.expandSubEnable, //是否允许展开下一层
- "onAfterLoad" : afterLoadFun
- });
- }
- this.includeObject.load();
- },
- checkLoadSelectItems: function(){
- if (!this.options.units.length){
- this.loadSelectItems();
- }else{
- this.loadSelectItems();
- }
- },
- _scrollEvent: function(y){
- return true;
- },
- _getChildrenItemIds: function(){
- return null;
- },
- _newItemCategory: function(type, data, selector, item, level, category, delay){
- return new MWF.xApplication.Selector.Identity[type](data, selector, item, level, category, delay)
- },
- _listItem : function( filterType, callback, failure, key ){
- if( this.options.noUnit ){
- this.includeObject.listByFilter( filterType, key, function( array ){
- var json = {"data" : array} ;
- if (callback) callback.apply(this, [json]);
- }.bind(this))
- }else{
- var action = filterType === "key" ? "listIdentityByKey" : "listIdentityByPinyin";
- if ( this.options.units.length ){
- key = this.getLikeKey( key, this.options.units );
- this.orgAction[action](function(json){ //搜若units内的组织
- this.includeObject.listByFilter( filterType, key, function( array ){
- json.data = array.concat( json.data || [] );
- if (callback) callback.apply(this, [json]);
- }.bind(this));
- }.bind(this), failure, key);
- }else{ //搜索所有人
- this.orgAction[action](function(json){
- if (callback) callback.apply(this, [json]);
- }.bind(this), failure, key);
- }
- }
- },
- _listItemByKey: function(callback, failure, key){
- this._listItem( "key", callback, failure, key );
- },
- _getItem: function(callback, failure, id, async){
- this.orgAction.getIdentity(function(json){
- if (callback) callback.apply(this, [json]);
- }.bind(this), failure, ((typeOf(id)==="string") ? id : id.distinguishedName), async);
- },
- _newItemSelected: function(data, selector, item){
- return new MWF.xApplication.Selector.Identity.ItemSelected(data, selector, item)
- },
- _listItemByPinyin: function(callback, failure, key){
- this._listItem( "pinyin", callback, failure, key );
- },
- _newItem: function(data, selector, container, level, category){
- return new MWF.xApplication.Selector.Identity.Item(data, selector, container, level, category);
- },
- _newItemSearch: function(data, selector, container, level){
- return new MWF.xApplication.Selector.Identity.SearchItem(data, selector, container, level);
- },
- getLikeKey : function( key, unitObjects ){
- var unitObjects = unitObjects || [];
- var units = [];
- unitObjects.each(function(u){
- if (typeOf(u)==="string"){
- units.push(u);
- }
- if (typeOf(u)==="object"){
- units.push(u.distinguishedName);
- }
- });
- var keyObj = { "key": key, "unitList": units };
- if( !this.dutyDnList ){
- var dutyDnList = [];
- var dutyNameList = [];
- ( this.options.dutys || [] ).each(function(d){
- if (typeOf(d)==="string"){
- var ds = d.split("@");
- if( ds[ ds.length - 1].toUpperCase() === "UD" ){
- dutyDnList.push( d )
- }else{
- dutyNameList.push( d );
- }
- }
- if (typeOf(d)==="object"){
- if( d.distinguishedName ){
- dutyDnList.push(d.distinguishedName);
- }else if( d.name ){
- dutyNameList.push(d.name);
- }
- }
- });
- if( dutyNameList.length ){
- o2.Actions.get("x_organization_assemble_express").listDutyWithName( { nameList : dutyNameList }, function(json){
- if( json.data && json.data.unitDutyList ){
- dutyDnList = dutyDnList.concat( json.data.unitDutyList )
- }
- }.bind(this), null, false);
- }
- this.dutyDnList = dutyDnList;
- }
- if( this.dutyDnList.length )keyObj.unitDutyList = this.dutyDnList;
- return units.length ? keyObj : key;
- }
- //_listItemNext: function(last, count, callback){
- // this.action.listRoleNext(last, count, function(json){
- // if (callback) callback.apply(this, [json]);
- // }.bind(this));
- //}
- });
- MWF.xApplication.Selector.Identity.Item = new Class({
- Extends: MWF.xApplication.Selector.Person.Item,
- _getShowName: function(){
- return this.data.name;
- },
- _getTtiteText: function(){
- return this.data.name+((this.data.unitLevelName) ? "("+this.data.unitLevelName+")" : "");
- },
- _setIcon: function(){
- var style = this.selector.options.style;
- this.iconNode.setStyle("background-image", "url("+"../x_component_Selector/$Selector/"+style+"/icon/personicon.png)");
- },
- getData: function(callback){
- if( this.selector.options.resultType === "person" ){
- var isPerson = false;
- if( this.data && this.data.distinguishedName ){
- var dn = this.data.distinguishedName;
- if( dn.substr(dn.length-1, 1).toLowerCase() === "p" )isPerson = true;
- }
- if( isPerson ) {
- if (callback) callback();
- }else if( this.data.woPerson ){
- this.data == this.data.woPerson;
- if (callback) callback();
- }else if( this.data.person ){
- this.selector.orgAction.getPerson(function(json){
- this.data = json.data;
- if (callback) callback();
- }.bind(this), null, this.data.person)
- }else{
- if (callback) callback();
- }
- }else{
- if (!this.data.woPerson){
- this.selector.orgAction.getPerson(function(json){
- this.data.woPerson = json.data;
- if (callback) callback();
- }.bind(this), null, this.data.person)
- }else{
- if (callback) callback();
- }
- }
- },
- checkSelectedSingle: function(){
- var isPerson = this.selector.options.resultType === "person";
- var selectedItem = this.selector.options.values.filter(function(item, index){
- if( isPerson ){
- if (typeOf(item)==="object") return (item.id && item.id === this.data.person) ||
- ( item.person && item.person === this.data.id ) ||
- ( this.data.distinguishedName && this.data.distinguishedName === item.distinguishedName);
- return false;
- }else{
- if (typeOf(item)==="object") return this.data.distinguishedName === item.distinguishedName;
- if (typeOf(item)==="string") return this.data.distinguishedName === item;
- return false;
- }
- }.bind(this));
- if (selectedItem.length){
- this.selectedSingle();
- }
- },
- checkSelected: function(){
- var isPerson = this.selector.options.resultType === "person";
- var selectedItem = this.selector.selectedItems.filter(function(item, index){
- if( isPerson ){
- return ( item.data.id && item.data.id === this.data.person ) ||
- ( item.data.person && item.data.person === this.data.id ) ||
- ( item.data.distinguishedName && item.data.distinguishedName === this.data.distinguishedName );
- }else{
- return item.data.distinguishedName === this.data.distinguishedName;
- }
- }.bind(this));
- if (selectedItem.length){
- //selectedItem[0].item = this;
- selectedItem[0].addItem(this);
- this.selectedItem = selectedItem[0];
- this.setSelected();
- }
- }
- });
- MWF.xApplication.Selector.Identity.SearchItem = new Class({
- Extends: MWF.xApplication.Selector.Identity.Item,
- _getShowName: function(){
- return this.data.name+((this.data.unitLevelName) ? "("+this.data.unitLevelName+")" : "");
- }
- });
- MWF.xApplication.Selector.Identity.ItemSelected = new Class({
- Extends: MWF.xApplication.Selector.Person.ItemSelected,
- getData: function(callback){
- if( this.selector.options.resultType === "person" ){
- var isPerson = false;
- if( this.data && this.data.distinguishedName ){
- var dn = this.data.distinguishedName;
- if( dn.substr(dn.length-1, 1).toLowerCase() === "p" )isPerson = true;
- }
- if( isPerson ){
- if (callback) callback();
- }else if( this.data.woPerson ){
- this.data = this.data.woPerson;
- if (callback) callback();
- }else if( this.data.person ){
- this.selector.orgAction.getPerson(function(json){
- this.data = json.data;
- if (callback) callback();
- }.bind(this), null, this.data.person )
- }else{
- if (callback) callback();
- }
- }else if (!this.data.woPerson){
- if (this.data.person){
- this.selector.orgAction.getPerson(function(json){
- this.data.woPerson = json.data;
- if (callback) callback();
- }.bind(this), function(xhr, text, error){
- var errorText = error;
- if (xhr){
- var json = JSON.decode(xhr.responseText);
- if (json){
- errorText = json.message.trim() || "request json error";
- }else{
- errorText = "request json error: "+xhr.responseText;
- }
- }
- MWF.xDesktop.notice("error", {x: "right", y:"top"}, errorText);
- if (callback) callback();
- }.bind(this), this.data.person)
- }else{
- MWF.xDesktop.notice("error", {x: "right", y:"top"}, MWF.SelectorLP.noPerson.replace(/{name}/g, this.data.name));
- if (callback) callback();
- }
- }else{
- if (callback) callback();
- }
- },
- _getShowName: function(){
- return this.data.name+((this.data.unitLevelName) ? "("+this.data.unitLevelName+")" : "");
- },
- _getTtiteText: function(){
- return this.data.name+((this.data.unitLevelName) ? "("+this.data.unitLevelName+")" : "");
- },
- _setIcon: function(){
- var style = this.selector.options.style;
- this.iconNode.setStyle("background-image", "url("+"../x_component_Selector/$Selector/"+style+"/icon/personicon.png)");
- },
- check: function(){
- if (this.selector.items.length){
- var isPerson = this.selector.options.resultType === "person";
- var items = this.selector.items.filter(function(item, index){
- if( isPerson ){
- return (item.data.person && item.data.person === this.data.id) ||
- ( item.data.id && item.data.id === this.data.person) ||
- ( item.data.distinguishedName && item.data.distinguishedName === this.data.distinguishedName );
- }else{
- return item.data.distinguishedName === this.data.distinguishedName;
- }
- }.bind(this));
- this.items = items;
- if (items.length){
- items.each(function(item){
- item.selectedItem = this;
- item.setSelected();
- }.bind(this));
- }
- }
- }
- });
- MWF.xApplication.Selector.Identity.ItemCategory = new Class({
- Extends: MWF.xApplication.Selector.Person.ItemCategory,
- createNode: function(){
- this.node = new Element("div", {
- "styles": this.selector.css.selectorItemCategory_department,
- "title" : this._getTtiteText()
- }).inject(this.container);
- },
- _getShowName: function(){
- return this.data.name;
- },
- _setIcon: function(){
- var style = this.selector.options.style;
- this.iconNode.setStyle("background-image", "url("+"../x_component_Selector/$Selector/"+style+"/icon/companyicon.png)");
- },
- clickItem: function( callback ){
- if (this._hasChild()){
- var firstLoaded = !this.loaded;
- this.loadSub(function(){
- if( firstLoaded ){
- if( !this.selector.isFlatCategory ){
- this.children.setStyles({"display": "block", "height": "auto"});
- this.actionNode.setStyles(this.selector.css.selectorItemCategoryActionNode_expand);
- this.isExpand = true;
- }
- // this.checkSelectAll();
- }else{
- var display = this.children.getStyle("display");
- if (display === "none"){
- this.children.setStyles({"display": "block", "height": "auto"});
- this.actionNode.setStyles(this.selector.css.selectorItemCategoryActionNode_expand);
- this.isExpand = true;
- }else{
- this.children.setStyles({"display": "none", "height": "0px"});
- this.actionNode.setStyles(this.selector.css.selectorItemCategoryActionNode_collapse);
- this.isExpand = false;
- }
- }
- if(callback)callback();
- }.bind(this));
- }
- },
- loadSub: function(callback){
- if (!this.loaded){
- if (this.selector.options.dutys && this.selector.options.dutys.length){
- var ids = [];
- var object = {};
- this.selector.options.dutys.each(function(duty){
- this.selector.orgAction.listIdentityWidthUnitWithDutyName(this.data.distinguishedName, duty, function(json){
- if (json.data && json.data.length){
- ids = ids.concat(json.data);
- }
- }.bind(this), null, false);
- ids.each(function(idSubData){
- if( !this.selector.isExcluded( idSubData ) && !object[ idSubData.id || idSubData.distinguishedName ]) {
- var item = this.selector._newItem(idSubData, this.selector, this.children, this.level + 1, this);
- this.selector.items.push(item);
- if(this.subItems)this.subItems.push( item );
- object[ idSubData.id || idSubData.distinguishedName ] = true;
- }
- }.bind(this));
- }.bind(this));
- if( this.selector.options.expandSubEnable ){
- this.selector.orgAction.listSubUnitDirect(function(json){
- json.data.each(function(subData){
- if( !this.selector.isExcluded( subData ) ) {
- var category = this.selector._newItemCategory("ItemUnitCategory", subData, this.selector, this.children, this.level + 1, this);
- this.subCategorys.push( category );
- }
- }.bind(this));
- this.loaded = true;
- if(callback)callback();
- }.bind(this), null, this.data.distinguishedName);
- }else{
- this.loaded = true;
- if(callback)callback();
- }
- }else{
- this.selector.orgAction.listIdentityWithUnit(function(idJson){
- idJson.data.each(function(idSubData){
- if( !this.selector.isExcluded( idSubData ) ) {
- var item = this.selector._newItem(idSubData, this.selector, this.children, this.level + 1, this);
- this.selector.items.push(item);
- if(this.subItems)this.subItems.push( item );
- }
- }.bind(this));
- if( this.selector.options.expandSubEnable ){
- this.selector.orgAction.listSubUnitDirect(function(json){
- json.data.each(function(subData){
- if( !this.selector.isExcluded( subData ) ) {
- var category = this.selector._newItemCategory("ItemUnitCategory", subData, this.selector, this.children, this.level + 1, this);
- this.subCategorys.push( category );
- }
- }.bind(this));
- this.loaded = true;
- if (callback) callback();
- }.bind(this), null, this.data.distinguishedName);
- }else{
- this.loaded = true;
- if (callback) callback();
- }
- }.bind(this), null, this.data.distinguishedName);
- }
- }else{
- if (callback) callback( );
- }
- },
- _hasChild: function(){
- var uCount = (this.data.subDirectUnitCount) ? this.data.subDirectUnitCount : 0;
- var iCount = (this.data.subDirectIdentityCount) ? this.data.subDirectIdentityCount : 0;
- return uCount + iCount;
- },
- _hasChildCategory: function(){
- return (this.data.subDirectUnitCount) ? this.data.subDirectUnitCount : 0;
- },
- _hasChildItem: function(){
- return (this.data.subDirectIdentityCount) ? this.data.subDirectIdentityCount : 0;
- },
- //for flat category start
- clickFlatCategoryItem: function( callback, hidden ){
- if (this._hasChildItem()){
- var firstLoaded = !this.itemLoaded;
- this.loadItemChildren(function(){
- if( hidden ){
- //alert("hidden")
- this.children.setStyles({"display": "none", "height": "0px"});
- this.node.setStyles( this.selector.css.flatCategoryItemNode );
- this.isExpand = false;
- }else if( firstLoaded ){
- this.children.setStyles({"display": "block", "height": "auto"});
- this.node.setStyles( this.selector.css.flatCategoryItemNode_selected );
- this.isExpand = true;
- }else{
- var display = this.children.getStyle("display");
- if (display === "none"){
- this.children.setStyles({"display": "block", "height": "auto"});
- this.node.setStyles( this.selector.css.flatCategoryItemNode_selected );
- this.isExpand = true;
- }else{
- this.children.setStyles({"display": "none", "height": "0px"});
- this.node.setStyles( this.selector.css.flatCategoryItemNode );
- this.isExpand = false;
- }
- }
- if(callback)callback();
- }.bind(this));
- }
- },
- loadCategoryChildren: function(callback){
- if (!this.categoryLoaded){
- if( this.selector.options.expandSubEnable ){
- this.selector.orgAction.listSubUnitDirect(function(json){
- json.data.each(function(subData){
- if( !this.selector.isExcluded( subData ) ) {
- var category = this.selector._newItemCategory("ItemUnitCategory", subData, this.selector, this.children, this.level + 1, this);
- this.subCategorys.push( category );
- }
- }.bind(this));
- this.categoryLoaded = true;
- if (callback) callback();
- }.bind(this), null, this.data.distinguishedName);
- }else{
- if (callback) callback();
- }
- }else{
- if (callback) callback( );
- }
- },
- loadItemChildren: function(callback){
- if (!this.itemLoaded){
- if (this.selector.options.dutys && this.selector.options.dutys.length){
- var ids = [];
- var object = {};
- this.selector.options.dutys.each(function(duty){
- this.selector.orgAction.listIdentityWidthUnitWithDutyName(this.data.distinguishedName, duty, function(json){
- if (json.data && json.data.length){
- ids = ids.concat(json.data);
- }
- }.bind(this), null, false);
- ids.each(function(idSubData){
- if( !this.selector.isExcluded( idSubData ) && !object[ idSubData.id || idSubData.distinguishedName ]) {
- var item = this.selector._newItem(idSubData, this.selector, this.children, this.level + 1, this);
- this.selector.items.push(item);
- if(this.subItems)this.subItems.push( item );
- object[ idSubData.id || idSubData.distinguishedName ] = true;
- }
- this.itemLoaded = true;
- }.bind(this));
- }.bind(this));
- if (callback) callback();
- }else{
- this.selector.orgAction.listIdentityWithUnit(function(idJson){
- idJson.data.each(function(idSubData){
- if( !this.selector.isExcluded( idSubData ) ) {
- var item = this.selector._newItem(idSubData, this.selector, this.children, this.level + 1, this);
- this.selector.items.push(item);
- if(this.subItems)this.subItems.push( item );
- }
- this.itemLoaded = true;
- }.bind(this));
- if (callback) callback();
- }.bind(this), null, this.data.distinguishedName);
- }
- }else{
- if (callback) callback( );
- }
- }
- //for flat category end
- });
- MWF.xApplication.Selector.Identity.ItemUnitCategory = new Class({
- Extends: MWF.xApplication.Selector.Identity.ItemCategory
- });
- MWF.xApplication.Selector.Identity.ItemGroupCategory = new Class({
- Extends: MWF.xApplication.Selector.Identity.ItemCategory,
- createNode: function(){
- this.node = new Element("div", {
- "styles": this.selector.css.selectorItemCategory
- }).inject(this.container);
- },
- _setIcon: function(){
- var style = this.selector.options.style;
- this.iconNode.setStyle("background-image", "url("+"../x_component_Selector/$Selector/"+style+"/icon/groupicon.png)");
- },
- loadSub: function(callback){
- if (!this.loaded){
- debugger;
- var personContainer, identityContainer, groupContainer, unitContainer;
- if( this.data.personList )personContainer = new Element("div").inject( this.children );
- if( this.data.identityList )identityContainer = new Element("div").inject( this.children );
- if( this.data.groupList )groupContainer = new Element("div").inject( this.children );
- if( this.data.unitList )unitContainer = new Element("div").inject( this.children );
- var personLoadedCount = 0;
- var identityLoadedCount = 0;
- var unitLoadedCount = 0;
- var groupLoadedCount = 0;
- var checkCallback = function( type, count ){
- var addCount = count || 1;
- if( !this.selector.options.expandSubEnable ){
- if( type === "person" )personLoadedCount += addCount;
- if( type === "identity" )identityLoadedCount += addCount;
- if(
- (!this.data.personList || this.data.personList.length === 0 || this.data.personList.length == personLoadedCount) &&
- (!this.data.identityList || this.data.identityList.length === 0 || this.data.identityList.length == identityLoadedCount)
- ){
- this.loaded = true;
- if (callback) callback();
- }
- }else{
- if( type === "person" )personLoadedCount += addCount;
- if( type === "identity" )identityLoadedCount += addCount;
- if( type === "unit" )unitLoadedCount += addCount;
- if( type === "group" )groupLoadedCount += addCount;
- if( ( !this.data.personList || this.data.personList.length === 0 || this.data.personList.length == personLoadedCount ) &&
- ( !this.data.identityList || this.data.identityList.length === 0 || this.data.identityList.length == identityLoadedCount )&&
- ( !this.data.unitList || this.data.unitList.length === 0 || this.data.unitList.length == unitLoadedCount ) &&
- ( !this.data.groupList || this.data.groupList.length === 0 || this.data.groupList.length == groupLoadedCount ) ){
- this.loaded = true;
- if (callback) callback();
- }
- }
- }.bind(this);
- checkCallback();
- if( this.data.identityList && this.data.identityList.length > 0 ){
- if( this.selector.options.resultType === "person" ) {
- //根据身份id批量获取人员对象
- o2.Actions.load("x_organization_assemble_express").PersonAction.listWithIdentityObject({
- identityList : this.data.identityList
- }, function (json) {
- this.selector.includeObject.loadPersonItem( json, identityContainer, this.level + 1, this);
- checkCallback("identity", this.data.identityList.length )
- }.bind(this), function () {
- checkCallback("identity", this.data.identityList.length )
- }.bind(this))
- }else{
- //根据身份id批量获取身份对象
- o2.Actions.load("x_organization_assemble_express").IdentityAction.listObject({
- identityList : this.data.identityList
- }, function (json) {
- this.selector.includeObject.loadIdentityItem( json, identityContainer, this.level + 1, this);
- checkCallback("identity", this.data.identityList.length )
- }.bind(this), function () {
- checkCallback("identity", this.data.identityList.length )
- }.bind(this))
- }
- }
- if( this.data.personList && this.data.personList.length > 0 ){
- if( this.selector.options.resultType === "person" ) {
- //根据人员d批量获取人员对象
- o2.Actions.load("x_organization_assemble_express").PersonAction.listObject({
- personList : this.data.personList
- }, function (json) {
- this.selector.includeObject.loadPersonItem( json, personContainer, this.level + 1, this);
- checkCallback("person", this.data.personList.length )
- }.bind(this), function () {
- checkCallback("person", this.data.personList.length )
- }.bind(this))
- }else{
- //根据人员id批量获取身份对象
- o2.Actions.load("x_organization_assemble_express").IdentityAction.listWithPersonObject({
- personList : this.data.personList
- }, function (json) {
- this.selector.includeObject.loadIdentityItem( json, personContainer, this.level + 1, this);
- checkCallback("person", this.data.personList.length )
- }.bind(this), function () {
- checkCallback("person", this.data.personList.length )
- }.bind(this))
- }
- }
- // ( this.data.personList || [] ).each( function(p){
- // if( this.selector.options.resultType === "person" ){
- // this.selector.orgAction.getPerson(function (json) {
- // this.selector.includeObject.loadPersonItem(json, this.children, this.level + 1, this );
- // checkCallback("person");
- // }.bind(this), function(){ checkCallback("person") }, p );
- // }else{
- // this.selector.orgAction.listIdentityByPerson(function(json){
- // this.selector.includeObject.loadIdentityItem(json, this.children, this.level + 1, this);
- // checkCallback("person")
- // }.bind(this), function(){ checkCallback("person") }, p );
- // }
- // }.bind(this));
- //list 服务不能获取下级数量
- // if( this.selector.options.expandSubEnable ){
- // o2.Actions.load("x_organization_assemble_express").UnitAction.listObject({
- // unitList : this.data.unitList
- // }, function (json) {
- // this.selector.includeObject.loadUnitItem( json, this.children, this.level + 1, this);
- // checkCallback("unit", this.data.unitList.length )
- // }.bind(this), function () {
- // checkCallback("unit", this.data.unitList.length )
- // }.bind(this))
- //
- //
- // o2.Actions.load("x_organization_assemble_express").GroupAction.listObject({
- // groupList : this.data.groupList
- // }, function (json) {
- // this.selector.includeObject.loadGroupItem(json, this.children, this.level + 1, this);
- // checkCallback("group", this.data.groupList.length )
- // }.bind(this), function () {
- // checkCallback("group", this.data.groupList.length )
- // }.bind(this))
- // }
- if( this.selector.options.expandSubEnable ){
- ( this.data.unitList || [] ).each( function(u){
- this.selector.orgAction.getUnit(function (json) {
- this.selector.includeObject.loadUnitItem(json, unitContainer, this.level + 1, this);
- checkCallback("unit");
- }.bind(this), function(){ checkCallback("unit") }, u );
- }.bind(this));
- ( this.data.groupList || [] ).each( function(g){
- this.selector.orgAction.getGroup(function (json) {
- this.selector.includeObject.loadGroupItem(json, groupContainer, this.level + 1, this);
- checkCallback("group");
- }.bind(this), function(){ checkCallback("group") }, g );
- }.bind(this));
- }
- }else{
- if (callback) callback( );
- }
- },
- loadCategoryChildren: function(callback){
- if (!this.categoryLoaded){
- var groupContainer, unitContainer;
- if( this.data.groupList )groupContainer = new Element("div").inject( this.children );
- if( this.data.unitList )unitContainer = new Element("div").inject( this.children );
- var unitLoadedCount = 0;
- var groupLoadedCount = 0;
- var checkCallback = function( type, count ){
- var addCount = count || 1;
- if( !this.selector.options.expandSubEnable ){
- this.categoryLoaded = true;
- }else{
- if( type === "unit" )unitLoadedCount += addCount;
- if( type === "group" )groupLoadedCount += addCount;
- if( ( !this.data.unitList || this.data.unitList.length === 0 || this.data.unitList.length == unitLoadedCount ) &&
- ( !this.data.groupList || this.data.groupList.length === 0 || this.data.groupList.length == groupLoadedCount ) ){
- this.categoryLoaded = true;
- if (callback) callback();
- }
- }
- }.bind(this);
- checkCallback();
- //list 服务不能获取下级数量
- // if( this.selector.options.expandSubEnable ){
- // o2.Actions.load("x_organization_assemble_express").UnitAction.listObject({
- // unitList : this.data.unitList
- // }, function (json) {
- // this.selector.includeObject.loadUnitItem( json, this.children, this.level + 1, this);
- // checkCallback("unit", this.data.unitList.length )
- // }.bind(this), function () {
- // checkCallback("unit", this.data.unitList.length )
- // }.bind(this))
- //
- //
- // o2.Actions.load("x_organization_assemble_express").GroupAction.listObject({
- // groupList : this.data.groupList
- // }, function (json) {
- // this.selector.includeObject.loadGroupItem(json, this.children, this.level + 1, this);
- // checkCallback("group", this.data.groupList.length )
- // }.bind(this), function () {
- // checkCallback("group", this.data.groupList.length )
- // }.bind(this))
- // }
- if( this.selector.options.expandSubEnable ){
- ( this.data.unitList || [] ).each( function(u){
- this.selector.orgAction.getUnit(function (json) {
- this.selector.includeObject.loadUnitItem(json, unitContainer, this.level + 1, this);
- checkCallback("unit");
- }.bind(this), function(){ checkCallback("unit") }, u );
- }.bind(this));
- ( this.data.groupList || [] ).each( function(g){
- this.selector.orgAction.getGroup(function (json) {
- this.selector.includeObject.loadGroupItem(json, groupContainer, this.level + 1, this);
- checkCallback("group");
- }.bind(this), function(){ checkCallback("group") }, g );
- }.bind(this));
- }
- }else{
- if (callback) callback( );
- }
- },
- loadItemChildren: function(callback){
- if (!this.itemLoaded){
- var personContainer, identityContainer;
- if( this.data.personList )personContainer = new Element("div").inject( this.children );
- if( this.data.identityList )identityContainer = new Element("div").inject( this.children );
- var personLoadedCount = 0;
- var identityLoadedCount = 0;
- var checkCallback = function( type, count ){
- var addCount = count || 1;
- if( type === "person" )personLoadedCount += addCount;
- if( type === "identity" )identityLoadedCount += addCount;
- if(
- (!this.data.personList || this.data.personList.length === 0 || this.data.personList.length == personLoadedCount) &&
- (!this.data.identityList || this.data.identityList.length === 0 || this.data.identityList.length == identityLoadedCount)
- ){
- this.itemLoaded = true;
- if (callback) callback();
- }
- }.bind(this);
- checkCallback();
- if( this.data.identityList && this.data.identityList.length > 0 ){
- if( this.selector.options.resultType === "person" ) {
- //根据身份id批量获取人员对象
- o2.Actions.load("x_organization_assemble_express").PersonAction.listWithIdentityObject({
- identityList : this.data.identityList
- }, function (json) {
- this.selector.includeObject.loadPersonItem( json, identityContainer, this.level + 1, this);
- checkCallback("identity", this.data.identityList.length )
- }.bind(this), function () {
- checkCallback("identity", this.data.identityList.length )
- }.bind(this))
- }else{
- //根据身份id批量获取身份对象
- o2.Actions.load("x_organization_assemble_express").IdentityAction.listObject({
- identityList : this.data.identityList
- }, function (json) {
- this.selector.includeObject.loadIdentityItem( json, identityContainer, this.level + 1, this);
- checkCallback("identity", this.data.identityList.length )
- }.bind(this), function () {
- checkCallback("identity", this.data.identityList.length )
- }.bind(this))
- }
- }
- if( this.data.personList && this.data.personList.length > 0 ){
- if( this.selector.options.resultType === "person" ) {
- //根据人员d批量获取人员对象
- o2.Actions.load("x_organization_assemble_express").PersonAction.listObject({
- personList : this.data.personList
- }, function (json) {
- this.selector.includeObject.loadPersonItem( json, personContainer, this.level + 1, this);
- checkCallback("person", this.data.personList.length )
- }.bind(this), function () {
- checkCallback("person", this.data.personList.length )
- }.bind(this))
- }else{
- //根据人员id批量获取身份对象
- o2.Actions.load("x_organization_assemble_express").IdentityAction.listWithPersonObject({
- personList : this.data.personList
- }, function (json) {
- this.selector.includeObject.loadIdentityItem( json, personContainer, this.level + 1, this);
- checkCallback("person", this.data.personList.length )
- }.bind(this), function () {
- checkCallback("person", this.data.personList.length )
- }.bind(this))
- }
- }
- // ( this.data.personList || [] ).each( function(p){
- // if( this.selector.options.resultType === "person" ){
- // this.selector.orgAction.getPerson(function (json) {
- // this.selector.includeObject.loadPersonItem(json, this.children, this.level + 1, this );
- // checkCallback("person");
- // }.bind(this), function(){ checkCallback("person") }, p );
- // }else{
- // this.selector.orgAction.listIdentityByPerson(function(json){
- // this.selector.includeObject.loadIdentityItem(json, this.children, this.level + 1, this);
- // checkCallback("person")
- // }.bind(this), function(){ checkCallback("person") }, p );
- // }
- // }.bind(this));
- }else{
- if (callback) callback( );
- }
- },
- _hasChild: function(){
- var uCount = (this.data.unitList) ? this.data.unitList.length : 0;
- var gCount = (this.data.groupList) ? this.data.groupList.length : 0;
- var pCount = (this.data.personList) ? this.data.personList.length : 0;
- var iCount = (this.data.identityList) ? this.data.identityList.length : 0;
- return uCount + gCount + pCount + iCount;
- },
- _hasChildCategory: function(){
- var uCount = (this.data.unitList) ? this.data.unitList.length : 0;
- var gCount = (this.data.groupList) ? this.data.groupList.length : 0;
- return uCount + gCount;
- },
- _hasChildItem: function(){
- var pCount = (this.data.personList) ? this.data.personList.length : 0;
- var iCount = (this.data.identityList) ? this.data.identityList.length : 0;
- return pCount + iCount;
- }
- });
- MWF.xApplication.Selector.Identity.ItemRoleCategory = new Class({
- Extends: MWF.xApplication.Selector.Person.ItemCategory,
- _getShowName: function(){
- return this.data.name;
- },
- _setIcon: function(){
- var style = this.selector.options.style;
- this.iconNode.setStyle("background-image", "url("+"../x_component_Selector/$Selector/"+style+"/icon/roleicon.png)");
- }
- });
- MWF.xApplication.Selector.Identity.Include = new Class({
- Implements: [Options, Events],
- options: {
- "include" : [], //增加的可选项
- "resultType" : "", //可以设置成个人,那么结果返回个人
- "expandSubEnable" : true //是否允许展开下一层
- },
- initialize: function(selector, itemAreaNode, options){
- this.setOptions(options);
- this.selector = selector;
- this.itemAreaNode = $(itemAreaNode);
- this.orgAction = MWF.Actions.get("x_organization_assemble_control");
- },
- load : function( callback ){
- if( !this.options.include || this.options.include.length === 0 ){
- this.fireEvent("afterLoad");
- if(callback)callback();
- return;
- }
- var count = 0;
- var checkCallback = function () {
- count++;
- if( count === this.options.include.length ){
- this.fireEvent("afterLoad");
- if(callback)callback();
- }
- }.bind(this);
- this.includeAreaNode = new Element( "div.includeAreaNode").inject( this.itemAreaNode, "top" );
- if( this.selector.isFlatCategory ){
- this.flatCategoryAreaNode = new Element( "div.includeFlatCategoryAreaNode").inject( this.selector.flatCategoryNode, "top" );
- }
- //this.includeIdentityAreaNode = new Element( "div").inject( this.includeAreaNode );
- //this.includePersonAreaNode = new Element( "div").inject( this.includeAreaNode );
- //this.includeUnitAreaNode = new Element( "div").inject( this.includeAreaNode );
- //this.includeGroupAreaNode = new Element( "div").inject( this.includeAreaNode );
- this.options.include.each( function( d ){
- var container = new Element("div").inject( this.includeAreaNode );
- var flatCategoryContainer;
- if( this.flatCategoryAreaNode ){
- flatCategoryContainer = new Element("div").inject( this.flatCategoryAreaNode );
- }
- if (typeOf(d)==="string"){
- var arr = d.split("@");
- var flag = arr[ arr.length - 1].toLowerCase();
- if( flag === "u" ){
- this.orgAction.listUnitByKey(function(json){
- this.loadUnitItem(json, container, null, null, flatCategoryContainer);
- checkCallback();
- }.bind(this), checkCallback, d);
- }else if( flag === "i" ) {
- this.orgAction.listIdentityByKey(function (json) {
- this.loadIdentityItem(json, container, null, null, true );
- checkCallback();
- }.bind(this), checkCallback, d);
- }else if( flag === "g" ){
- this.orgAction.listGroupByKey(function(json){
- this.loadGroupItem( json , container, null, null, flatCategoryContainer);
- checkCallback();
- }.bind(this), checkCallback, d);
- }else if( flag === "p" ){
- if( this.options.resultType === "person" ){
- this.orgAction.getPerson(function (json){
- this.loadPersonItem( json , container, null, null, true);
- checkCallback();
- }.bind(this), checkCallback, d);
- }else{
- this.orgAction.listIdentityByPerson(function(json){
- this.loadIdentityItem(json, container , null, null, true);
- checkCallback();
- }.bind(this), checkCallback, d);
- }
- }else{
- if( this.options.resultType === "person" ){
- this.orgAction.listPersonByKey(function (json) {
- this.loadPersonItem( json , container, null, null, true);
- checkCallback();
- }.bind(this), checkCallback, d);
- }else{
- this.orgAction.listIdentityByKey(function(json){
- this.loadIdentityItem(json, container, null, null, true);
- checkCallback();
- }.bind(this), checkCallback, d);
- }
- }
- }else{
- var arr = d.distinguishedName.split("@");
- var flag = arr[ arr.length - 1].toLowerCase();
- if( flag === "u" ) {
- this.orgAction.getUnit(function (json) {
- this.loadUnitItem(json, container, null, null, flatCategoryContainer);
- checkCallback();
- }.bind(this), checkCallback, d.distinguishedName);
- }else if( flag === "i" ){
- this.orgAction.getIdentity(function (json) {
- this.loadIdentityItem(json, container, null, null, true);
- checkCallback();
- }.bind(this), checkCallback, d.distinguishedName);
- }else if( flag === "g" ){
- this.orgAction.getGroup(function(json){
- this.loadGroupItem( json , container, null, null, flatCategoryContainer);
- checkCallback();
- }.bind(this), checkCallback, d.distinguishedName, null, null, true);
- }else if( flag === "p" ){
- if( this.options.resultType === "person" ){
- this.orgAction.getPerson(function (json) {
- this.loadPersonItem(json, container, null, null, true);
- checkCallback();
- }.bind(this), checkCallback, d.distinguishedName);
- }else{
- this.orgAction.listIdentityByPerson(function(json){
- this.loadIdentityItem(json, container, null, null, true);
- checkCallback();
- }.bind(this), checkCallback, d.distinguishedName);
- }
- }else{
- if( this.options.resultType === "person" ){
- this.orgAction.getPerson(function (json) {
- this.loadPersonItem(json, container, null, null, true);
- checkCallback();
- }.bind(this), checkCallback, d.distinguishedName);
- }else{
- this.orgAction.getIdentity(function (json) {
- this.loadIdentityItem(json, container, null, null, true);
- checkCallback();
- }.bind(this), checkCallback, d.distinguishedName);
- }
- }
- //var category = this._newItemCategory("ItemCategory", unit, this, this.itemAreaNode);
- }
- }.bind(this))
- },
- loadPersonItem : function( json, container, level, category, isIncludedPerson ){
- if( !json.data )return;
- var array = typeOf( json.data ) === "array" ? json.data : [json.data];
- array.each(function(data){
- if( !this.selector.isExcluded( data ) ) {
- if(!this.includePerson)this.includePerson = [];
- if(isIncludedPerson)this.includePerson.push( data.distinguishedName );
- if(!this.includePersonObject)this.includePersonObject = [];
- if(isIncludedPerson)this.includePersonObject.push( data );
- var item = this.selector._newItem(data, this.selector, container || this.includeAreaNode, level || 1, category);
- this.selector.items.push(item);
- if( category && category.subItems ){
- category.subItems.push( item );
- }
- }
- }.bind(this));
- },
- loadIdentityItem : function( json, container, level, category, isIncludedIdentity ){
- if( !json.data )return;
- var array = typeOf( json.data ) === "array" ? json.data : [json.data];
- array.each(function(data){
- if( !this.selector.isExcluded( data ) ) {
- if(!this.includeIdentity)this.includeIdentity = [];
- if(isIncludedIdentity)this.includeIdentity.push( data.distinguishedName );
- if(!this.includeIdentityObject)this.includeIdentityObject = [];
- if(isIncludedIdentity)this.includeIdentityObject.push( data );
- var item = this.selector._newItem(data, this.selector, container || this.includeAreaNode, level || 1, category);
- this.selector.items.push(item);
- if( category && category.subItems ){
- category.subItems.push( item );
- }
- }
- }.bind(this));
- },
- loadUnitItem : function( json, container, level, parentCategory, flatCategoryContainer ){
- if( !json.data )return;
- var array = typeOf( json.data ) === "array" ? json.data : [json.data];
- array.each(function(data){
- if( !this.selector.isExcluded( data ) ) {
- if(!this.includeUnit)this.includeUnit = [];
- this.includeUnit.push( data.distinguishedName );
- var category;
- if( flatCategoryContainer ){
- category = this.selector._newItemCategory("ItemUnitCategory", data, this.selector,
- container || this.includeAreaNode, level, parentCategory, true);
- category.nodeContainer = flatCategoryContainer;
- category.load();
- }else{
- category = this.selector._newItemCategory("ItemUnitCategory", data, this.selector,
- container || this.includeAreaNode, level, parentCategory);
- }
- if( parentCategory && parentCategory.subCategorys ){
- parentCategory.subCategorys.push( category )
- }else if(this.selector.subCategorys){
- this.selector.subCategorys.push( category )
- }
- }
- }.bind(this));
- },
- loadGroupItem : function( json, container, level, parentCategory, flatCategoryContainer ){
- if( !json.data )return;
- var array = typeOf( json.data ) === "array" ? json.data : [json.data];
- array.each(function(data){
- if( !this.selector.isExcluded( data ) ) {
- if(!this.includeGroup)this.includeGroup = [];
- this.includeGroup.push( data.distinguishedName );
- var category;
- if( flatCategoryContainer ){
- category = this.selector._newItemCategory("ItemGroupCategory", data, this.selector, container || this.includeAreaNode, level, parentCategory, true);
- category.nodeContainer = flatCategoryContainer;
- category.load();
- }else{
- category = this.selector._newItemCategory("ItemGroupCategory", data, this.selector, container || this.includeAreaNode, level, parentCategory)
- }
- if( parentCategory && parentCategory.subCategorys ){
- parentCategory.subCategorys.push( category )
- }else if(this.selector.subCategorys){
- this.selector.subCategorys.push( category )
- }
- }
- }.bind(this));
- },
- listByFilter : function( type, key, callback ){
- var arr1 = this.listByFilterPerson(key) || [];
- this.listByFilterUnitAndGroup( type, key, function(arr2){
- this.listByFilterGroup( type, key, function(arr3){
- if (callback) callback( arr1.concat( arr2 || [] ).concat( arr3 || [] ) );
- }.bind(this))
- }.bind(this))
- },
- listByFilterPerson : function( key ){
- var identitys = [];
- var persons = [];
- var keyString = typeOf( key )==="string" ? key.toLowerCase() : key.key.toLowerCase();
- if( this.includeIdentityObject && this.includeIdentityObject.length ){
- identitys = this.includeIdentityObject.filter( function(id) {
- return ( id.pinyin || "" ).indexOf(keyString) > -1 || (id.pinyinInitial || "").indexOf(keyString) > -1 || (id.distinguishedName || "").indexOf(keyString) > -1;
- })
- }
- if( this.includePersonObject && this.includePersonObject.length ){
- persons = this.includePersonObject.filter( function(id) {
- return ( id.pinyin || "" ).indexOf(keyString) > -1 || (id.pinyinInitial || "").indexOf(keyString) > -1 || (id.distinguishedName || "").indexOf(keyString) > -1;
- })
- }
- return identitys.concat( persons);
- },
- listByFilterGroup : function( type, key, callback ){
- //根据关键字获取群组内的人员,再转成身份
- var keyString = typeOf( key )==="string" ? key.toLowerCase() : key.key.toLowerCase();
- if( this.includeGroup && this.includeGroup.length ){
- var keyObject = { "key" : keyString, "groupList" : this.includeGroup };
- this.orgAction[ type === "pinyin" ? "listPersonByPinyin" : "listPersonByKey" ](function(json){
- if( this.options.resultType === "person" ){
- if (callback) callback( json.data );
- }else{
- var personList = (json.data || []).map( function(d){
- return d.id
- });
- o2.Actions.get("x_organization_assemble_express").listIdentityWithPerson( { "personList" : personList }, function(js){
- if (callback) callback(js.data);
- }.bind(this), function(){
- if (callback) callback();
- }.bind(this))
- }
- }.bind(this), function(){
- if (callback) callback();
- }.bind(this), keyObject);
- }else{
- if (callback) callback();
- }
- },
- listByFilterUnitAndGroup : function( type, key, callback ){
- //根据关键字获取组织和群组内的身份
- var keyString = typeOf( key )==="string" ? key.toLowerCase() : key.key.toLowerCase();
- if ( this.includeUnit && this.includeUnit.length ){
- key = this.getUnitFilterKey( key, this.includeUnit, this.includeGroup );
- this.orgAction.listIdentityByKey(function(json){
- if (callback) callback(json.data);
- }.bind(this), function(){
- if (callback) callback();
- }, key);
- }else{
- if (callback) callback();
- }
- },
- getUnitFilterKey : function( key, unitObject, groupObject ){
- var unitObjects = unitObject || [];
- var units = [];
- unitObjects.each(function(u){
- if (typeOf(u)==="string"){
- units.push(u);
- }
- if (typeOf(u)==="object"){
- units.push(u.distinguishedName);
- }
- });
- var groupObjects = groupObject || [];
- var groups = [];
- groupObjects.each(function(g){
- if (typeOf(g)==="string"){
- groups.push(g);
- }
- if (typeOf(g)==="object"){
- groups.push(g.distinguishedName);
- }
- });
- if( !units.length && !groups.length ){
- return key;
- }else{
- var result = { "key": key };
- if( units.length )result.unitList = units;
- if( groups.length )result.groupList = groups;
- return result;
- }
- // return units.length ? {"key": key, "unitList": units, "groupList" : groups} : key;
- }
- });
- MWF.xApplication.Selector.Identity.Filter = new Class({
- Implements: [Options, Events],
- options: {
- "style": "default",
- "units": [],
- "resultType" : "" //可以设置成个人,那么结果返回个人
- },
- initialize: function(value, options){
- this.setOptions(options);
- this.value = value;
- this.orgAction = MWF.Actions.get("x_organization_assemble_control");
- },
- filter: function(value, callback){
- this.value = value;
- var key = this.value;
- if (this.options.units.length){
- var units = [];
- this.options.units.each(function(u){
- if (typeOf(u)==="string"){
- units.push(u);
- }
- if (typeOf(u)==="object"){
- units.push(u.distinguishedName);
- }
- });
- key = {"key": this.value, "unitList": units};
- }
- var data = null;
- this.orgAction.listIdentityByKey(function(json){
- data = json.data;
- if (callback) callback(data)
- }.bind(this), null, key);
- }
- });
|