123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207 |
- 'use strict';
- app.config(['calendarConfigProvider', function(calendarConfigProvider) {
- calendarConfigProvider.setDateFormatter('moment'); // use moment to format dates
- calendarConfigProvider.setTitleFormats({
- day: 'dddd MMMM DD, YYYY',
- week: '{year}年{week}周',
- month: 'MMMM YYYY',
- year: 'YYYY'
- //day: 'ddd D MMM' //this will configure the day view title to be shorter
- });
- calendarConfigProvider.setI18nStrings({
- eventsLabel: '描述', //This will set the events label on the day view
- timeLabel: '时间', //This will set the time label on the time view
- weekNumber: '{week}周'
- });
- }]);
- app.controller("calendarCtrl", function($scope, $filter, $q, $timeout, $log, MaterialCalendarData,SweetAlert,api_bpm_data) {
- $scope.calendarView="month";
- $scope.msg={}
- $scope.msg['year']=new Date().getFullYear();
- $scope.msg['month']=new Date().getMonth()+1;
- var workdays=$scope.msg
- $scope.selected=[]
- var weekdate={"workDayconfigure":{"year":workdays.year,"state":1},"idx":0,"sum":1000}
- api_bpm_data.fetchDataList('workDayconfigure',weekdate).then(function(response){
- var myData = response.list[0];
- myData.monday==1 ? $scope.options.selected[0]=workdays.year+'-1':$scope.options.selected[0]='';
- myData.tuesday==1 ? $scope.options.selected[1]=workdays.year+'-2':$scope.options.selected.splice(1,1);
- myData.wednesday==1 ? $scope.options.selected[2]=workdays.year+'-3':$scope.options.selected.splice(2,1);
- myData.thursday==1 ? $scope.options.selected[3]=workdays.year+'-4':$scope.options.selected.splice(3,1);
- myData.friday==1 ? $scope.options.selected[4]=workdays.year+'-5':$scope.options.selected.splice(4,1);
- myData.saturday==1 ? $scope.options.selected[5]=workdays.year+'-6':$scope.options.selected.splice(5,1);
- myData.sunday==1 ? $scope.options.selected[6]=workdays.year+'-7':$scope.options.selected.splice(6,1);
- // console.log($scope.options.selected)
- })
- $scope.options = {
- reset: true,
- onChange: function(selected) {
- // console.log(selected)
- $scope.options.selected=selected;
- },
- selected: []
- };
-
- $scope.saveweek=function(selected){
- var numget=['2','2','2','2','2','2','2'];
- var longtime='';
- var j=''
- var w=''
- var timeget=''
- for(var i=0;i<selected.length;i++){
- j =selected[i].substr(selected[i].length-1,1)
- j=Number(j)
- numget[j]='1'
- }
- angular.forEach(numget,function(item){
- w+=item
- })
- timeget=workdays.year+'-'+w
- var weekdata={
- "workDayconfigure": {
- "rule": timeget
- }
- }
- api_bpm_data.addData('workDayconfigure',weekdata).then(function(response){
- if(response.status==200){
- SweetAlert.swal({
- title: "修改成功!",
- text: "修改排班成功!",
- type: "success"
- }, function(){
- $scope.refreshData(workdays);
- });
- }else{
- SweetAlert.swal({
- title: "修改失败!",
- text: "修改排班失败!",
- type: "error"
- });
- }
- })
- }
- $scope.selectedDate = [];
- $scope.weekStartsOn = 0;
- $scope.dayFormat = "d";
- $scope.tooltips = true;
- $scope.disableFutureDates = true;
- $scope.refreshData=function(workdays){
- var monedata= {
- "idx": 0,
- "sum": 31,
- "workday": {
- "year": workdays.year,
- "month": workdays.month
- }
- }
- api_bpm_data.fetchDataList('workday',monedata).then(function(response){
- var myData = response.list;
- $scope.selectedDate = [];
- angular.forEach(myData,function(item){
- if(item.isWork==true){
- $scope.selectedDate.push(moment(item.date).toDate());
- }
- })
- })
- }
- $scope.refreshData(workdays);
- $scope.setDirection = function(direction) {
- $scope.direction = direction;
- $scope.dayFormat = direction === "vertical" ? "EEEE, MMMM d" : "d";
- };
- var ischeck='';
- $scope.dayClick = function(date) {
- for(var i=0;i<$scope.selectedDate.length;i++){
- if(angular.equals(date, $scope.selectedDate[i])==true){
- ischeck =false
- break
- }else{ischeck =true}
- }
- var ymd=[date.getFullYear(), date.getMonth() + 1, date.getDate()].join("-");
- var monedata=
- {
- "workdayexception": {
- "date": ymd,
- "isWork": ischeck
- }
- }
- api_bpm_data.addData('workdayexception',monedata).then(function(response){
- if(response.status==200){
- SweetAlert.swal({
- title: "修改成功!",
- text: "修改排班成功!",
- type: "success"
- }, function(){
- $scope.refreshData(workdays);
- });
- }else{
- SweetAlert.swal({
- title: "修改失败!",
- text: "修改排班失败!",
- type: "error"
- });
- }
-
- })
-
-
- };
- $scope.prevMonth = function(data) {
- $scope.refreshData(data);
- };
- $scope.nextMonth = function(data) {
- $scope.refreshData(data);
- };
- $scope.setContentViaService = function() {
- var today = new Date();
- MaterialCalendarData.setDayContent(today, '<span> :oD </span>')
- }
- // var holidays = {"2015-01-01":[{"name":"Last Day of Kwanzaa","country":"US","date":"2015-01-01"},{"name":"New Year's Day","country":"US","date":"2015-01-01"}],"2015-01-06":[{"name":"Epiphany","country":"US","date":"2015-01-06"}],"2015-01-07":[{"name":"Orthodox Christmas","country":"US","date":"2015-01-07"}],"2015-01-19":[{"name":"Martin Luther King, Jr. Day","country":"US","date":"2015-01-19"}],"2015-02-02":[{"name":"Groundhog Day","country":"US","date":"2015-02-02"}],"2015-02-14":[{"name":"Valentine's Day","country":"US","date":"2015-02-14"}],"2015-02-16":[{"name":"Washington's Birthday","country":"US","date":"2015-02-16"}],"2015-02-18":[{"name":"Ash Wednesday","country":"US","date":"2015-02-18"}],"2015-03-08":[{"name":"International Women's Day","country":"US","date":"2015-03-08"}],"2015-03-17":[{"name":"Saint Patrick's Day","country":"US","date":"2015-03-17"}],"2015-03-29":[{"name":"Palm Sunday","country":"US","date":"2015-03-29"}],"2015-04-01":[{"name":"April Fools' Day","country":"US","date":"2015-04-01"}],"2015-04-03":[{"name":"Good Friday","country":"US","date":"2015-04-03"}],"2015-04-05":[{"name":"Easter","country":"US","date":"2015-04-05"}],"2015-04-22":[{"name":"Earth Day","country":"US","date":"2015-04-22"}],"2015-04-24":[{"name":"Arbor Day","country":"US","date":"2015-04-24"}],"2015-05-01":[{"name":"May Day","country":"US","date":"2015-05-01"}],"2015-05-04":[{"name":"Star Wars Day","country":"US","date":"2015-05-04"}],"2015-05-05":[{"name":"Cinco de Mayo","country":"US","date":"2015-05-05"}],"2015-05-10":[{"name":"Mother's Day","country":"US","date":"2015-05-10"}],"2015-05-25":[{"name":"Memorial Day","country":"US","date":"2015-05-25"}],"2015-06-14":[{"name":"Flag Day","country":"US","date":"2015-06-14"}],"2015-06-21":[{"name":"Father's Day","country":"US","date":"2015-06-21"}],"2015-06-27":[{"name":"Helen Keller Day","country":"US","date":"2015-06-27"}],"2015-07-04":[{"name":"Independence Day","country":"US","date":"2015-07-04"}],"2015-08-26":[{"name":"Women's Equality Day","country":"US","date":"2015-08-26"}],"2015-09-07":[{"name":"Labor Day","country":"US","date":"2015-09-07"}],"2015-09-11":[{"name":"Patriot Day","country":"US","date":"2015-09-11"}],"2015-09-13":[{"name":"Grandparent's Day","country":"US","date":"2015-09-13"}],"2015-09-17":[{"name":"Constitution Day","country":"US","date":"2015-09-17"}],"2015-10-06":[{"name":"German-American Day","country":"US","date":"2015-10-06"}],"2015-10-09":[{"name":"Leif Erkson Day","country":"US","date":"2015-10-09"}],"2015-10-12":[{"name":"Columbus Day","country":"US","date":"2015-10-12"}],"2015-10-31":[{"name":"Halloween","country":"US","date":"2015-10-31"}],"2015-11-03":[{"name":"Election Day","country":"US","date":"2015-11-03"}],"2015-11-11":[{"name":"Veterans Day","country":"US","date":"2015-11-11"}],"2015-11-26":[{"name":"Thanksgiving Day","country":"US","date":"2015-11-26"}],"2015-11-27":[{"name":"Black Friday","country":"US","date":"2015-11-27"}],"2015-12-07":[{"name":"Pearl Harbor Remembrance Day","country":"US","date":"2015-12-07"}],"2015-12-08":[{"name":"Immaculate Conception of the Virgin Mary","country":"US","date":"2015-12-08"}],"2015-12-24":[{"name":"Christmas Eve","country":"US","date":"2015-12-24"}],"2015-12-25":[{"name":"Christmas","country":"US","date":"2015-12-25"}],"2015-12-26":[{"name":"First Day of Kwanzaa","country":"US","date":"2015-12-26"}],"2015-12-27":[{"name":"Second Day of Kwanzaa","country":"US","date":"2015-12-27"}],"2015-12-28":[{"name":"Third Day of Kwanzaa","country":"US","date":"2015-12-28"}],"2015-12-29":[{"name":"Fourth Day of Kwanzaa","country":"US","date":"2015-12-29"}],"2015-12-30":[{"name":"Fifth Day of Kwanzaa","country":"US","date":"2015-12-30"}],"2015-12-31":[{"name":"New Year's Eve","country":"US","date":"2015-12-31"},{"name":"Sixth Day of Kwanzaa","country":"US","date":"2015-12-31"}],"2016-01-01":[{"name":"Last Day of Kwanzaa","country":"US","date":"2016-01-01"},{"name":"New Year's Day","country":"US","date":"2016-01-01"}],"2016-01-06":[{"name":"Epiphany","country":"US","date":"2016-01-06"}],"2016-01-07":[{"name":"Orthodox Christmas","country":"US","date":"2016-01-07"}],"2016-01-18":[{"name":"Martin Luther King, Jr. Day","country":"US","date":"2016-01-18"}],"2016-02-02":[{"name":"Groundhog Day","country":"US","date":"2016-02-02"}],"2016-02-10":[{"name":"Ash Wednesday","country":"US","date":"2016-02-10"}],"2016-02-14":[{"name":"Valentine's Day","country":"US","date":"2016-02-14"}],"2016-02-15":[{"name":"Washington's Birthday","country":"US","date":"2016-02-15"}],"2016-03-08":[{"name":"International Women's Day","country":"US","date":"2016-03-08"}],"2016-03-17":[{"name":"Saint Patrick's Day","country":"US","date":"2016-03-17"}],"2016-03-20":[{"name":"Palm Sunday","country":"US","date":"2016-03-20"}],"2016-03-25":[{"name":"Good Friday","country":"US","date":"2016-03-25"}],"2016-03-27":[{"name":"Easter","country":"US","date":"2016-03-27"}],"2016-04-01":[{"name":"April Fools' Day","country":"US","date":"2016-04-01"}],"2016-04-22":[{"name":"Earth Day","country":"US","date":"2016-04-22"}],"2016-04-29":[{"name":"Arbor Day","country":"US","date":"2016-04-29"}],"2016-05-01":[{"name":"May Day","country":"US","date":"2016-05-01"}],"2016-05-04":[{"name":"Star Wars Day","country":"US","date":"2016-05-04"}],"2016-05-05":[{"name":"Cinco de Mayo","country":"US","date":"2016-05-05"}],"2016-05-08":[{"name":"Mother's Day","country":"US","date":"2016-05-08"}],"2016-05-30":[{"name":"Memorial Day","country":"US","date":"2016-05-30"}],"2016-06-14":[{"name":"Flag Day","country":"US","date":"2016-06-14"}],"2016-06-19":[{"name":"Father's Day","country":"US","date":"2016-06-19"}],"2016-06-27":[{"name":"Helen Keller Day","country":"US","date":"2016-06-27"}],"2016-07-04":[{"name":"Independence Day","country":"US","date":"2016-07-04"}],"2016-08-26":[{"name":"Women's Equality Day","country":"US","date":"2016-08-26"}],"2016-09-05":[{"name":"Labor Day","country":"US","date":"2016-09-05"}],"2016-09-11":[{"name":"Grandparent's Day","country":"US","date":"2016-09-11"},{"name":"Patriot Day","country":"US","date":"2016-09-11"}],"2016-09-17":[{"name":"Constitution Day","country":"US","date":"2016-09-17"}],"2016-10-06":[{"name":"German-American Day","country":"US","date":"2016-10-06"}],"2016-10-09":[{"name":"Leif Erkson Day","country":"US","date":"2016-10-09"}],"2016-10-10":[{"name":"Columbus Day","country":"US","date":"2016-10-10"}],"2016-10-31":[{"name":"Halloween","country":"US","date":"2016-10-31"}],"2016-11-08":[{"name":"Election Day","country":"US","date":"2016-11-08"},{"name":"Super Tuesday","country":"US","date":"2016-11-08"}],"2016-11-11":[{"name":"Veterans Day","country":"US","date":"2016-11-11"}],"2016-11-24":[{"name":"Thanksgiving Day","country":"US","date":"2016-11-24"}],"2016-11-25":[{"name":"Black Friday","country":"US","date":"2016-11-25"}],"2016-12-07":[{"name":"Pearl Harbor Remembrance Day","country":"US","date":"2016-12-07"}],"2016-12-08":[{"name":"Immaculate Conception of the Virgin Mary","country":"US","date":"2016-12-08"}],"2016-12-24":[{"name":"Christmas Eve","country":"US","date":"2016-12-24"}],"2016-12-25":[{"name":"Christmas","country":"US","date":"2016-12-25"}],"2016-12-26":[{"name":"First Day of Kwanzaa","country":"US","date":"2016-12-26"}],"2016-12-27":[{"name":"Second Day of Kwanzaa","country":"US","date":"2016-12-27"}],"2016-12-28":[{"name":"Third Day of Kwanzaa","country":"US","date":"2016-12-28"}],"2016-12-29":[{"name":"Fourth Day of Kwanzaa","country":"US","date":"2016-12-29"}],"2016-12-30":[{"name":"Fifth Day of Kwanzaa","country":"US","date":"2016-12-30"}],"2016-12-31":[{"name":"New Year's Eve","country":"US","date":"2016-12-31"},{"name":"Sixth Day of Kwanzaa","country":"US","date":"2016-12-31"}]};
- // You would inject any HTML you wanted for
- // that particular date here.
- var numFmt = function(num) {
- num = num.toString();
- if (num.length < 2) {
- num = "0" + num;
- }
- return num;
- };
- var loadContentAsync = true;
- $log.info("setDayContent.async", loadContentAsync);
- $scope.setDayContent = function(date) {
- var key = [date.getFullYear(), numFmt(date.getMonth()+1), numFmt(date.getDate())].join("-");
- // var data = (holidays[key]||[{ name: ""}])[0].name;
- if (loadContentAsync) {
- var deferred = $q.defer();
- $timeout(function() {
- deferred.resolve(data);
- });
- return deferred.promise;
- }
- return data;
- };
- });
-
|