| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062 |
- MWF.xDesktop.requireApp("Attendance", "Explorer", null, false);
- MWF.xDesktop.requireApp("Organization", "Selector.package", null, false);
- MWF.xDesktop.requireApp("Template", "MForm", null, false);
- MWF.xApplication.Attendance.PersonDetail = new Class({
- Extends: MWF.widget.Common,
- Implements: [Options, Events],
- options: {
- "style": "default"
- },
- initialize: function(node, app, actions, options){
- this.setOptions(options);
- this.app = app;
- this.path = "/x_component_Attendance/$PersonDetail/";
- this.cssPath = "/x_component_Attendance/$PersonDetail/"+this.options.style+"/css.wcss";
- this._loadCss();
- this.actions = actions;
- this.node = $(node);
- },
- load: function(){
- //options = {
- // "name": "直接主管",
- // "personName": this.workContext.getWork().creatorPerson
- //}
- //return this.org.getPersonAttribute(options);
- this.loadTab();
- },
- loadTab : function(){
- this.tabNode = new Element("div",{"styles" : this.css.tabNode }).inject(this.node)
- this.detailArea = new Element("div",{"styles" : this.css.tabPageContainer }).inject(this.tabNode)
- //this.selfHolidayArea = new Element("div",{"styles" : this.css.tabPageContainer }).inject(this.tabNode)
- this.detailStaticArea = new Element("div",{"styles" : this.css.tabPageContainer }).inject(this.tabNode)
- //this.selfHolidayStaticArea = new Element("div",{"styles" : this.css.tabPageContainer }).inject(this.tabNode)
- MWF.require("MWF.widget.Tab", function(){
- this.tabs = new MWF.widget.Tab(this.tabNode, {"style": "attendance"});
- this.tabs.load();
- this.detailPage = this.tabs.addTab(this.detailArea, "我的出勤明细", false);
- this.detailPage.contentNodeArea.set("class","detailPage");
- this.detailPage.addEvent("show",function(){
- if( !this.detailExplorer ){
- this.detailExplorer = new MWF.xApplication.Attendance.PersonDetail.Explorer( this.detailArea, this );
- this.detailExplorer.load();
- }
- }.bind(this))
- //this.selfHolidayPage = this.tabs.addTab(this.selfHolidayArea, "我的休假明细", false);
- //this.selfHolidayPage.contentNodeArea.set("class","selfHolidayPage");
- //this.selfHolidayPage.addEvent("show",function(){
- // if( !this.selfHolidayExplorer ){
- // this.selfHolidayExplorer = new MWF.xApplication.Attendance.PersonDetail.SelfHolidayExplorer( this.selfHolidayArea, this );
- // this.selfHolidayExplorer.load();
- // }
- //}.bind(this))
- this.detailStaticPage = this.tabs.addTab(this.detailStaticArea, "我的出勤率统计", false);
- this.detailStaticPage.contentNodeArea.set("class","detailStaticPage");
- this.detailStaticPage.addEvent("show",function(){
- if( !this.detailStaticExplorer ){
- this.detailStaticExplorer = new MWF.xApplication.Attendance.PersonDetail.DetailStaticExplorer( this.detailStaticArea, this );
- this.detailStaticExplorer.load();
- }
- }.bind(this))
- //this.selfHolidayStaticPage = this.tabs.addTab(this.selfHolidayStaticArea, "我的休假统计", false);
- //this.selfHolidayStaticPage.contentNodeArea.set("class","selfHolidayStaticPage");
- //this.selfHolidayStaticPage.addEvent("show",function(){
- // if( !this.selfHolidayStaticExplorer ){
- // this.selfHolidayStaticExplorer = new MWF.xApplication.Attendance.PersonDetail.SelfHolidayStaticExplorer( this.selfHolidayStaticArea, this );
- // this.selfHolidayStaticExplorer.load();
- // }
- //}.bind(this))
- this.tabs.pages[0].showTab();
- }.bind(this));
- }
- })
- MWF.xApplication.Attendance.PersonDetail.Explorer = new Class({
- Extends: MWF.xApplication.Attendance.Explorer,
- Implements: [Options, Events],
- initialize: function(node, parent, options){
- this.setOptions(options);
- this.parent = parent;
- this.app = parent.app;
- this.css = parent.css;
- this.path = parent.path;
- this.actions = parent.actions;
- this.node = $(node);
- this.preMonthDate = new Date();
- //this.preMonthDate.decrement("month", 1);
- this.initData();
- if (!this.peopleActions) this.peopleActions = new MWF.xAction.org.express.RestActions();
- },
- initData: function(){
- this.toolItemNodes = [];
- },
- reload: function(){
- this.node.empty();
- this.load();
- },
- load: function(){
- this.loadConfig();
- this.loadFilter();
- this.loadContentNode();
- this.setNodeScroll();
- var month = (this.preMonthDate.getMonth()+1).toString();
- if( month.length == 1 )month = "0"+month;
- var filterData = {
- cycleYear : this.preMonthDate.getFullYear().toString(),
- cycleMonth : month
- }
- this.loadView( filterData );
- },
- loadConfig : function(){
- this.config = {};
- var v;
- this.actions.getSettingCode( "APPEALABLE", function(json){
- v = json.data ? json.data.configValue : null
- },null, false)
- if( !v ){
- this.config.APPEALABLE = true;
- }else{
- this.config.APPEALABLE = (v != "false" )
- }
- },
- loadFilter : function(){
- this.fileterNode = new Element("div.fileterNode", {
- "styles" : this.css.fileterNode
- }).inject(this.node)
- var table = new Element("table", {
- "width" : "100%", "border" : "0", "cellpadding" : "5", "cellspacing" : "0", "styles" : this.css.filterTable, "class" : "filterTable"
- }).inject( this.fileterNode );
- var tr = new Element("tr").inject(table);
- var td = new Element("td", { "styles" : this.css.filterTableTitle, "text" : this.preMonthDate.format(this.app.lp.dateFormatMonth) }).inject(tr);
- //this.createYearSelectTd( tr )
- //this.createMonthSelectTd( tr )
- this.createDateSelectTd( tr )
- this.createIsAbsent(tr)
- this.createIsLate( tr )
- //this.createIsLeaveEarlier( tr )
- this.createLackOfTimeCount(tr)
- this.createActionTd( tr )
- },
- createYearSelectTd : function( tr ){
- var _self = this;
- var td = new Element("td", { "styles" : this.css.filterTableTitle, "text" : "年度" }).inject(tr);
- var td = new Element("td", { "styles" : this.css.filterTableValue }).inject(tr);
- this.cycleYear = new MDomItem( td, {
- "name" : "cycleYear",
- "type" : "select",
- "selectValue" : function(){
- var years = [];
- var year = new Date().getFullYear();
- for(var i=0; i<6; i++ ){
- years.push( year-- );
- }
- return years;
- },
- "event" : {
- "change" : function(){ if(_self.dateSelecterTd)_self.createDateSelectTd() }
- }
- }, true, this.app );
- this.cycleYear.load();
- },
- createMonthSelectTd : function( tr ){
- var _self = this;
- var td = new Element("td", { "styles" : this.css.filterTableTitle, "text" : "月份" }).inject(tr);
- var td = new Element("td", { "styles" : this.css.filterTableValue }).inject(tr);
- this.cycleMonth = new MDomItem( td, {
- "name" : "cycleMonth",
- "type" : "select",
- "defaultValue" : function(){
- var month = (new Date().getMonth() + 1 ).toString();
- return month.length == 1 ? "0"+month : month;
- },
- "selectValue" :["","01","02","03","04","05","06","07","08","09","10","11","12"],
- "event" : {
- "change" : function(){ if(_self.dateSelecterTd)_self.createDateSelectTd() }
- }
- }, true, this.app );
- this.cycleMonth.load();
- },
- createDateSelectTd : function( tr ){
- var _self = this;
- if( tr ){
- var td = new Element("td", { "styles" : this.css.filterTableTitle, "text" : "日期" }).inject(tr);
- this.dateSelecterTd = new Element("td", { "styles" : this.css.filterTableValue }).inject(tr);
- }
- if( this.q_date ){
- this.dateSelecterTd.empty();
- }
- this.q_date = new MDomItem( this.dateSelecterTd, {
- "name" : "q_date",
- "type" : "select",
- "selectValue" : function(){
- var year = _self.cycleYear ? parseInt(_self.cycleYear.getValue()) : _self.preMonthDate.getFullYear() ;
- var month = _self.cycleMonth ? (parseInt(_self.cycleMonth.getValue())-1) : _self.preMonthDate.getMonth() ;
- var date = new Date(year, month, 1);
- var days = [];
- days.push("");
- while (date.getMonth() === month) {
- var d = date.getDate().toString();
- if( d.length == 1 )d = "0"+d
- days.push( d );
- date.setDate(date.getDate() + 1);
- }
- return days;
- }
- }, true, this.app );
- this.q_date.load();
- },
- createIsAbsent: function(tr){
- var td = new Element("td", { "styles" : this.css.filterTableTitle, "text" : "缺勤" }).inject(tr);
- var td = new Element("td", { "styles" : this.css.filterTableValue }).inject(tr);
- this.isAbsent = new MDomItem( td, {
- "name" : "isAbsent",
- "type" : "select",
- "selectValue" : ["","true","false"],
- "selectText" : ["","缺勤","未缺勤"],
- }, true, this.app );
- this.isAbsent.load();
- },
- //createIsLeaveEarlier: function(tr){
- // var td = new Element("td", { "styles" : this.css.filterTableTitle, "text" : "早退" }).inject(tr);
- // var td = new Element("td", { "styles" : this.css.filterTableValue }).inject(tr);
- // this.isLeaveEarlier = new MDomItem( td, {
- // "name" : "isLeaveEarlier",
- // "type" : "select",
- // "selectValue" : ["-1","true","false"],
- // "selectText" : ["","早退","未早退"],
- // }, true, this.app );
- // this.isLeaveEarlier.load();
- //},
- createLackOfTimeCount: function(tr){
- var td = new Element("td", { "styles" : this.css.filterTableTitle, "text" : "工时不足" }).inject(tr);
- var td = new Element("td", { "styles" : this.css.filterTableValue }).inject(tr);
- this.isLackOfTime = new MDomItem( td, {
- "name" : "isLackOfTime",
- "type" : "select",
- "selectValue" : ["","true","false"],
- "selectText" : ["","是","否"],
- }, true, this.app );
- this.isLackOfTime.load();
- },
- createIsLate: function(tr){
- var td = new Element("td", { "styles" : this.css.filterTableTitle, "text" : "迟到" }).inject(tr);
- var td = new Element("td", { "styles" : this.css.filterTableValue }).inject(tr);
- this.isLate = new MDomItem( td, {
- "name" : "isLate",
- "type" : "select",
- "selectValue" : ["","true","false"],
- "selectText" : ["","迟到","未迟到"],
- }, true, this.app );
- this.isLate.load();
- },
- createActionTd : function( tr ){
- var td = new Element("td", { "styles" : this.css.filterTableValue }).inject(tr);
- var input = new Element("button",{
- "text" : "查询",
- "styles" : this.css.filterButton
- }).inject(td);
- input.addEvent("click", function(){
- //var filterData = {
- // cycleYear : this.cycleYear.getValue(),
- // cycleMonth : this.cycleMonth.getValue()
- //}
- var year = this.preMonthDate.getFullYear().toString();
- var month = (this.preMonthDate.getMonth()+1).toString();
- if( month.length == 1 )month = "0"+month;
- var filterData = {
- cycleYear : year,
- cycleMonth : month
- }
- if( this.isAbsent && this.isAbsent.getValue()!=""){
- filterData.isAbsent = this.getBoolean( this.isAbsent.getValue() );
- }
- if( this.isLeaveEarlier && this.isLeaveEarlier.getValue()!=""){
- filterData.isLeaveEarlier = this.getBoolean( this.isLeaveEarlier.getValue());
- }
- if( this.isLate && this.isLate.getValue()!="" ){
- filterData.isLate = this.getBoolean( this.isLate.getValue());
- }
- if( this.isLackOfTime && this.isLackOfTime.getValue()!=""){
- filterData.isLackOfTime = this.getBoolean( this.isLackOfTime.getValue());
- }
- if( this.q_date && this.q_date.getValue()!="" ){
- filterData.q_date = year + "-" + month + "-" + this.q_date.getValue();
- }
- this.loadView( filterData );
- }.bind(this))
- },
- getBoolean : function( value ){
- if( value === "true" )return true;
- if( value === "false" )return false;
- return value;
- },
- selecePerson: function(){
- var options = {
- "type": "person",
- "title": "选择人员",
- "count" : "1",
- "onComplete": function(items){
- var names = [];
- items.each(function(item){
- names.push(item.data.name);
- }.bind(this));
- this.q_empName.setValue( names.join(",") )
- }.bind(this)
- };
- var selector = new MWF.OrgSelector(this.app.content, options);
- },
- loadContentNode: function(){
- this.elementContentNode = new Element("div", {
- "styles": this.css.elementContentNode
- }).inject(this.node);
- this.app.addEvent("resize", function(){this.setContentSize();}.bind(this));
- },
- loadView : function( filterData ){
- this.elementContentNode.empty();
- if( this.view )delete this.view;
- this.view = new MWF.xApplication.Attendance.PersonDetail.View(this.elementContentNode, this.app,this );
- this.view.filterData = filterData
- this.view.load();
- this.setContentSize();
- },
- setContentSize: function(){
- var tabNodeSize = this.parent.tabs ? this.parent.tabs.tabNodeContainer.getSize() : {"x":0,"y":0};
- var fileterNodeSize = this.fileterNode ? this.fileterNode.getSize() : {"x":0,"y":0};
- var nodeSize = this.parent.node.getSize();
- var pt = this.elementContentNode.getStyle("padding-top").toFloat();
- var pb = this.elementContentNode.getStyle("padding-bottom").toFloat();
- //var filterSize = this.filterNode.getSize();
- var height = nodeSize.y-tabNodeSize.y-pt-pb-fileterNodeSize.y-20;
- this.elementContentNode.setStyle("height", ""+height+"px");
- this.pageCount = (height/40).toInt()+5;
- if (this.view && this.view.items.length<this.pageCount){
- this.view.loadElementList(this.pageCount-this.view.items.length);
- }
- }
- });
- MWF.xApplication.Attendance.PersonDetail.SelfHolidayExplorer = new Class({
- Extends: MWF.xApplication.Attendance.PersonDetail.Explorer,
- loadView : function( filterData ){
- this.elementContentNode.empty();
- if( this.view )delete this.view;
- this.view = new MWF.xApplication.Attendance.PersonDetail.SelfHolidayView(this.elementContentNode, this.app,this );
- this.view.filterData = filterData
- this.view.load();
- this.setContentSize();
- }
- })
- MWF.xApplication.Attendance.PersonDetail.DetailStaticExplorer = new Class({
- Extends: MWF.xApplication.Attendance.PersonDetail.Explorer,
- load: function(){
- //this.loadFilter();
- this.loadContentNode();
- this.setNodeScroll();
- var filterData = {
- cycleYear : this.preMonthDate.getFullYear().toString(),
- cycleMonth : this.preMonthDate.format(this.app.lp.dateFormatOnlyMonth)
- }
- this.loadView( filterData );
- },
- loadFilter : function(){
- this.fileterNode = new Element("div.fileterNode", {
- "styles" : this.css.fileterNode
- }).inject(this.node)
- var table = new Element("table", {
- "width" : "100%", "border" : "0", "cellpadding" : "5", "cellspacing" : "0", "styles" : this.css.filterTable, "class" : "filterTable"
- }).inject( this.fileterNode );
- table.setStyle("width","360px");
- var tr = new Element("tr").inject(table);
- this.createYearSelectTd( tr )
- this.createMonthSelectTd( tr )
- //this.createDateSelectTd( tr )
- this.createActionTd( tr )
- },
- createMonthSelectTd : function( tr ){
- var _self = this;
- var td = new Element("td", { "styles" : this.css.filterTableTitle, "text" : "月份" }).inject(tr);
- var td = new Element("td", { "styles" : this.css.filterTableValue }).inject(tr);
- this.cycleMonth = new MDomItem( td, {
- "name" : "cycleMonth",
- "type" : "select",
- "selectValue" :["","01","02","03","04","05","06","07","08","09","10","11","12"],
- "event" : {
- "change" : function(){ if(_self.dateSelecterTd)_self.createDateSelectTd() }
- }
- }, true, this.app );
- this.cycleMonth.load();
- },
- createActionTd : function( tr ){
- var td = new Element("td", { "styles" : this.css.filterTableValue }).inject(tr);
- var input = new Element("button",{
- "text" : "查询",
- "styles" : this.css.filterButton
- }).inject(td);
- input.addEvent("click", function(){
- //var filterData = {
- // cycleYear : this.cycleYear.getValue(),
- // cycleMonth : this.cycleMonth.getValue()
- //}
- var year = this.preMonthDate.getFullYear().toString();
- var month = (this.preMonthDate.getMonth()+1).toString();
- if( month.length == 1 )month = "0"+month;
- var filterData = {
- cycleYear : year,
- cycleMonth : month
- }
- if( this.isAbsent && this.isAbsent.getValue()!="" ){
- filterData.isAbsent = this.isAbsent.getValue();
- }
- if( this.isLeaveEarlier && this.isLeaveEarlier.getValue()!=""){
- filterData.isLeaveEarlier = this.isLeaveEarlier.getValue();
- }
- if( this.isLate && this.isLate.getValue()!="" ){
- filterData.isLate = this.isLate.getValue();
- }
- if( this.q_date && this.q_date.getValue()!="" ){
- filterData.q_date = year + "-" + month + "-" + this.q_date.getValue();
- }
- this.loadView( filterData );
- }.bind(this))
- },
- loadView : function( filterData ){
- this.elementContentNode.empty();
- if( this.view )delete this.view;
- this.view = new MWF.xApplication.Attendance.PersonDetail.DetailStaticView(this.elementContentNode, this.app,this );
- this.view.filterData = filterData;
- this.view.listItemUrl = this.path+"listItem_detailStatic.json";
- this.view.load();
- this.setContentSize();
- }
- })
- MWF.xApplication.Attendance.PersonDetail.SelfHolidayStaticExplorer = new Class({
- Extends: MWF.xApplication.Attendance.PersonDetail.Explorer,
- loadView : function( filterData ){
- this.elementContentNode.empty();
- if( this.view )delete this.view;
- this.view = new MWF.xApplication.Attendance.PersonDetail.SelfHolidayStaticView(this.elementContentNode, this.app,this );
- this.view.filterData = filterData
- this.view.load();
- this.setContentSize();
- }
- })
- MWF.xApplication.Attendance.PersonDetail.View = new Class({
- Extends: MWF.xApplication.Attendance.Explorer.View,
- _createItem: function(data){
- return new MWF.xApplication.Attendance.PersonDetail.Document(this.table, data, this.explorer, this);
- },
- _getCurrentPageData: function(callback, count){
- if(!count)count=100;
- var id = (this.items.length) ? this.items[this.items.length-1].data.id : "(0)";
- var filter = this.filterData || {};
- filter.key = this.sortField || this.sortFieldDefault || "";
- filter.order = this.sortType || this.sortTypeDefault || "";
- filter.q_empName = layout.desktop.session.user.name;
- this.actions.listDetailFilterNext( id, count, filter, function(json){
- var data = json.data;
- data.each(function(d){
- d.APPEALABLE = this.explorer.config.APPEALABLE;
- }.bind(this));
- json.data = data;
- if( callback )callback(json);
- }.bind(this))
- //this.actions.listDetailFilterUser( filter, function(json){
- // if( callback )callback(json);
- //}.bind(this))
- },
- _removeDocument: function(documentData, all){
- },
- _createDocument: function(){
- },
- _openDocument: function( documentData ){
- }
- })
- MWF.xApplication.Attendance.PersonDetail.SelfHolidayView = new Class({
- Extends: MWF.xApplication.Attendance.Explorer.View,
- _createItem: function(data){
- return new MWF.xApplication.Attendance.PersonDetail.SelfHolidayDocument(this.table, data, this.explorer, this);
- },
- _getCurrentPageData: function(callback, count){
- var filter = this.filterData || {};
- filter.q_empName = layout.desktop.session.user.name;
- this.actions.listDetailFilterUser( filter, function(json){
- if( callback )callback(json);
- }.bind(this))
- },
- _removeDocument: function(documentData, all){
- },
- _createDocument: function(){
- },
- _openDocument: function( documentData ){
- }
- })
- MWF.xApplication.Attendance.PersonDetail.DetailStaticView = new Class({
- Extends: MWF.xApplication.Attendance.Explorer.View,
- _createItem: function(data){
- return new MWF.xApplication.Attendance.PersonDetail.DetailStaticDocument(this.table, data, this.explorer, this);
- },
- _getCurrentPageData: function(callback, count){
- var filter = this.filterData || {};
- filter.key = this.sortField || this.sortFieldDefault || "";
- filter.order = this.sortType || this.sortTypeDefault || "";
- filter.q_empName = layout.desktop.session.user.name;
- //if( filter.cycleMonth == "" )filter.cycleMonth="(0)";
- var month = (new Date().getMonth()+1).toString();
- if( month.length == 1 )month = "0"+month;
- filter.cycleMonth = month;
- this.actions.listStaticMonthPerson( filter.q_empName, filter.cycleYear,filter.cycleMonth, function(json){
-
- if( callback )callback(json);
- }.bind(this))
- },
- _removeDocument: function(documentData, all){
- },
- _createDocument: function(){
- },
- _openDocument: function( documentData ){
- }
- })
- MWF.xApplication.Attendance.PersonDetail.SelfHolidayStaticView = new Class({
- Extends: MWF.xApplication.Attendance.Explorer.View,
- _createItem: function(data){
- return new MWF.xApplication.Attendance.PersonDetail.SelfHolidayStaticDocument(this.table, data, this.explorer, this);
- },
- _getCurrentPageData: function(callback, count){
- var filter = this.filterData || {};
- this.actions.listDetailFilterUser( filter, function(json){
- if( callback )callback(json);
- }.bind(this))
- },
- _removeDocument: function(documentData, all){
- },
- _createDocument: function(){
- },
- _openDocument: function( documentData ){
- }
- })
- MWF.xApplication.Attendance.PersonDetail.Document = new Class({
- Extends: MWF.xApplication.Attendance.Explorer.Document,
- appeal :function(){
- var form = new MWF.xApplication.Attendance.PersonDetail.Appeal( this.explorer, this.data );
- form.create();
- },
- seeAppeal : function(){
- var form = new MWF.xApplication.Attendance.PersonDetail.Appeal( this.explorer, this.data );
- form.open();
- }
- })
- MWF.xApplication.Attendance.PersonDetail.SelfHolidayDocument = new Class({
- Extends: MWF.xApplication.Attendance.Explorer.Document
- })
- MWF.xApplication.Attendance.PersonDetail.DetailStaticDocument = new Class({
- Extends: MWF.xApplication.Attendance.Explorer.Document
- })
- MWF.xApplication.Attendance.PersonDetail.SelfHolidayStaticDocument = new Class({
- Extends: MWF.xApplication.Attendance.Explorer.Document
- })
- MWF.xApplication.Attendance.PersonDetail.Appeal = new Class({
- Extends: MWF.widget.Common,
- initialize: function( explorer, detailData ){
- this.explorer = explorer;
- this.app = explorer.app;
- this.detailData = detailData;
- this.css = this.explorer.css;
- this.load();
- },
- load: function(){
- },
- open: function(e){
- this.isNew = false;
- this.isEdited = false;
- this.app.restActions.getAppeal(this.detailData.id, function(json){
- this.data = json.data;
- this.data.onDutyTime = this.detailData.onDutyTime;
- this.data.offDutyTime = this.detailData.offDutyTime;
- }.bind(this),null,false)
- if(!this.data)this.data = this.detailData || {};
- this._open();
- },
- create: function(){
- this.isNew = true;
- this.data = this.detailData || {};
- this._open();
- },
- edit: function(){
- this.isEdited = true;
- this.app.restActions.getAppeal(this.detailData.id, function(json){
- this.data = json.data;
- this.data.onDutyTime = this.detailData.onDutyTime;
- this.data.offDutyTime = this.detailData.offDutyTime;
- }.bind(this),null,false)
- if(!this.data)this.data = this.detailData || {};
- this._open();
- },
- _open : function(){
- this.createMarkNode = new Element("div", {
- "styles": this.css.createMarkNode,
- "events": {
- "mouseover": function(e){e.stopPropagation();},
- "mouseout": function(e){e.stopPropagation();}
- }
- }).inject(this.app.content, "after");
- this.createAreaNode = new Element("div", {
- "styles": this.css.createAreaNode
- });
- this.createNode();
- this.createAreaNode.inject(this.createMarkNode, "after");
- this.createAreaNode.fade("in");
- this.setCreateNodeSize();
- this.setCreateNodeSizeFun = this.setCreateNodeSize.bind(this);
- this.addEvent("resize", this.setCreateNodeSizeFun);
- },
- createNode: function(){
- var _self = this;
- this.createNode = new Element("div", {
- "styles": this.css.createNode
- }).inject(this.createAreaNode);
- this.createContainerNode = new Element("div", {
- "styles": this.css.createContainerNode
- }).inject(this.createNode);
- this.setScrollBar( this.createContainerNode );
- this.createIconNode = new Element("div", {
- "styles": this.isNew ? this.css.createNewNode : this.css.createIconNode
- }).inject(this.createContainerNode);
- this.createFormNode = new Element("div", {
- "styles": this.css.createFormNode
- }).inject(this.createContainerNode);
- this.createTableContainer = new Element("div", {
- "styles": this.css.createTableContainer
- }).inject(this.createFormNode);
- this.createTableArea = new Element("div", {
- "styles": this.css.createTableArea
- }).inject(this.createTableContainer);
- var d = this.data;
- var status = [];
- if(d.isGetSelfHolidays && d.selfHolidayDayTime == "全天" ) {
- status.push('请假或外出报备')
- }else if( d.isAbnormalDuty && d.abnormalDutyDayTime == "全天" ){
- status.push('异常打卡')
- }else if(d.isLackOfTime ) {
- status.push('工时不足')
- }else{
- if( d.isGetSelfHolidays && d.selfHolidayDayTime == "上午" ){
- status.push("请假或外出报备")
- }else if(d.isLate){
- status.push('迟到')
- }else if(d.isAbsent && (d.absentDayTime == "上午" || d.absentDayTime == "全天" ) ){
- status.push('缺勤')
- }else if( d.isAbnormalDuty && (d.abnormalDutyDayTime == "全天" || d.abnormalDutyDayTime == "上午")){
- status.push('异常打卡')
- }
- if( d.isGetSelfHolidays && d.selfHolidayDayTime == "下午" ){
- status.push("请假或外出报备")
- //}else if(d.isLeaveEarlier){
- // status.push( '早退')
- }else if(d.isAbsent && d.absentDayTime == "下午" ){
- status.push( '缺勤')
- }else if(d.isAbnormalDuty && d.abnormalDutyDayTime == "下午" ){
- status.push('异常打卡')
- }
- }
- this.data.statusShow = status.unique().join();
- var appealStatus = "发起";
- if (d.status == 0 ) {
- appealStatus = "待处理"
- } else if (d.status == 1) {
- appealStatus = "审批通过"
- } else if (d.status == -1) {
- appealStatus = "审批未通过"
- }
- //if (d.appealStatus == 1) {
- // appealStatus = "申诉中"
- //} else if (d.appealStatus == -1) {
- // appealStatus = "申诉未通过"
- //} else if (d.appealStatus == 9) {
- // appealStatus = "申诉通过"
- //}
- this.data.appealStatusShow = appealStatus;
- var html = "<table width='100%' bordr='0' cellpadding='5' cellspacing='0' styles='formTable'>"+
- "<tr><td colspan='4' styles='formTableHead'>申诉申请单</td></tr>" +
- "<tr><td styles='formTableTitle' lable='empName'></td>"+
- " <td styles='formTableValue' item='empName'></td>" +
- " <td styles='formTableTitle' lable='recordDateString'></td>"+
- " <td styles='formTableValue' item='recordDateString'></td></tr>"
- +"<tr><td styles='formTableTitle' lable='onDutyTime'></td>"+
- " <td styles='formTableValue' item='onDutyTime'></td>" +
- " <td styles='formTableTitle' lable='offDutyTime'></td>"+
- " <td styles='formTableValue' item='offDutyTime'></td></tr>" +
- ( this.isNew ?
- "<tr><td styles='formTableTitle' lable='statusShow'></td>"+
- " <td styles='formTableValue' item='statusShow'></td>" +
- " <td styles='formTableTitle' lable='appealStatusShow'></td>"+
- " <td styles='formTableValue' item='appealStatusShow'></td></tr>"
- :
- "<tr><td styles='formTableTitle' lable='appealStatusShow'></td>"+
- " <td styles='formTableValue' item='appealStatusShow' colspan='3'></td></tr>"
- )
- +
- "<tr><td styles='formTableTitle' lable='appealReason'></td>"+
- " <td styles='formTableValue' item='appealReason' colspan='3'></td></tr>" +
- "<tr contain='selfHolidayType'><td styles='formTableTitle' lable='selfHolidayType'></td>"+
- " <td styles='formTableValue' item='selfHolidayType' colspan='3'></td></tr>" +
- "<tr contain='address'><td styles='formTableTitle' lable='address'></td>"+
- " <td styles='formTableValue' item='address' colspan='3'></td></tr>" +
- "<tr contain='startTime'><td styles='formTableTitle' lable='startTime'></td>"+
- " <td styles='formTableValue' item='startTime' colspan='3'></td></tr>" +
- "<tr contain='endTime'><td styles='formTableTitle' lable='endTime'></td>"+
- " <td styles='formTableValue' item='endTime' colspan='3'></td></tr>" +
- "<tr contain='appealDescription'><td styles='formTableTitle' lable='appealDescription'></td>"+
- " <td styles='formTableValue' item='appealDescription' colspan='3'></td></tr>" +
- "</table>"
- this.createTableArea.set("html",html);
- this.document = new MForm( this.createTableArea, this.data, {
- style : "popup",
- isEdited : this.isEdited || this.isNew,
- itemTemplate : {
- empName : { text:"员工姓名", type : "innertext" },
- recordDateString : { text:"考勤日期", type : "innertext"},
- onDutyTime : { text:"上班打卡时间", type : "innertext"},
- offDutyTime : { text:"下班打卡时间", type : "innertext"},
- statusShow : { text:"考勤状态", type : "innertext" },
- appealStatusShow : { text:"审批状态",type : "innertext"},
- appealReason : {
- notEmpty : true,
- text:"申述原因",
- type : "select",
- selectValue : ["","临时请假","出差","因公外出","其他"],
- event : { change : function(mdi){
- _self.switchFieldByAppealReason(mdi.getValue());
- }}
- },
- address : { text:"地点" },
- selfHolidayType : {
- text:"请假类型",
- type : "select",
- selectValue : ["","带薪年休假","带薪病假","带薪福利假","扣薪事假","其他"]
- },
- startTime : { text:"开始日期", tType : "datetime" },
- endTime : { text:"结束日期", tType : "datetime" },
- appealDescription : { text:"事由" }
- }
- }, this.app,this.css);
- this.document.load();
- _self.switchFieldByAppealReason(this.data.appealReason);
- //createFormNode.set("html", html);
- //this.setScrollBar(this.createTableContainer)
- this.cancelActionNode = new Element("div", {
- "styles": this.css.createCancelActionNode,
- "text": this.app.lp.cancel
- }).inject(this.createFormNode);
- this.cancelActionNode.addEvent("click", function(e){
- this.cancelCreate(e);
- }.bind(this));
- if( this.isNew || this.isEdited ){
- this.createOkActionNode = new Element("div", {
- "styles": this.css.createOkActionNode,
- "text": this.app.lp.ok
- }).inject(this.createFormNode);
- this.createOkActionNode.addEvent("click", function(e){
- this.okCreate(e);
- }.bind(this));
- }
- },
- switchFieldByAppealReason : function( ar ){
- var tempField = ["selfHolidayType","startTime","endTime","address","appealDescription"];
- var showField = [];
- if( ar == "临时请假" ){
- showField = ["selfHolidayType","startTime","endTime"];
- }else if( ar == "出差" ){
- showField = ["address","startTime","endTime"];
- }else if( ar == "因公外出" ){
- showField = ["address","startTime","endTime","appealDescription"];
- }else if( ar == "其他" ){
- showField = ["appealDescription"];
- }
- tempField.each( function( f ){
- this.createTableArea.getElement("[contain='"+f+"']").setStyle("display", showField.contains(f) ? "" : "none" );
- if( this.isNew || this.isEdited )this.document.items[f].options.notEmpty = (showField.contains(f) ? true : false )
- }.bind(this))
- },
- setCreateNodeSize: function(){
- var size = this.app.node.getSize();
- var allSize = this.app.content.getSize();
- var height = "550";
- var width = "800";
- this.createAreaNode.setStyles({
- "width": ""+size.x+"px",
- "height": ""+size.y+"px"
- });
- var hY = height;
- var mY = (size.y-height)/2;
- this.createNode.setStyles({
- "height": ""+hY+"px",
- "margin-top": ""+mY+"px",
- "width" : ""+width+"px"
- });
- this.createContainerNode.setStyles({
- "height": ""+hY+"px"
- });
- var iconSize = this.createIconNode ? this.createIconNode.getSize() : {x:0,y:0};
- var formMargin = hY-iconSize.y-20;
- this.createFormNode.setStyles({
- "height": ""+formMargin+"px",
- "margin-top": ""+20+"px"
- });
- },
- cancelCreate: function(e){
- this.createMarkNode.destroy();
- this.createAreaNode.destroy();
- delete this;
- },
- okCreate: function(e){
- var data = this.document.getResult(true,",",true,false,true);
- if (data ) {
- var start = data.startTime;
- var end = data.endTime;
- if (start != "" && end != "") {
- var starTime = new Date(start.replace(/-/g,"/"));
- var endTime = new Date(end.replace(/-/g,"/"));
- if (starTime >= endTime) {
- this.app.notice("开始日期不能晚于结束日期", "error");
- return;
- }
- }
- //获取设置
- var setting = {};
- this.app.restActions.listSetting(function(json){
- json.data.each(function( d ){
- setting[d.configCode] = d;
- }.bind(this))
- }.bind(this),null,false);
- if( setting.APPEAL_AUDITOR_TYPE && setting.APPEAL_AUDITOR_TYPE.configValue!="" && setting.APPEAL_AUDITOR_VALUE && setting.APPEAL_AUDITOR_VALUE.configValue!=""){
- if( setting.APPEAL_AUDITOR_TYPE.configValue == "所属部门职位" ){
- this.getDepartmentByPerson( function( department ){
- this.app.restActions.getDepartmentDuty( setting.APPEAL_AUDITOR_VALUE.configValue, department.name, function( json ){
- var flag = false;
- if (json.data) {
- var list = json.data.identityList;
- if (list && list.length > 0 && list[0] != "") {
- flag = true;
- this._ok( list[0], data )
- }
- }
- if (!flag) {
- this.app.notice("系统中没有配置"+department.name+"的"+setting.APPEAL_AUDITOR_VALUE.configValue+"职位,请联系管理员", "error");
- }
- }.bind(this) )
- }.bind(this) )
- }else if( setting.APPEAL_AUDITOR_TYPE.configValue == "人员属性" ){
- this.app.restActions.getPersonAttribute(setting.APPEAL_AUDITOR_VALUE.configValue, layout.desktop.session.user.name, function (json) {
- var flag = false;
- if (json.data) {
- var list = json.data.attributeList;
- if (list && list.length > 0 && list[0] != "") {
- flag = true;
- this._ok( list[0], data )
- }
- }
- if (!flag) {
- this.app.notice("系统中还没有配置您的"+setting.APPEAL_AUDITOR_VALUE.configValue+",请联系管理员", "error");
- }
- }.bind(this))
- }else if( setting.APPEAL_AUDITOR_TYPE.configValue == "指定人" ){
- this._ok( setting.APPEAL_AUDITOR_VALUE.configValue, data, true )
- }
- }else{
- this.app.restActions.getPersonAttribute("直接主管", layout.desktop.session.user.name, function (json) {
- var flag = false;
- if (json.data) {
- var list = json.data.attributeList;
- if (list && list.length > 0 && list[0] != "") {
- flag = true;
- this._ok( list[0], data )
- }
- }
- if (!flag) {
- this.app.notice("系统中还没有配置您的直接主管,请联系管理员", "error");
- }
- }.bind(this))
- }
- }
- //}else{
- // this.app.notice( "请填写申诉原因和具体描述", "error");
- //}
- },
- _ok: function( identity, data, isName ){
- if( isName ){
- data.processPerson1 = identity;
- this.app.restActions.createAppeal(this.data.id, data, function (json) {
- if (json.type == "ERROR") {
- this.app.notice(json.message, "error");
- } else {
- this.createMarkNode.destroy();
- this.createAreaNode.destroy();
- if (this.explorer.view)this.explorer.view.reload();
- this.app.notice("申诉已提交至" + data.processPerson1, "success");
- }
- }.bind(this));
- }else{
- this.app.restActions.getPersonByIdentity( identity, function (js) {
- data.processPerson1 = js.data.name;
- this.app.restActions.createAppeal(this.data.id, data, function (json) {
- if (json.type == "ERROR") {
- this.app.notice(json.message, "error");
- } else {
- this.createMarkNode.destroy();
- this.createAreaNode.destroy();
- if (this.explorer.view)this.explorer.view.reload();
- this.app.notice("申诉已提交至" + data.processPerson1, "success");
- }
- }.bind(this));
- }.bind(this))
- }
- },
- selectDateTime : function( el, timeOnly, isTme, baseDate ){
- var opt = {
- "style": "xform",
- "timeOnly": timeOnly,
- "isTime": isTme,
- "target": this.app.content
- }
- if( baseDate )opt.baseDate = baseDate;
- MWF.require("MWF.widget.Calendar", function(){
- var calendar = new MWF.widget.Calendar( el, opt );
- calendar.show();
- }.bind(this));
- },
- //getProcessPerson : function( callback ){
- // this.getDepartmentByPerson( function( departmentData ){
- // this.app.restActions.listPermission( function(json){
- // if( json.data.length == 0 ){
- // this.app.notice( "系统未配置考勤员,请联系管理员!", "error");
- // return;
- // }
- // var departmentManager, companyManager, processer;
- // json.data.each( function( d ){
- // if( d.organizationName == departmentData.name ){
- // departmentManager = d.adminName;
- // }
- // if(d.organizationName == departmentData.company ){
- // companyManager = d.adminName;
- // }
- // })
- // processer = departmentManager || companyManager;
- // if( !processer ){
- // this.app.notice( "未设置您所在部门和公司的考勤管理员,请联系系统管理员!", "error");
- // }else{
- // if(callback)callback(processer)
- // }
- // }.bind(this))
- // }.bind(this));
- //},
- getDepartmentByPerson : function( callback ){
- this.app.restActions.listDepartmentByPerson( function( json ){
- if( json.data.length > 0 ){
- if(callback)callback( json.data[0] );
- }else{
- this.app.notice( "未找到您所在的部门,请联系管理员!", "error");
- }
- }.bind(this), function(){
- this.app.notice( "未找到您所在的部门,请联系管理员!", "error");
- }, layout.desktop.session.user.name, false )
- }
- })
|