MWF.xDesktop.requireApp("Attendance", "Explorer", null, false);
MWF.xDesktop.requireApp("Selector", "package", null, false);
MWF.xApplication.Attendance.PeopleDetail = 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/$PeopleDetail/";
this.cssPath = "/x_component_Attendance/$PeopleDetail/"+this.options.style+"/css.wcss";
this._loadCss();
this.actions = actions;
this.node = $(node);
},
load: function(){
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, this.app.lp.personAttendanceDetail, false);
this.detailPage.contentNodeArea.set("class","detailPage");
this.detailPage.addEvent("show",function(){
this.detailPage.tabNode.addClass( "mainColor_border" );
this.detailPage.textNode.addClass( "mainColor_color" );
if( !this.detailExplorer ){
this.detailExplorer = new MWF.xApplication.Attendance.PeopleDetail.Explorer( this.detailArea, this );
this.detailExplorer.load();
}
}.bind(this)).addEvent("hide", function(){
this.detailPage.tabNode.removeClass( "mainColor_border" );
this.detailPage.textNode.removeClass( "mainColor_color" );
}.bind(this));
//this.selfHolidayPage = this.tabs.addTab(this.selfHolidayArea, "个人休假明细", false);
//this.selfHolidayPage.contentNodeArea.set("class","selfHolidayPage");
//this.selfHolidayPage.addEvent("show",function(){
// if( !this.selfHoliday ){
// this.selfHoliday = new MWF.xApplication.Attendance.PeopleDetail.SelfHoliday( this.selfHolidayArea, this );
// this.selfHoliday.load();
// }
//}.bind(this))
this.detailStaticPage = this.tabs.addTab(this.detailStaticArea, this.app.lp.personAttendanceStatic, false);
this.detailStaticPage.contentNodeArea.set("class","detailStaticPage");
this.detailStaticPage.addEvent("show",function(){
this.detailStaticPage.tabNode.addClass( "mainColor_border" );
this.detailStaticPage.textNode.addClass( "mainColor_color" );
if( !this.detailStaticExplorer ){
this.detailStaticExplorer = new MWF.xApplication.Attendance.PeopleDetail.DetailStaticExplorer( this.detailStaticArea, this );
this.detailStaticExplorer.load();
}
}.bind(this)).addEvent("hide", function(){
this.detailStaticPage.tabNode.removeClass( "mainColor_border" );
this.detailStaticPage.textNode.removeClass( "mainColor_color" );
}.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.PeopleDetail.SelfHolidayStaticExplorer( this.selfHolidayStaticArea, this );
// this.selfHolidayStaticExplorer.load();
// }
//}.bind(this))
this.tabs.pages[0].showTab();
}.bind(this));
}
});
MWF.xApplication.Attendance.PeopleDetail.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.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.loadFilter();
this.loadContentNode();
this.loadView({}, true);
this.setNodeScroll();
},
loadFilter: function(){
var lp = MWF.xApplication.Attendance.LP;
this.fileterNode = new Element("div.fileterNode", {
"styles" : this.app.css.fileterNode
}).inject(this.node);
var html = "
"+
"" +
" | "+
" | "+
" | "+
" | " +
" | "+
" | " +
" | "+
" | " +
" | "+
" | " +
" | "+
" | " +
" | "+
" | " +
" | " +
" | " +
"
" +
"
";
this.fileterNode.set("html",html);
MWF.xDesktop.requireApp("Template", "MForm", function(){
var empSelector = { text : lp.person, type : "org", orgType : "person", notEmpty : true, style : {"min-width": "100px" } };
if( !this.app.isAdmin() && this.app.manageUnits ){
empSelector = { text : lp.person, type : "org", orgType : "identity", "units": this.app.manageUnits, orgOptions: {
"resultType": "person",
} , notEmpty : true, style : {"min-width": "100px" } };
}
this.form = new MForm( this.fileterNode, {}, {
style: "attendance",
isEdited : true,
itemTemplate : {
q_empName : empSelector,
cycleYear : {
text : lp.annuaal,
"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( item, ev ){
var values = this.getDateSelectValue();
item.form.getItem( "date").resetItemOptions( values , values )
}.bind(this)
}
},
cycleMonth : {
text : lp.months,
"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( item, ev ){
var values = this.getDateSelectValue();
item.form.getItem( "date").resetItemOptions( values , values )
}.bind(this)
}
},
date : { text : lp.date, "type" : "select", "selectValue" : this.getDateSelectValue.bind(this) },
isAbsent : { text: lp.absent, "type" : "select", "selectValue" : ["","true","false"], "selectText" : lp.absendSelectText },
isLate : { text: lp.late, "type" : "select", "selectValue" : ["","true","false"], "selectText" : lp.lateSelectText },
isLackOfTime : { text: lp.lackOfTime, "type" : "select", "selectValue" : ["","true","false"], "selectText" : lp.truefalseSelectText },
action : { "value" : lp.query, type : "button", className : "filterButton", clazz: "mainColor_bg", event : {
click : function(){
var result = this.form.getResult(true,",",true,true,false);
if( !result )return;
if( typeOf( result.isAbsent ) == "string" )result.isAbsent = this.getBoolean( result.isAbsent );
if( typeOf( result.isLate ) == "string" )result.isLate = this.getBoolean( result.isLate );
if( typeOf( result.isLackOfTime ) == "string" )result.isLackOfTime = this.getBoolean( result.isLackOfTime );
if( result.date && result.date !="" ){
result.q_date = result.cycleYear + "-" + result.cycleMonth + "-" + result.date;
}
this.loadView( result );
}.bind(this)
}},
export : { "value" : lp.export, type : "button", className : "filterButton", clazz:"mainColor_bg", event : {
click : function(){
var result = this.form.getResult(true,",",true,true,false);
if( !result )return;
debugger;
if( !result.q_topUnitName )result.q_topUnitName = "0";
if( !result.q_unitName)result.q_unitName = "0";
if( !result.q_empName)result.q_empName = "0";
if( !result.cycleYear )result.cycleYear = "0";
if( !result.cycleMonth )result.cycleMonth = "0";
if( result.date && result.date !="" ){
result.q_date = result.cycleYear + "-" + result.cycleMonth + "-" + result.date;
}else{
result.q_date ="0";
}
//111
if( !result.isAbsent )result.isAbsent = "0";
if( !result.isLackOfTime )result.isLackOfTime = "0";
if( !result.isLate )result.isLate = "0";
debugger;
this.actions.detailsExportStream(result.q_topUnitName,result.q_unitName,result.q_empName,result.cycleYear,result.cycleMonth,result.q_date,result.isAbsent,result.isLackOfTime,result.isLate,true);
}.bind(this)
}}
}
}, this.app, this.app.css);
this.form.load();
}.bind(this), true);
},
getDateSelectValue : function(){
if( this.form ){
var year = parseInt(this.form.getItem("cycleYear").getValue());
var month = parseInt(this.form.getItem("cycleMonth").getValue())-1;
}else{
var year = (new Date()).getFullYear() ;
var month = (new Date()).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;
},
//loadFilter2 : 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","1000px");
// var tr = new Element("tr").inject(table);
//
// this.createPersonTd( 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 )
//},
//createPersonTd : 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.q_empName = new MDomItem( td, {
// "name" : "q_empName",
// "event" : {
// "click" : function(el){ _self.selecePerson(); }
// }
// }, true, this.app );
// this.q_empName.load();
//},
//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 = parseInt(_self.cycleYear.getValue());
// var month = parseInt(_self.cycleMonth.getValue())-1;
// 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();
//},
//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(){
// if( this.q_empName.getValue().trim() == "" ){
// this.app.notice( "请先选择员工", "error" );
// return;
// }
// var filterData = {
// q_empName : this.q_empName.getValue(),
// cycleYear : this.cycleYear.getValue(),
// cycleMonth : this.cycleMonth.getValue()
// }
// 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 = this.cycleYear.getValue() + "-" + this.cycleMonth.getValue() + "-" + 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)
// };
// if( !this.app.isAdmin() && this.app.isUnitManager() ){
// options.units = this.app.manageUnits;
// }
// var selector = new MWF.O2Selector(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));
this.elementContentNode.addEvent("scroll", function () {
var scroll = this.elementContentNode.getScroll();
if(this.fileterNode)this.fileterNode.scrollTo(scroll.x);
}.bind(this));
},
loadView : function( filterData, onlyShowTitle ){
this.elementContentNode.empty();
if( this.view )delete this.view;
this.view = new MWF.xApplication.Attendance.PeopleDetail.View(this.elementContentNode, this.app,this );
this.view.filterData = filterData;
this.view.load( onlyShowTitle );
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.fileterNode.set("html",html);
MWF.xDesktop.requireApp("Template", "MForm", function(){
var empSelector = { text : lp.person, type : "org", orgType : "person", notEmpty : true, style : {"min-width": "100px" } };
if( !this.app.isAdmin() && this.app.manageUnits ){
empSelector = { text : lp.person, type : "org", orgType : "identity", "units": this.app.manageUnits, orgOptions: {
"resultType": "person",
} , notEmpty : true, style : {"min-width": "100px" } };
}
this.form = new MForm( this.fileterNode, {}, {
style: "attendance",
isEdited : true,
itemTemplate : {
q_empName : empSelector,
cycleYear : {
text : lp.annuaal,
"type" : "select",
"selectValue" : function(){
var years = [];
var year = new Date().getFullYear();
for(var i=0; i<6; i++ ){
years.push( year-- );
}
return years;
}
},
cycleMonth : {
text : lp.months,
"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"]
},
action : { "value" : lp.query, type : "button", className : "filterButton", clazz:"mainColor_bg", event : {
click : function(){
var result = this.form.getResult(true,",",true,true,false);
if( !result )return;
this.loadView( result );
}.bind(this)
}},
export : { "value" : lp.export, type : "button", className : "filterButton", clazz:"mainColor_bg", event : {
click : function(){
var result = this.form.getResult(true,",",true,true,false);
if( !result )return;
debugger;
this.actions.exportPersonStatisticAttachment(result.q_empName,result.cycleYear,result.cycleMonth,true);
}.bind(this)
}}
}
}, this.app, this.app.css);
this.form.load();
}.bind(this), true);
},
//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","460px");
// var tr = new Element("tr").inject(table);
//
// this.createPersonTd(tr)
// this.createYearSelectTd( tr )
// this.createMonthSelectTd( 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(){
// if( this.q_empName.getValue().trim() == "" ){
// this.app.notice( "请先选择员工", "error" );
// return;
// }
// var filterData = {
// q_empName : this.q_empName.getValue(),
// cycleYear : this.cycleYear.getValue(),
// cycleMonth : this.cycleMonth.getValue()
// }
// 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 = this.cycleYear.getValue() + "-" + this.cycleMonth.getValue() + "-" + 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.PeopleDetail.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.PeopleDetail.SelfHolidayStaticExplorer = new Class({
Extends: MWF.xApplication.Attendance.PeopleDetail.Explorer,
loadView : function( filterData ){
this.elementContentNode.empty();
if( this.view )delete this.view;
this.view = new MWF.xApplication.Attendance.PeopleDetail.SelfHolidayStaticView(this.elementContentNode, this.app,this );
this.view.filterData = filterData;
this.view.load();
this.setContentSize();
}
});
MWF.xApplication.Attendance.PeopleDetail.View = new Class({
Extends: MWF.xApplication.Attendance.Explorer.View,
_createItem: function(data){
return new MWF.xApplication.Attendance.PeopleDetail.Document(this.table, data, this.explorer, this);
},
_getCurrentPageData: function(callback, count){
if(!count)count=20;
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 || "";
this.actions.listDetailFilterNext( id, count, filter, function(json){
if( callback )callback(json);
}.bind(this));
//this.actions.listDetailFilter( filter, function(json){
// if( callback )callback(json);
//}.bind(this))
},
_removeDocument: function(documentData, all){
},
_createDocument: function(){
},
_openDocument: function( documentData ){
}
});
MWF.xApplication.Attendance.PeopleDetail.SelfHolidayView = new Class({
Extends: MWF.xApplication.Attendance.Explorer.View,
_createItem: function(data){
return new MWF.xApplication.Attendance.PeopleDetail.SelfHolidayDocument(this.table, data, this.explorer, this);
},
_getCurrentPageData: function(callback, count){
var filter = this.filterData || {};
this.actions.listDetailFilter( filter, function(json){
if( callback )callback(json);
}.bind(this))
},
_removeDocument: function(documentData, all){
},
_createDocument: function(){
},
_openDocument: function( documentData ){
}
});
MWF.xApplication.Attendance.PeopleDetail.DetailStaticView = new Class({
Extends: MWF.xApplication.Attendance.Explorer.View,
_createItem: function(data){
return new MWF.xApplication.Attendance.PeopleDetail.DetailStaticDocument(this.table, data, this.explorer, this);
},
_getCurrentPageData: function(callback, count){
var filter = this.filterData || {};
if( filter.cycleMonth == "" )filter.cycleMonth="(0)";
this.actions.listStaticMonthPerson( filter.q_empName, filter.cycleYear,filter.cycleMonth, function(json){
var data = json.data;
data.sort( function( a, b ){
return parseInt( b.statisticYear + b.statisticMonth ) - parseInt( a.statisticYear + a.statisticMonth )
});
json.data = data;
if( callback )callback(json);
}.bind(this))
},
_removeDocument: function(documentData, all){
},
_createDocument: function(){
},
_openDocument: function( documentData ){
}
});
MWF.xApplication.Attendance.PeopleDetail.SelfHolidayStaticView = new Class({
Extends: MWF.xApplication.Attendance.Explorer.View,
_createItem: function(data){
return new MWF.xApplication.Attendance.PeopleDetail.SelfHolidayStaticDocument(this.table, data, this.explorer, this);
},
_getCurrentPageData: function(callback, count){
var filter = this.filterData || {};
this.actions.listPeopleDetailFilter( filter, function(json){
if( callback )callback(json);
}.bind(this))
},
_removeDocument: function(documentData, all){
},
_createDocument: function(){
},
_openDocument: function( documentData ){
}
});
MWF.xApplication.Attendance.PeopleDetail.Document = new Class({
Extends: MWF.xApplication.Attendance.Explorer.Document
});
MWF.xApplication.Attendance.PeopleDetail.SelfHolidayDocument = new Class({
Extends: MWF.xApplication.Attendance.Explorer.Document
});
MWF.xApplication.Attendance.PeopleDetail.DetailStaticDocument = new Class({
Extends: MWF.xApplication.Attendance.Explorer.Document
});
MWF.xApplication.Attendance.PeopleDetail.SelfHolidayStaticDocument = new Class({
Extends: MWF.xApplication.Attendance.Explorer.Document
});