ApiBoard.php 25.5 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959
<? include $_SERVER["DOCUMENT_ROOT"] . "/common/classes/ApiBase.php" ;?>
<?

if (! class_exists("ApiBoard"))
{

	class ApiBoard extends ApiBase
	{

		function __construct($req)
		{
			parent::__construct($req);
		}

		//공지사항 리스트
		function getListOfNotice(){
			
			$sql="
				SELECT COUNT(*) AS rn
				FROM tblNotice
				WHERE status=1
				ORDER BY noticeNo DESC
			";
			
			$this->rownum=$this->getValue($sql, "rn");
			$this->initPage();
			$this->setPageForDevice($this->rownum);
			
			$sql="
				SELECT noticeNo, title
				FROM tblNotice
				WHERE status=1
				ORDER BY noticeNo DESC
			";

			$result=$this->getArray($sql);
			return $this->makeResultJson("1", "", $result);
		}
		
		//공지사항 정보
		function getInfoOfNotice(){
			$noticeNo=$this->req["no"];
			
			$sql="
				SELECT *
				FROM tblNotice
				WHERE noticeNo='{$noticeNo}'
			";
			$result=$this->getArray($sql);
			return $this->makeResultJson("1", "", $result);
				
		}
		
		//이벤트 리스트
		function getListOfEvent(){
			$sql="
				SELECT COUNT(*) AS rn
				FROM tblEvent
				WHERE status=1
				ORDER BY eventNo DESC
			";
			$this->rownum=$this->getValue($sql, "rn");
			$this->initPage();
			$this->setPageForDevice($this->rownum);
			
			$sql="
				SELECT eventNo, title
				FROM tblEvent
				WHERE status=1
				ORDER BY eventNo DESC
			";
			$result=$this->getArray($sql);
			return $this->makeResultJson("1", "", $result);
		}
		
		//이벤트 정보
		function getInfoOfEvent(){
			$eventNo=$this->req["no"];
			$sql="
				SELECT *
				FROM tblEvent
				WHERE eventNo='{$eventNo}'
			";
			$result=$this->getArray($sql);
			
			if($result != null){
				$sql="
					SELECT C.*, U.userID, U.userNo
					FROM tblComment C
					JOIN tblUser U ON C.userFk=U.userNo
					WHERE targetFk='{$eventNo}' AND commentType='EV'
					ORDER BY C.commentGroup DESC, C.gOrder ASC
				";
				
				$commentList=$this->getArray($sql);
				
				return $this->makeResultJson("1", "", $result, Array(
						"commentList" => $commentList
						));
			}
			else{
				return $this->makeResultJson("-1000", "내역이 없습니다.");
			}
		}
		
		function getListCountBoard(){
			$sql="SELECT COUNT(*) AS rn FROM tblBoard WHERE status=1";
			$result=$this->getValue($sql, "rn");
			return $this->makeResultJson("1", "", $result);
		}
		
		function getListCountCS(){
			$sql="SELECT COUNT(*) AS rn FROM tblCustomerService WHERE status=1";
			$result=$this->getValue($sql, "rn");
			return $this->makeResultJson("1", "", $result);
		}
		
		
		//자유게시판 게시물 작성
		function saveBoard(){
			$imgResult = $this->inFn_Common_fileSave($_FILES);
			
			$title=$this->req["title"];
			$userFk = $this->appUser["no"];
			//$userFk=$this->req["userFk"];
			
			$imgPathBoard1 = $imgResult["imgPathBoard1"]["saveURL"] != null ? $imgResult["imgPathBoard1"]["saveURL"] : $this->req["imgPathBoard1"];
			$imgPathBoard2 = $imgResult["imgPathBoard2"]["saveURL"] != null ? $imgResult["imgPathBoard2"]["saveURL"] : $this->req["imgPathBoard2"];
			$imgPathBoard3 = $imgResult["imgPathBoard3"]["saveURL"] != null ? $imgResult["imgPathBoard3"]["saveURL"] : $this->req["imgPathBoard3"];
			$imgPathBoard4 = $imgResult["imgPathBoard4"]["saveURL"] != null ? $imgResult["imgPathBoard4"]["saveURL"] : $this->req["imgPathBoard4"];
			$imgPathBoard5 = $imgResult["imgPathBoard5"]["saveURL"] != null ? $imgResult["imgPathBoard5"]["saveURL"] : $this->req["imgPathBoard5"];
				
			
			$content=$this->req["content"];
			
			$sql="
				INSERT INTO tblBoard(userFk, title, imgPathBoard1, imgPathBoard2, imgPathBoard3, imgPathBoard4, imgPathBoard5, content, status, regDate)
				VALUES
				(
					'{$userFk}', 
					'{$title}',
					'{$imgPathBoard1}',
					'{$imgPathBoard2}',
					'{$imgPathBoard3}',
					'{$imgPathBoard4}',
					'{$imgPathBoard5}',
					'{$content}',
					1,
					NOW()
				)
			";
			$this->update($sql);
			return $this->makeResultJson("1", "저장되었습니다");
		}
		
		//자유게시판 리스트
		function getListOfBoard(){
			$searchText=$this->req["searchText"];
			$searchType=$this->req["searchType"];
			
			$where="WHERE B.status=1";
			
			if(!empty($searchText)){
				if(empty($search_type)){
					$where.=" AND (U.userID LIKE '%{$searchText}%' OR B.title LIKE '%{$searchText}%')";
				}
				else if($searchType=="작성자"){
					$where.=" AND U.userID LIKE '%{$searchText}%'";
				}
				else if($searchType=="제목"){
					$where.=" AND B.title LIKE '%{$searchText}%'";	
				}
			}
			
			
			$sql="
				SELECT COUNT(*) AS rn
				FROM tblBoard B
				JOIN tblUser U ON B.userFk=U.userNo
				{$where}
				ORDER BY boardNo DESC
			";
			$this->initPage();
			$this->rownum = $this->getValue($sql, "rn");
			
			$this->setPageForDevice($this->rownum);
			
			$sql="
				SELECT B.boardNo, B.title, U.userID, U.userNo
				FROM tblBoard B
				JOIN tblUser U ON B.userFk=U.userNo
				{$where}
				ORDER BY boardNo DESC
				LIMIT {$this->startNum}, {$this->endNum}
			";
			$list=$this->getArray($sql);
			
			if (sizeof($list) > 0)
				return $this->makeResultJson("1", "", $list);
			else
				return $this->makeResultJson("-1000", "내역이 없습니다.");
		}
		
		//게시물 정보
		function getInfoOfBoard(){
			//$boardNo = $this->req["no"];
			$boardNo=1;
			$sql="
				SELECT B.*, U.userID, U.userName
				FROM tblBoard B
				JOIN tblUser U ON B.userFk=U.userNo
				WHERE boardNo='{$boardNo}' AND B.status=1
				LIMIT 1
			";
			$result=$this->getRow($sql);
			
			if($result != null){
				$sql="
					SELECT C.*, U.userID, U.userNo
					FROM tblComment C
					JOIN tblUser U ON C.userFk=U.userNo
					WHERE targetFk='{$boardNo}' AND commentType='FB'
					ORDER BY C.commentGroup DESC, C.gOrder ASC
				";
				$commentList=$this->getArray($sql);
				
				return $this->makeResultJson("1", "", $result, Array(
						"commentList" => $commentList
						));
			}
			else{
				return $this->makeResultJson("-1000", "내역이 없습니다.");
			}		
		}
		
		function modifyBoard(){			//미완성
			$boardNo=$this->req["boardNo"];
			$imgResult = $this->inFn_Common_fileSave($_FILES);
				
			$title=$this->req["title"];
			//$userFk = $this->appUser["no"];
			$userFk=$this->req["userFk"];
				
			$imgPathBoard1 = $imgResult["imgPathBoard1"]["saveURL"] != null ? $imgResult["imgPathBoard1"]["saveURL"] : $this->req["imgPathBoard1"];
			$imgPathBoard2 = $imgResult["imgPathBoard2"]["saveURL"] != null ? $imgResult["imgPathBoard2"]["saveURL"] : $this->req["imgPathBoard2"];
			$imgPathBoard3 = $imgResult["imgPathBoard3"]["saveURL"] != null ? $imgResult["imgPathBoard3"]["saveURL"] : $this->req["imgPathBoard3"];
			$imgPathBoard4 = $imgResult["imgPathBoard4"]["saveURL"] != null ? $imgResult["imgPathBoard4"]["saveURL"] : $this->req["imgPathBoard4"];
			$imgPathBoard5 = $imgResult["imgPathBoard5"]["saveURL"] != null ? $imgResult["imgPathBoard5"]["saveURL"] : $this->req["imgPathBoard5"];
			
				
			$content=$this->req["content"];
				
			$sql="
			UPDATE tblBoard 
			SET
			title='{$title}',
			imgPathBoard1='{$imgPathBoard1}',
			imgPathBoard2='{$imgPathBoard2}',
			imgPathBoard3='{$imgPathBoard3}',
			imgPathBoard4='{$imgPathBoard4}',
			imgPathBoard5='{$imgPathBoard5}',
			content='{$content}'
			WHERE boardNo='{$boardNo}' AND status=1
			";
			$this->update($sql);
			return $this->makeResultJson("1", "저장되었습니다");
		}
		
		function delBoard(){
			$boardNo=$this->req["boardNo"];
			
			$sql="UPDATE tblBoard SET status=0 WHERE boardNo='{$boardNo}'";
			$this->update($sql);
			return $this->makeResultJson("1", "삭제되었습니다");
		}
		
		//고객센터 게시물 저장
		function saveCS(){
			$imgResult = $this->inFn_Common_fileSave($_FILES);
			$imgPathCS1 = $imgResult["imgPathCS1"]["saveURL"] != null ? $imgResult["imgPathCS1"]["saveURL"] : $this->req["imgPathCS1"];
			$imgPathCS2 = $imgResult["imgPathCS2"]["saveURL"] != null ? $imgResult["imgPathCS2"]["saveURL"] : $this->req["imgPathCS2"];
			$imgPathCS3 = $imgResult["imgPathCS3"]["saveURL"] != null ? $imgResult["imgPathCS3"]["saveURL"] : $this->req["imgPathCS3"];
			$imgPathCS4 = $imgResult["imgPathCS4"]["saveURL"] != null ? $imgResult["imgPathCS4"]["saveURL"] : $this->req["imgPathCS4"];
			$imgPathCS5 = $imgResult["imgPathCS5"]["saveURL"] != null ? $imgResult["imgPathCS5"]["saveURL"] : $this->req["imgPathCS5"];
			
			$title=$this->req["title"];
			//$userFk = $this->appUser["no"];
			$userFk=$this->req["userFk"];
			$targetType=$this->req["targetType"];
			$content=$this->req["content"];
			
			$sql="
				INSERT INTO tblCustomerService(userFk, title, targetType, imgPathCS1, imgPathCS2, imgPathCS3, imgPathCS4, imgPathCS5, content, status, regDate)
				VALUES
				(
					'{$userFk}',
					'{$title}',
					'{$targetType}',
					'{$imgPathCS1}',
					'{$imgPathCS2}',
					'{$imgPathCS3}',
					'{$imgPathCS4}',
					'{$imgPathCS5}',
					'{$content}',
					1,
					NOW()
				)
			";
			$this->update($sql);
			return $this->makeResultJson("1", "저장되었습니다");
			
		}
		
		function modifyCS(){			//미완성
			$csNo=$this->req["csNo"];
			$imgResult = $this->inFn_Common_fileSave($_FILES);
		
			$title=$this->req["title"];
			$targetType=$this->req["targetType"];
			//$userFk = $this->appUser["no"];
			$userFk=$this->req["userFk"];
			$content=$this->req["content"];
			
			$imgPathCS1 = $imgResult["imgPathCS1"]["saveURL"] != null ? $imgResult["imgPathCS1"]["saveURL"] : $this->req["imgPathCS1"];
			$imgPathCS2 = $imgResult["imgPathCS2"]["saveURL"] != null ? $imgResult["imgPathCS2"]["saveURL"] : $this->req["imgPathCS2"];
			$imgPathCS3 = $imgResult["imgPathCS3"]["saveURL"] != null ? $imgResult["imgPathCS3"]["saveURL"] : $this->req["imgPathCS3"];
			$imgPathCS4 = $imgResult["imgPathCS4"]["saveURL"] != null ? $imgResult["imgPathCS4"]["saveURL"] : $this->req["imgPathCS4"];
			$imgPathCS5 = $imgResult["imgPathCS5"]["saveURL"] != null ? $imgResult["imgPathCS5"]["saveURL"] : $this->req["imgPathCS5"];
				
		
			
		
			$sql="
			UPDATE tblCustomerService
			SET
			title='{$title}',
			targetType='{$targetType}',
			imgPathCS1='{$imgPathCS1}',
			imgPathCS2='{$imgPathCS2}',
			imgPathCS3='{$imgPathCS3}',
			imgPathCS4='{$imgPathCS4}',
			imgPathCS5='{$imgPathCS5}',
			content='{$content}'
			WHERE csNo='{$csNo}' AND status=1
			";
			$this->update($sql);
			return $this->makeResultJson("1", "저장되었습니다");
		}
		
		function delCS(){
			$csNo=$this->req["csNo"];
				
			$sql="UPDATE tblCustomerService SET status=0 WHERE csNo='{$csNo}'";
			$this->update($sql);
			return $this->makeResultJson("1", "삭제되었습니다");
		}

		//고객센터 게시물 리스트
		function getListOfCS(){
			$searchText=$this->req["searchText"];
			$searchType=$this->req["searchType"];
				
			$where="CS.status=1 AND targetType = 1";
				
			if(!empty($searchText)){
				if(empty($search_type)){
					$where.=" AND (U.userID LIKE '%{$searchText}%' OR CS.title LIKE '%{$searchText}%')";
				}
				else if($searchType=="작성자"){
					$where.=" AND U.userID LIKE '%{$searchText}%'";
				}
				else if($searchType=="제목"){
					$where.=" AND CS.title LIKE '%{$searchText}%'";
				}
			}
			
			
			$sql="
				SELECT COUNT(*) AS rn
				FROM tblCustomerService CS
				JOIN tblUser U ON CS.userFk=U.userNo
				WHERE CS.status=1
				ORDER BY csNo DESC
			";
			$this->initPage();
			$this->rownum = $this->getValue($sql, "rn");
			
			$this->setPageForDevice($this->rownum);
			
			$sql="
				SELECT CS.*, U.userID, U.userNo
				FROM tblCustomerService CS
				JOIN tblUser U ON CS.userFk=U.userNo
				WHERE CS.status=1
				ORDER BY csNo DESC
				LIMIT {$this->startNum}, {$this->endNum}
			";
			$list=$this->getArray($sql);
			
			if(sizeof($list)>0)
				return $this->makeResultJson("1", "", $list);
			else 
				return $this->makeResultJson("1000", "내역이 없습니다.");
		}
		
		//고객센터 게시물 내용
		function getInfoOfCS(){
			//$csNo=$this->req["no"];
			$csNo=2;
			$sql="
				SELECT CS.*, U.userID, U.userName
				FROM tblCustomerService CS
				JOIN tblUser U ON CS.userFk=U.userNo
				WHERE csNo='{$csNo}' AND CS.status=1
				LIMIT 1
			";
			$result=$this->getRow($sql);
			
			if($result != null){
				$sql="
				SELECT U.userNo, U.userID, C.*
				FROM tblComment C
				JOIN tblUser U ON C.userFk=U.userNo
				WHERE targetFk='{$csNo}' AND commentType='CS'
				ORDER BY C.commentGroup DESC, C.gOrder ASC
				";
					
				$commentList=$this->getArray($sql);
				
				return $this->makeResultJson("1", "", $result, Array(
						"commentList" => $commentList
				));
			}
			else{
				return $this->makeResultJson("-1000", "내역이 없습니다.");
			}
		}
		

		//AS엄체 리스트
		function getListOfCompany(){
			$provinceNumber=$this->req["provinceNumber"];
			$productNumber=$this->req["productNumber"];
			$searchText=$this->req["searchText"];
			
			$where="WHERE status=1";
			
			if(!empty($provinceNumber)){
				$where.=" AND provinceCode='{$provinceNumber}'";
			}
			
			if(!empty($productNumber)){
				$where.=" AND productCode='{$productNumber}'";
			}
			if(!empty($searchText)){
				$where.=" AND name LIKE '%{$searchText}%'";
			}
			
			$sql="
				SELECT COUNT(*) AS rn
				FROM tblCompany
				{$where}
				ORDER BY companyNo DESC
			";
			$this->initPage();
			$this->rownum=$this->getValue($sql, "rn");
			
			$this->setPageForDevice($this->rownum);
			
			$sql="
				SELECT companyNo, name, telephone
				FROM tblCompany
				{$where}
				ORDER BY companyNo DESC
				LIMIT {$this->startNum}, {$this->endNum}
			";
			$list=$this->getArray($sql);
			
			if(sizeof($list)>0)
				return $this->makeResultJson("1", "", $list);
			else 
				return $this->makeResultJson("-1000", "내역이 없습니다.");
		}
		
		//AS업체 상세
		function getInfoOfCompany(){
			//$companyNo=$this->req["no"];
			$companyNo=1;
			
			$sql="
				SELECT C.*
				FROM tblCompany C
				WHERE companyNo='{$companyNo}' AND C.status=1
				LIMIT 1
			";
			$result=$this->getRow($sql);
			
			if($result != null){
				$sql="
					SELECT U.userNo, U.userID, C.*
					FROM tblComment C
					JOIN tblUser U ON C.userFk=U.userNo
					WHERE targetFk='{$companyNo}' AND commentType='CP'
					ORDER BY C.commentGroup DESC, C.gOrder ASC
				";
				$commentList=$this->getArray($sql);
				
				return $this->makeResultJson("1", "", $result, Array(
						"commentList" => $commentList
				));
			}
			else{
				return $this->makeResultJson("-1000", "내역이 없습니다.");
			}
		}
		
		//댓글 저장
		function saveComment(){								
			$commentType=$this->req["commentType"];
			$targetFk=$this->req["targetFk"];
			//$userFk = $this->appUser["no"];;
			$userFk=$this->req["userFk"];
			$content=$this->req["content"];
			$parentNo=$this->req["parentNo"];		//부모 댓글의 기본키
			
			if(empty($parentNo)){		//부모가 없을 때
				$sql="
					INSERT INTO tblComment(userFk, targetFk, commentGroup, gOrder, depth, content, commentType, status, regDate)
					VALUES
					(
						'{$userFk}',
						'{$targetFk}',
						0,
						1,
						1,
						'{$content}',
						'{$commentType}',
						1,
						NOW()
					)
				";
				$this->update($sql);
				
				$currentNo=$this->mysql_insert_id();
				$sql="
					UPDATE tblComment
					SET commentGroup='{$currentNo}'
					WHERE commentNo='{$currentNo}'
				";
				$this->update($sql);
				
				return $this->makeResultJson("1", "저장되었습니다");
			}
			else{			//부모 있을 때
				$sql="
					SELECT gOrder, commentGroup, depth
					FROM tblComment
					WHERE commentNo='{$parentNo}'
				";
				$parent=$this->getRow($sql);
				
				$parentGOrder=$parent["gOrder"];
				$parentCommentGroup=$parent["commentGroup"];
				$parentDepth=$parent["depth"];

				$sql="
					UPDATE tblComment
					SET gOrder=gOrder+1
					WHERE commentGroup='{$parentCommentGroup}' AND gOrder>'{$parentGOrder}'
				";
				$this->update($sql);
				
				$sql="
					INSERT INTO tblComment(userFk, targetFk, commentGroup, gOrder, depth, content, commentType, status, regDate)
					VALUES
					(
						'{$userFk}',
						'{$targetFk}',
						'{$parentCommentGroup}',
						'{$parentGOrder}' + 1,
						'{$parentDepth}' + 1,
						'{$content}',
						'{$commentType}',
						1,
						NOW()
					)
				";
				$this->update($sql);
				
				return $this->makeResultJson("1", "저장되었습니다");
			}
		}
		
		function getInfoOfComment(){
			$commentNo=$this->req["commentNo"];
			$sql="
				SELECT *
				FROM tblComment
				WHERE commentNo='{$commentNo}'
			";
			$result=$this->getRow($sql);
			return $this->makeResultJson("1", "", $result);
		}
		
		function modifyComment(){
			$commentNo=$this->req["commentNo"];
			$content=$this->req["content"];
			$sql="
				UPDATE tblComment
				SET content='$content'
				WHERE commentNo='{$commentNo}'
			";
			$this->update($sql);
		}
		
		function delComment(){
			$commentNo=$this->req["commentNo"];
			
			$sql="
				UPDATE tblComment
				SET status=0
				WHERE commentNo='{$commentNo}' OR (
				commentGroup=(SELECT commentGroup FROM (SELECT * FROM tblComment) AS c WHERE commentNo='{$commentNo}') 
				AND depth > (SELECT depth FROM (SELECT * FROM tblComment) AS c WHERE commentNo='{$commentNo}'))
			";
		}
		
		//제작사양서 저장
		function saveProductionSpec(){
			//$userFk = $this->appUser["no"];
			$userFk = $this->req["userFk"];
			$requestDate=$this->req["requestDate"];
			$customerName=$this->req["customerName"];
			$companyName=$this->req["companyName"];
			$vehicleTON=$this->req["vehicleTON"];
			$vehicleText=$this->req["vehicleText"];
			$vehicleType=$this->req["vehicleType"];
			$productName=$this->req["productName"];
			$telephone=$this->req["telephone"];
			$type=$this->req["type"];
			$typeValue=$this->req["typeValue"];
			$internalLength=$this->req["internalLength"];
			$internalHeight=$this->req["internalHeight"];
			$internalWidth=$this->req["internalWidth"];
			$alCoil=$this->req["alCoil"];
			$alCoilValue=$this->req["alCoilValue"];
			$floor=$this->req["floor"];
			$floorValueT=$this->req["floorValueT"];
			$floorValueText=$this->req["floorValueText"];
			$tent=$this->req["tent"];
			$sideBoard=$this->req["sideBoard"];
			$sideBoardValue=$this->req["sideBoardValue"];
			$windStopper=$this->req["windStopper"];
			$windStopperValue=$this->req["windStopperValue"];
			$freezer=$this->req["freezer"];
			$freezerValue=$this->req["freezerValue"];
			$gateType=$this->req["gateType"];
			$gateSize=$this->req["gateSize"];
			$gateValue=$this->req["gateValue"];
			$load=$this->req["load"];
			$frontBack=$this->req["frontBack"];
			$eTrackGate=$this->req["eTrackGate"];
			$eTrackWing=$this->req["eTrackWing"];
			$eTrackValue=$this->req["eTrackValue"];
			$toolBucket=$this->req["toolBucket"];
			$toolBucketValue=$this->req["toolBucketValue"];
			$bumperFootHold=$this->req["bumperFootHold"];
			$wingProtector=$this->req["wingProtector"];
			$axis=$this->req["axis"];
			$axisValue=$this->req["axisValue"];
			$balance=$this->req["balance"];
			$specialAddition=$this->req["specialAddition"];
			
			if(empty($requestDate) || empty($customerName) || empty($companyName) || empty($productName) || empty($telephone) || empty($userFk) || empty($balance) || empty($type) || empty($alCoil) || empty($floor) || empty($tent) || empty($sideBoard)
					|| empty($windStopper) || empty($freezer) || empty($gateType) || empty($gateSize) || empty($load) || empty($frontBack) || empty($eTrackGate) || empty($eTrackWing) || empty($toolBucket) || empty($bumperFootHold) || empty($wingProtector) 
					|| empty($axis)){
				return $this->makeResultJson("-1", "저장오류");
			}
			
			$sql="
				INSERT INTO tblProductionSpec(
					userFk, 
					requestDate,
					customerName,
					companyName, 
					vehicleTON, 
					vehicleText, 
					vehicleType, 
					productName, 
					telephone, 
					`type`,
					typeValue,
					internalLength, 
					internalHeight, 
					internalWidth, 
					alCoil,
					alCoilValue,
					`floor`, 
					floorValueT,
					floorValueText,
					tent, 
					sideBoard, 
					sideBoardValue,
					windStopper, 
					windStopperValue,
					freezer, 
					freezerValue,
					gateType,
					gateSize,
					gateValue,
					`load`, 
					frontBack,
					eTrackGate, 
					eTrackWing, 
					eTrackValue,
					toolBucket, 
					toolBucketValue,
					bumperFootHold,
					wingProtector, 
					axis, 
					axisValue, 
					balance,
					specialAddition, 
					status, 
					regDate
				)
				VALUES
				(
					'{$userFk}',
					'{$requestDate}',
					'{$customerName}',
					'{$companyName}',
					'{$vehicleTON}',
					'{$vehicleText}',
					'{$vehicleType}',
					'{$productName}',
					'{$telephone}',
					'{$type}',
					'{$typeValue}',
					'{$internalLength}',
					'{$internalHeight}',
					'{$internalWidth}',
					'{$alCoil}',
					'{$alCoilValue}',
					'{$floor}',
					'{$floorValueT}',
					'{$floorValueText}',
					'{$tent}',
					'{$sideBoard}',
					'{$sideBoardValue}',
					'{$windStopper}',
					'{$windStopperValue}',
					'{$freezer}',
					'{$freezerValue}',
					'{$gateType}',
					'{$gateSize}',
					'{$gateValue}',
					'{$load}',
					'{$frontBack}',
					'{$eTrackGate}',
					'{$eTrackWing}',
					'{$eTrackValue}',
					'{$toolBucket}',
					'{$toolBucketValue}',
					'{$bumperFootHold}',
					'{$wingProtector}',
					'{$axis}',
					'{$axisValue}',
					'{$balance}',
					'{$specialAddition}',
					1,
					NOW()
				)
			";
			$this->update($sql);
			return $this->makeResultJson("1", "저장되었습니다");
		}
		
		//내 제작사양서
		function getListOfMyProductionSpec(){
			//$userFk=$this->appUser["no"];
			$userFk=1;
			
			$sql="
				SELECT COUNT(*) AS rn
				FROM tblProductionSpec
				WHERE userFk='{$userFk}' AND status=1
				ORDER BY productionNo DESC
			";
			$this->initPage();
			$this->rownum=$this->getValue($sql, "rn");
			
			$this->setPageForDevice($this->rownum);
			
			$sql="
				SELECT productionNo, companyName, requestDate
				FROM tblProductionSpec 
				WHERE userFk='{$userFk}' AND status=1
				ORDER BY productionNo DESC
			";
			$list=$this->getArray($sql);
			
			if(sizeof($list)>0)
				return $this->makeResultJson("1", "", $list);
			else
				return $this->makeResultJson("-1000", "내역이 없습니다.");
		}
		
		//제작사양서 리스트(검색) 
		function getListOfProductionSpec(){
			$dateFormer=$this->req["dateFormer"];
			$dateLatter=$this->req["dateLatter"];
			$userFk=$this->req["userFk"];

			$where="WHERE status=1";
			if(!empty($dateFormer)){
				$where .= " AND DATE_FORMAT(requestDate, '%Y%m%d') >= DATE_FORMAT('{$dateFormer}', '%Y%m%d')";
			}
			if(!empty($dateLatter)){
				$where .= " AND DATE_FORMAT(requestDate, '%Y%m%d') <= DATE_FORMAT('{$dateLatter}', '%Y%m%d')";
			}
			if(!empty($userFk)){
				$where .= " AND userFk='{$userFk}'";
			}
			
			$sql="
				SELECT COUNT(*) AS rn
				FROM tblProductionSpec
				{$where}
				ORDER BY productionNo DESC
			";
			$this->initPage();
			$this->rownum=$this->getValue($sql, "rn");
			
			$this->setPageForDevice($this->rownum);
			
			
			$sql="
				SELECT productionNo, companyName, requestDate
				FROM tblProductionSpec
				{$where}
				ORDER BY productionNo DESC
			";
			$list=$this->getArray($sql);
			
			if(sizeof($list)>0)
				return $this->makeResultJson("1", "", $list);
			else
				return $this->makeResultJson("-1000", "내역이 없습니다.");
		}
		
		//제작사양서  상세정보
		function getInfoOfProductionSpec(){
			$userNo=$this->appUser["userNo"];
			$productionNo=$this->req["productionNo"];
			$productionNo=3;
			$sql="
				SELECT PS.*, U.userNo, U.userName, IFNULL((SELECT userNo FROM tblLike WHERE userNo='{$userNo}' AND productionNo='{$productionNo}'), 0) AS likeStatus
				FROM tblProductionSpec PS
				JOIN tblUser U ON PS.userFk=U.userNo
				WHERE productionNo='{$productionNo}'
			";
			$info=$this->getRow($sql);
			
			if($userNo == $info["userNo"])
				$info["balance"] = null;
			
			return $this->makeResultJson("1", "", $info);
		}

		
		//좋아요
		function productionLike(){
			$userNo=$this->appUser["userNo"];
			$productionNo=$this->req["productionNo"];
			
			$sql="
				INSERT INTO tblLike(userNo, productionNo, regDate)
				VALUES('{$userNo}', '{$productionNo}', NOW())
			";
			$this->update($sql);
			return $this->makeResultJson("1", "등록되었습니다");
		}
		
		//좋아요 취소
		function productionLikeCancel(){
			$userNo=$this->req["userNo"];
			$productionNo=$this->req["productionNo"];
			
			$sql="DELETE FROM tblLike WHERE userNo='{$userNo}' AND productionNo='{$productionNo}'";
			$this->update($sql);
			return $this->makeResultJson("1", "취소되었습니다");
		}
		
		//제작사양서 보관함 리스트(좋아요 리스트)
		function productionLikeList(){
			$userNo=$this->appUser["no"];
			
			$sql="
				SELECT COUNT(*) AS rn
				FROM tblProductionSpec PS
				JOIN tblLike L ON PS.productionNo=L.productionNo
				WHERE L.userNo='{$userNo}' AND PS.status=1
				ORDER BY regDate DESC
			";
			$this->initPage();
			$this->rownum=$this->getValue($sql, "rn");
			
			$this->setPageForDevice($this->rownum);
			
			$sql="
				SELECT PS.productionNo, companyName, requestDate
				FROM tblProductionSpec PS
				JOIN tblLike L ON PS.productionNo=L.productionNo
				WHERE L.userNo='{$userNo}' AND PS.status=1
				ORDER BY regDate DESC
			";
			$result=$this->getArray($sql);
			return $this->makeResultJson("1","", $result);
		}
		
		function getListOfProductionPortrait(){
			$sql="
				SELECT COUNT(*) AS rn
				FROM tblProductionPortrait
				WHERE status=1
				ORDER BY regDate DESC
			";
			$this->initPage();
			$this->rownum=$this->getValue($sql, "rn");
			
			$this->setPageForDevice($this->rownum);
			
			$sql="
				SELECT ppNo, title, regDate
				FROM tblProductionPortrait
				WHERE status=1
				ORDER BY regDate DESC
			";
			$result=$this->getArray($sql);
			return $this->makeResultJson("1", "", $result);
		}
		
		function getInfoOfProductionPortrait(){
			$ppNo=$this->req["ppNo"];
			
			$sql="
				SELECT *
				FROM tblProductionPortrait
				WHERE ppNo='{$ppNo}'
				LIMIT 0, 1
			";
		}
		
		
		
	} // 클래스 종료
}
?>