123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487 |
- MWF.xDesktop.requireApp("Attendance", "Explorer", null, false);
- MWF.xDesktop.requireApp("Selector", "package", null, false);
- MWF.xApplication.Attendance.PeopleDingdingDetail = 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.personSigninDetail, 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.PeopleDingdingDetail.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.detailStaticPage = this.tabs.addTab(this.detailStaticArea, this.app.lp.personSigninStatic, 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.PeopleDingdingDetail.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.tabs.pages[0].showTab();
- }.bind(this));
- }
- });
- MWF.xApplication.Attendance.PeopleDingdingDetail.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 = "<table width='100%' bordr='0' cellpadding='5' cellspacing='0' styles='filterTable' style='width: 1000px;'>" +
- "<tr>" +
- " <td styles='filterTableValue' lable='person'></td>" +
- " <td styles='filterTableTitle' item='person'></td>" +
- " <td styles='filterTableTitle' lable='year'></td>" +
- " <td styles='filterTableValue' item='year'></td>" +
- " <td styles='filterTableTitle' lable='month'></td>" +
- " <td styles='filterTableValue' item='month'></td>" +
- " <td styles='filterTableTitle' lable='day'></td>" +
- " <td styles='filterTableValue' item='day'></td>" +
- " <td styles='filterTableTitle' lable='checkType'></td>" +
- " <td styles='filterTableValue' item='checkType'></td>" +
- " <td styles='filterTableTitle' lable='timeResult'></td>" +
- " <td styles='filterTableValue' item='timeResult'></td>" +
- " <td styles='filterTableValue' item='action'></td>" +
- "</tr>" +
- "</table>";
- 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: {
- person: empSelector,
- year: {
- 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("day").resetItemOptions(values, values)
- }.bind(this)
- }
- },
- month: {
- 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("day").resetItemOptions(values, values)
- }.bind(this)
- }
- },
- day: { text: lp.date, "type": "select", "selectValue": this.getDateSelectValue.bind(this) },
- checkType: { text: lp.signinType, "type": "select", "selectValue": ["", "OnDuty", "OffDuty"], "selectText": lp.signinTypeSelectText },
- timeResult: { text: lp.signinResult, "type": "select", "selectValue": ["", "Normal", "Early", "Late", "SeriousLate", "Absenteeism", "NotSigned"], "selectText": lp.signinResultSelectText },
- 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 (result.day && result.day != "") {
- result.q_date = result.year + "-" + result.month + "-" + result.day;
- }
- this.loadView(result);
- }.bind(this)
- }
- }
- }
- }, this.app, this.app.css);
- this.form.load();
- }.bind(this), true);
- },
- getDateSelectValue: function () {
- if (this.form) {
- var year = parseInt(this.form.getItem("year").getValue());
- var month = parseInt(this.form.getItem("month").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;
- },
- 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.PeopleDingdingDetail.View(this.elementContentNode, this.app, this);
- this.view.filterData = filterData;
- this.view.listItemUrl = this.path + "listItem_dingding.json";
- 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.pageCount) {
- this.view.loadElementList(this.pageCount - this.view.items.length);
- }
- }
- });
- MWF.xApplication.Attendance.PeopleDingdingDetail.SelfHoliday = new Class({
- Extends: MWF.xApplication.Attendance.PeopleDingdingDetail.Explorer,
- loadView: function (filterData) {
- this.elementContentNode.empty();
- if (this.view) delete this.view;
- this.view = new MWF.xApplication.Attendance.PeopleDingdingDetail.SelfHolidayView(this.elementContentNode, this.app, this);
- this.view.filterData = filterData;
- this.view.load();
- this.setContentSize();
- }
- });
- MWF.xApplication.Attendance.PeopleDingdingDetail.DetailStaticExplorer = new Class({
- Extends: MWF.xApplication.Attendance.PeopleDingdingDetail.Explorer,
- loadFilter: function () {
- var lp = MWF.xApplication.Attendance.LP;
- this.fileterNode = new Element("div.fileterNode", {
- "styles": this.app.css.fileterNode
- }).inject(this.node);
- var html = "<table width='100%' bordr='0' cellpadding='5' cellspacing='0' style='width: 560px;font-size: 14px;color:#666'>" +
- "<tr>" +
- " <td styles='filterTableValue' lable='q_empName'></td>" +
- " <td styles='filterTableTitle' item='q_empName'></td>" +
- " <td styles='filterTableTitle' lable='cycleYear'></td>" +
- " <td styles='filterTableValue' item='cycleYear'></td>" +
- " <td styles='filterTableTitle' lable='cycleMonth'></td>" +
- " <td styles='filterTableValue' item='cycleMonth'></td>" +
- " <td styles='filterTableValue' item='action'></td>" +
- "</tr>" +
- "</table>";
- 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)
- }
- }
- }
- }, this.app, this.app.css);
- this.form.load();
- }.bind(this), true);
- },
- loadView: function (filterData) {
- this.elementContentNode.empty();
- if (this.view) delete this.view;
- this.view = new MWF.xApplication.Attendance.PeopleDingdingDetail.DetailStaticView(this.elementContentNode, this.app, this);
- this.view.filterData = filterData;
- this.view.listItemUrl = this.path + "listItem_dingding_detailStatic.json";
- this.view.load();
- this.setContentSize();
- }
- });
- MWF.xApplication.Attendance.PeopleDingdingDetail.SelfHolidayStaticExplorer = new Class({
- Extends: MWF.xApplication.Attendance.PeopleDingdingDetail.Explorer,
- loadView: function (filterData) {
- this.elementContentNode.empty();
- if (this.view) delete this.view;
- this.view = new MWF.xApplication.Attendance.PeopleDingdingDetail.SelfHolidayStaticView(this.elementContentNode, this.app, this);
- this.view.filterData = filterData;
- this.view.load();
- this.setContentSize();
- }
- });
- MWF.xApplication.Attendance.PeopleDingdingDetail.View = new Class({
- Extends: MWF.xApplication.Attendance.Explorer.View,
- _createItem: function (data) {
- return new MWF.xApplication.Attendance.PeopleDingdingDetail.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 || {};
- var action = o2.Actions.load("x_attendance_assemble_control");
- action.DingdingAttendanceAction.listNextDingdingAttendance(id, count, filter, function (json) {
- if (callback) callback(json);
- }.bind(this));
- },
- _removeDocument: function (documentData, all) {
- },
- _createDocument: function () {
- },
- _openDocument: function (documentData) {
- }
- });
- MWF.xApplication.Attendance.PeopleDingdingDetail.SelfHolidayView = new Class({
- Extends: MWF.xApplication.Attendance.Explorer.View,
- _createItem: function (data) {
- return new MWF.xApplication.Attendance.PeopleDingdingDetail.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.PeopleDingdingDetail.DetailStaticView = new Class({
- Extends: MWF.xApplication.Attendance.Explorer.View,
- _createItem: function (data) {
- return new MWF.xApplication.Attendance.PeopleDingdingDetail.DetailStaticDocument(this.table, data, this.explorer, this);
- },
- _getCurrentPageData: function (callback, count) {
- var filter = this.filterData || {};
- var action = o2.Actions.load("x_attendance_assemble_control");
- action.DingdingAttendanceStatisticAction.personMonth(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.PeopleDingdingDetail.SelfHolidayStaticView = new Class({
- Extends: MWF.xApplication.Attendance.Explorer.View,
- _createItem: function (data) {
- return new MWF.xApplication.Attendance.PeopleDingdingDetail.SelfHolidayStaticDocument(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.PeopleDingdingDetail.Document = new Class({
- Extends: MWF.xApplication.Attendance.Explorer.Document
- });
- MWF.xApplication.Attendance.PeopleDingdingDetail.SelfHolidayDocument = new Class({
- Extends: MWF.xApplication.Attendance.Explorer.Document
- });
- MWF.xApplication.Attendance.PeopleDingdingDetail.DetailStaticDocument = new Class({
- Extends: MWF.xApplication.Attendance.Explorer.Document
- });
- MWF.xApplication.Attendance.PeopleDingdingDetail.SelfHolidayStaticDocument = new Class({
- Extends: MWF.xApplication.Attendance.Explorer.Document
- });
|