소스 검색

ISTCS-84-영업일관리/총알배송영업일관리 오류 수정

smlee@yes24.com 4 년 전
부모
커밋
6cdaf45dd5
2개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 1 1
      src/main/webapp/WEB-INF/views/business/Bizday2Form.html
  2. 2 2
      src/main/webapp/WEB-INF/views/business/BizdayForm.html

+ 1 - 1
src/main/webapp/WEB-INF/views/business/Bizday2Form.html

@@ -98,7 +98,7 @@
 			eventLimit: true, // allow "more" link when too many events
 
 			select: function(arg) {
-				if ((new Date(arg.end)).format('YYYYMMDD') - (new Date(arg.start)).format('YYYYMMDD') > 1) return;
+				if ((new Date(arg.end).getTime() - new Date(arg.start).getTime()) / (1000*60*60*24) > 1)  return;
 				var title ='휴일';
 				
 				mcxDialog.confirm("휴일로 변경하시겠습니까?", {

+ 2 - 2
src/main/webapp/WEB-INF/views/business/BizdayForm.html

@@ -97,8 +97,8 @@
 			editable: true,
 			eventLimit: true, // allow "more" link when too many events
 
-			select: function(arg) {
-				if ((new Date(arg.end)).format('YYYYMMDD') - (new Date(arg.start)).format('YYYYMMDD') > 1) return;
+			select: function(arg) {  
+				if ((new Date(arg.end).getTime() - new Date(arg.start).getTime()) / (1000*60*60*24) > 1) return;
 				var title ='휴일';
 				
 				mcxDialog.confirm("휴일로 변경하시겠습니까?", {