PersonSettingExplorer.min.js 3.8 KB

1
  1. MWF.xDesktop.requireApp("Template","Explorer",null,false);MWF.xDesktop.requireApp("Organization","Selector.package",null,false);MWF.xDesktop.requireApp("Attendance","Explorer",null,false);MWF.xApplication.Attendance.PersonSettingExplorer=new Class({Extends:MWF.xApplication.Attendance.Explorer,Implements:[Options,Events],initialize:function(e,t,n,i){this.setOptions(i);this.app=t;this.path="/x_component_Attendance/$PersonSettingExplorer/";this.cssPath="/x_component_Attendance/$PersonSettingExplorer/"+this.options.style+"/css.wcss";this._loadCss();this.actions=n;this.node=$(e);this.initData();if(!this.personActions)this.personActions=new MWF.xAction.org.express.RestActions},load:function(){this.loadToolbar();this.loadContentNode();this.loadView();this.setNodeScroll()},loadView:function(){this.view=new MWF.xApplication.Attendance.PersonSettingExplorer.View(this.elementContentNode,this.app,this,this.viewData,this.options.searchKey);this.view.load();this.setContentSize()},createDocument:function(){if(this.view)this.view._createDocument()}});MWF.xApplication.Attendance.PersonSettingExplorer.View=new Class({Extends:MWF.xApplication.Attendance.Explorer.View,_createItem:function(e){return new MWF.xApplication.Attendance.PersonSettingExplorer.Document(this.table,e,this.explorer,this)},_getCurrentPageData:function(e,t){this.actions.listPersonSetting(function(t){if(e)e(t)})},_removeDocument:function(e,t){this.actions.deletePersonSetting(e.id,function(e){this.explorer.view.reload();this.app.notice(this.app.lp.deleteDocumentOK,"success")}.bind(this))},_createDocument:function(){var e=new MWF.xApplication.Attendance.PersonSettingExplorer.Form(this.explorer);e.create()},_openDocument:function(e){var t=new MWF.xApplication.Attendance.PersonSettingExplorer.Form(this.explorer,e);t.edit()}});MWF.xApplication.Attendance.PersonSettingExplorer.Document=new Class({Extends:MWF.xApplication.Attendance.Explorer.Document});MWF.xApplication.Attendance.PersonSettingExplorer.Form=new Class({Extends:MWF.xApplication.Attendance.Explorer.PopupForm,options:{width:600,height:450,hasTop:true,hasBottom:true,title:"",draggable:true,closeAction:true},_createTableContent:function(){var e="<table width='100%' bordr='0' cellpadding='5' cellspacing='0' styles='formTable'>"+"<tr><td colspan='2' styles='formTableHead'>考勤人员设置</td></tr>"+"<tr><td styles='formTabelTitle' lable='configType'></td>"+" <td styles='formTableValue' item='configType'></td></tr>"+"<tr><td styles='formTabelTitle' lable='companyName'></td>"+" <td styles='formTableValue' item='companyName'></td></tr>"+"<tr><td styles='formTabelTitle' lable='organizationName'></td>"+" <td styles='formTableValue' item='organizationName'></td></tr>"+"<tr><td styles='formTabelTitle' lable='employeeName'></td>"+" <td styles='formTableValue' item='employeeName'></td></tr>"+"<tr><td styles='formTabelTitle' lable='employeeNumber'></td>"+" <td styles='formTableValue' item='employeeNumber'></td></tr>"+"<tr><td styles='formTabelTitle' lable='empInCompanyTime'></td>"+" <td styles='formTableValue' item='empInCompanyTime'></td></tr>"+"</table>";this.formTableArea.set("html",e);MWF.xDesktop.requireApp("Template","MForm",function(){this.form=new MForm(this.formTableArea,this.data,{isEdited:this.isEdited||this.isNew,itemTemplate:{configType:{text:"配置类型",type:"select",selectText:["需要考勤","不需要考勤"],selectValue:["REQUIRED","NOTREQUIRED"]},companyName:{text:"公司名称",tType:"company",notEmpty:true},organizationName:{text:"部门名称",tType:"department",notEmpty:true},employeeName:{text:"员工姓名",tType:"person",notEmpty:true},employeeNumber:{text:"员工编号",notEmpty:true},empInCompanyTime:{text:"入职日期",tType:"date"}}},this.app);this.form.load()}.bind(this),true)},_ok:function(e,t){this.app.restActions.savePersonSetting(e,function(e){if(t)t(e)}.bind(this))}});