AdminUser.php 13.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
<? include $_SERVER["DOCUMENT_ROOT"] . "/common/classes/AdminBase.php" ;?>
<?
/*
 * Admin process
 * add by dev.lee
 * */
if(!class_exists("AdminUser")){
	class AdminUser extends  AdminBase {
		
		function __construct($req) 
		{
			parent::__construct($req);
		}
		
		
		/**
		 * 관리자 리스트 조회
		 */
		function getListOfAdminUser()
		{
			$admin_type = $this->req["admin_type"];
			$search_text = $this->req["search_text"];
			
			$login_no = $this->admUser["no"];
			$login_type = $this->admUser["admin_type"];
			
			//최초 페이지 설정
			$this->initPage() ;
			
			$where = " WHERE adm.is_apply = 1 AND adm.admin_type != 1";
			
			if($login_type != "1")
			{
				$where .= " AND adm.no = '{$login_no} '";
			}
			else
			{
				if($admin_type != "")
					$where .= " AND adm.admin_type = '{$admin_type}' ";
				
				if($search_text != "")
					$where .= " AND adm.admin_id LIKE '%{$search_text}%' ";
			}
			
			$sql = "
				SELECT COUNT(*) AS rn
				FROM tbl_admin adm
				{$where}
			";
			$this->rownum = $this->getValue($sql, 'rn');
				
			//총 로우수를 획득후 페이지 최종 설정
			$this->setPage($this->rownum) ;
			
			$sql = "
				SELECT
					adm.*
					, CASE adm.admin_type 
						WHEN '2' THEN
							IFNULL((SELECT G.name FROM tbl_user_group G WHERE G.no = adm.target_fk AND G.status = 'Y' LIMIT 1 ), '-')
						WHEN '3' THEN
							IFNULL((SELECT S.name FROM tbl_shop S WHERE S.no = adm.target_fk AND S.status = 'Y' LIMIT 1 ), '-')
						ELSE '-'
					END AS target_name
				FROM tbl_admin adm
				{$where}
				ORDER BY adm.no DESC
				LIMIT {$this->startNum}, {$this->endNum} ;
			";
			$result = $this->getArray($sql);
			
			return $result;
		}
		
		/**
		 * 관리자 상세
		 * @return NULL
		 */
		function getInfoOfAdminUser()
		{
			$no = $this->req["no"];
			
			$sql = "
				SELECT
					adm.*
					, CASE adm.admin_type 
						WHEN '2' THEN
							IFNULL((SELECT G.name FROM tbl_user_group G WHERE G.no = adm.target_fk AND G.status = 'Y' LIMIT 1 ), '')
						WHEN '3' THEN
							IFNULL((SELECT S.name FROM tbl_shop S WHERE S.no = adm.target_fk AND S.status = 'Y' LIMIT 1 ), '')
						ELSE ''
					END AS target_name
				FROM tbl_admin adm
				WHERE no = '{$no}'
				LIMIT 1
			";
			$result = $this->getRow($sql);
			
			return $result;
		}
		
		/**
		 * 관리자 저장
		 * @return string
		 */
		function saveAdminUser()
		{
			$no = $this->req["no"];
			$admin_type = $this->req["admin_type"];
			$admin_id = $this->req["admin_id"];
			$admin_pwd = $this->req["admin_pwd"];
			$admin_name = $this->req["admin_name"];
			$admin_phone = $this->req["admin_phone"];
			$is_inquire_position = $this->req["is_inquire_position"] == "" ? 0 : 1;
			$target_fk = $this->req["target_fk"];
			
			
			$sql = "
				SELECT COUNT(*) AS isReg
				FROM tbl_admin
				WHERE `no` != '{$no}' AND is_apply = 1 AND admin_id = '{$admin_id}'
			";
			$isReg = $this->getValue($sql, "isReg");
			
			if($isReg > 0)
				return $this->makeResultJson(-100, "중복된 아이디입니다.");
			
				
			// 민원 관리자 초기화
			if($admin_type == "2")
			{
				$sql = "
					UPDATE tbl_admin
					SET is_inquire_position = 0
					WHERE target_fk = '{$target_fk}' AND admin_type='{$admin_type}' AND is_apply = 1 
				";
				$this->update($sql);
			}
			
			
			if($no == "")
			{
				$sql = "
					INSERT INTO tbl_admin(admin_type, is_inquire_position, admin_id, admin_pwd, admin_pwd_enc, admin_name, admin_phone, target_fk, is_apply, regist_dt)
					VALUES('{$admin_type}', '{$is_inquire_position}', '{$admin_id}', MD5('{$admin_pwd}'), HEX('{$admin_pwd}'), '{$admin_name}', '{$admin_phone}', '{$target_fk}', 1, NOW())
				";
				$this->update($sql);
				
				return $this->makeResultJson(1, "등록되었습니다.");
			}
			else
			{
				if($admin_pwd != "")
				{
					$addQuery = " , admin_pwd = MD5('{$admin_pwd}'), admin_pwd_enc = HEX('{$admin_pwd}') ";
				}
				
				$sql = "
					UPDATE tbl_admin
					SET
						admin_type = '{$admin_type}'
						, is_inquire_position = '{$is_inquire_position}'
						, admin_id = '{$admin_id}'
						, admin_name = '{$admin_name}'
						, admin_phone = '{$admin_phone}'
						, target_fk = '{$target_fk}'
						{$addQuery}
					WHERE `no` = '{$no}'
				";
				$this->update($sql);
				
				return $this->makeResultJson(1, "수정되었습니다.");
			}
			
		}
		
		
		/**
		 * 관리자 삭제
		 */
		function deleteAdminUser()
		{
			$noArr = $this->req["no"];
			
			$noStr = implode(',', $noArr);
			
			$sql = "
				UPDATE tbl_admin
				SET is_apply = -1
				WHERE `no` IN({$noStr})
			";
			$this->update($sql);
		}

		function getListOfUserForBoard($member_type = "", $vip_status = 0)
		{
			$search_text	= $this->req["search_text"];
			$login_type = $this->admUser["admin_type"];
			$target_fk = $this->admUser["target_fk"];
		
				
			$where = " WHERE status = 'Y' ";
				
			if($login_type != "1")
			{
				$where .= " AND group_fk = '{$target_fk}' ";
			}
				
			$addSelect = "";
			$addSelect .= " , IFNULL((SELECT G.name FROM tbl_user_group G WHERE G.no = U.group_fk AND G.status = 'Y' LIMIT 1), '') AS group_name ";
				
			if($member_type == "M")
			{
				$where .= " AND (U.member_type = '{$member_type}' OR U.member_type = 'H')";
				// add all type
				//$addSelect .= " , IFNULL((SELECT G.name FROM tbl_user_group G WHERE G.no = U.group_fk AND G.status = 'Y' LIMIT 1), '') AS group_name ";
			}
		
				
				
			if($member_type == "V")
			{
				$where .= " AND (U.member_type = '{$member_type}' OR U.member_type = 'VH') ";
				// add all type
				//$addSelect .= " , IFNULL((SELECT G.name FROM tbl_user_group G WHERE G.no = U.group_fk AND G.status = 'Y' LIMIT 1), '') AS group_name ";
			}
				
			if($vip_status == 1){
				$where .= "AND U.vip_status = {$vip_status} ";
			}
				
			if($search_text != ""){
				$where .= " AND ((U.id LIKE '%{$search_text}%' AND U.regi_type = 'E') OR U.tel LIKE '%{$search_text}%' OR U.name LIKE '%{$search_text}%' ) ";
			}
				
		
		
			if($this->req["page"] != "-1")
			{
				//최초 페이지 설정
				$this->initPage() ;
		
				$sql = "
				SELECT COUNT(*) AS rn
				FROM tbl_user U
				{$where}
				";
		
				$this->rownum = $this->getValue($sql, 'rn');
		
				//총 로우수를 획득후 페이지 최종 설정
				$this->setPage($this->rownum) ;
		
				$limit = " LIMIT {$this->startNum}, {$this->endNum} ; ";
			}
		
			$sql = "
			SELECT
			U.*
			{$addSelect}
			FROM tbl_user U
			{$where}
			ORDER BY U.no DESC
			{$limit}
			";
				
			$result = $this->getArray($sql);
				
			//echo json_encode($result);
			return $result;
		}
		

		// 회원 리스트
		function getListOfUser($member_type = "", $vip_status = 0)
		{
			$search_text	= $this->req["search_text"];
			$login_type = $this->admUser["admin_type"];
			$target_fk = $this->admUser["target_fk"];

			
			$where = " WHERE status = 'Y' ";
			
			if($login_type != "1")
			{
				$where .= " AND group_fk = '{$target_fk}' ";
			}
			
			$addSelect = "";
			$addSelect .= " , IFNULL((SELECT G.name FROM tbl_user_group G WHERE G.no = U.group_fk AND G.status = 'Y' LIMIT 1), '') AS group_name ";
			
			if($member_type == "M")
			{
				$where .= " AND U.member_type = '{$member_type}' ";
				// add all type
				//$addSelect .= " , IFNULL((SELECT G.name FROM tbl_user_group G WHERE G.no = U.group_fk AND G.status = 'Y' LIMIT 1), '') AS group_name ";
			}
		
			
			
			if($member_type == "V")
			{
				$where .= " AND (U.member_type = '{$member_type}' OR U.member_type = 'VH') ";
				// add all type
				//$addSelect .= " , IFNULL((SELECT G.name FROM tbl_user_group G WHERE G.no = U.group_fk AND G.status = 'Y' LIMIT 1), '') AS group_name ";
			}
			
			if($vip_status == 1){
				$where .= "AND U.vip_status = {$vip_status} ";
			}
			
			if($search_text != ""){
				$where .= " AND ((U.id LIKE '%{$search_text}%' AND U.regi_type = 'E') OR U.tel LIKE '%{$search_text}%' OR U.name LIKE '%{$search_text}%' ) ";
			}
			
		
				
			if($this->req["page"] != "-1")
			{
				//최초 페이지 설정
				$this->initPage() ;
				
				$sql = "
					SELECT COUNT(*) AS rn
					FROM tbl_user U
					{$where}
				";
				
				$this->rownum = $this->getValue($sql, 'rn');
				
				//총 로우수를 획득후 페이지 최종 설정
				$this->setPage($this->rownum) ;
				
				$limit = " LIMIT {$this->startNum}, {$this->endNum} ; ";
			}

			$sql = "
				SELECT 
					U.*
					{$addSelect}
				FROM tbl_user U
				{$where}
				ORDER BY U.no DESC
				{$limit}
			";
			
			$result = $this->getArray($sql);
			
			//echo json_encode($result);
			return $result;
		}
		
		function getListOfUserForExcel($member_type = "")
		{
			$search_text	= $this->req["search_text"];
				
			$login_type = $this->admUser["admin_type"];
			$target_fk = $this->admUser["target_fk"];
		
				
			$where = " WHERE status = 'Y' ";
				
			if($login_type != "1")
			{
				$where .= " AND group_fk = '{$target_fk}' ";
			}
				
			$addSelect = "";
			$addSelect .= " , IFNULL((SELECT G.name FROM tbl_user_group G WHERE G.no = U.group_fk AND G.status = 'Y' LIMIT 1), '') AS group_name ";
				
			if($member_type == "M")
			{
				$where .= " AND (U.member_type = '{$member_type}' OR U.member_type = 'H') ";
				// add all type
				//$addSelect .= " , IFNULL((SELECT G.name FROM tbl_user_group G WHERE G.no = U.group_fk AND G.status = 'Y' LIMIT 1), '') AS group_name ";
			}
				
			if($member_type == "V")
			{
				$where .= " AND (U.member_type = '{$member_type}' OR U.member_type = 'VH') ";
				// add all type
				//$addSelect .= " , IFNULL((SELECT G.name FROM tbl_user_group G WHERE G.no = U.group_fk AND G.status = 'Y' LIMIT 1), '') AS group_name ";
			}
				
			if($vip_status == 1){
				$where .= "AND U.vip_status = {$vip_status} ";
			}
				
			if($search_text != "")
				$where .= " AND ((U.id LIKE '%{$search_text}%' AND U.regi_type = 'E') OR U.tel LIKE '%{$search_text}%' OR U.name LIKE '%{$search_text}%' )";
					
		
		
				if($this->req["page"] != "-1")
				{
					//최초 페이지 설정
					$this->initPage() ;
		
					$sql = "
					SELECT COUNT(*) AS rn
					FROM tbl_user U
					{$where}
					";
		
					$this->rownum = $this->getValue($sql, 'rn');
		
					//총 로우수를 획득후 페이지 최종 설정
					$this->setPage($this->rownum) ;
		
					$limit = " LIMIT 0, 999999 ; ";
				}
		
				$sql = "
				SELECT
				U.*
				{$addSelect}
				FROM tbl_user U
				{$where}
				ORDER BY U.no DESC
				{$limit}
				";
					
				$result = $this->getArray($sql);
					
				//echo json_encode($result);
				return $result;
		}
		
		
		/**
		 * 멤버쉽 승인 거절 처리
		 * @return string
		 */
		function processRequestMemberShipUser()
		{
			
			$no = $this->req["no"];
			$member_type = $this->req["member_type"];
			
			$sql = "
				UPDATE tbl_user
				SET member_type = '{$member_type}'
				WHERE `no` = '{$no}'
			";
			$this->update($sql);
			
			// 포인트 충전되어야함
			if($member_type == "M")
			{
				$sql = "
					SELECT U.*, UG.group_point
					FROM tbl_user U
					JOIN tbl_user_group UG ON(U.group_fk = UG.no)
					WHERE U.no = '{$no}'
					LIMIT 1
				";
				$userInfo = $this->getRow($sql);
				
				if($userInfo != null && $userInfo["group_point"] > 0)
					$this->inFn_Common_savePointTrans("I", $no, $userInfo["group_point"], $userInfo["group_fk"], 0, $this->PAY_TYPE_ADMIN);
				
				$pushObj = new Push();
				$pushObj->pushFlag = $this->PUSH_TYPE_MS_OK;
				$pushObj->pushMessage = "멤버십 요청이 승인되었습니다.";
				$pushObj->sendPushOnce($userInfo);
				
				return $this->makeResultJson(1, "승인되었습니다.");
			}
			else if($member_type == 'V'){
				$pushObj = new Push();
				$pushObj->pushFlag = $this->PUSH_TYPE_V_OK;
				$pushObj->pushMessage = "VIP 요청이 승인되었습니다.";
				$pushObj->sendPushOnce($userInfo);
				
				return $this->makeResultJson(1, "VIP 승인되었습니다.");
			}
			else
			{
				$sql = "
					SELECT U.*
					FROM tbl_user U
					WHERE U.no = '{$no}'
					LIMIT 1
				";
				$userInfo = $this->getRow($sql);
				
				$pushObj = new Push();
				$pushObj->pushFlag = $this->PUSH_TYPE_MS_NO;
				$pushObj->pushMessage = "멤버십 회원으로 가입하기 위해서는 소속 회사나 단체에서 먼저 서비스 가입을 해야합니다.\n가입문의 @02-6376-0001# 그룹바이㈜";
				$pushObj->sendPushOnce($userInfo);
				
				return $this->makeResultJson(1, "거절되었습니다.");
			}
			
		}
		
		/**
		 * 회원 삭제
		 */
		function deleteUser()
		{
			$noArr = $this->req["no"];
				
			$noStr = implode(',', $noArr);
			
			$sql="
				SELECT no
				FROM tbl_building
				WHERE `vip_fk` IN({$noStr}) AND `status` = 'Y'
			";
			$result=$this->getArray($sql);
			
			for($i=0;$i<sizeof($result); $i++){
				$vipStr = implode(',', $result[$i]);
			}
			
			$sql="
			SELECT no
			FROM tbl_room
			WHERE `user_fk` IN({$noStr}) AND `status` = 'Y'
			";
			$result=$this->getArray($sql);
		
			for($i=0;$i<sizeof($result); $i++){
				$userStr = implode(',', $result[$i]);
			}

			if(!empty($vipStr)){
				$sql="
				UPDATE tbl_building
				SET vip_fk = 0, owner_name = NULL
				WHERE `no` IN({$vipStr})
				";
				$this->update($sql);
					
			}
			
			if(!empty($userStr)){
				$sql="
				UPDATE tbl_room
				SET user_fk = 0, contractor_name = NULL
				WHERE `no` IN({$userStr})
				";
				$this->update($sql);
			}
			
				
			$sql = "
				UPDATE tbl_user
				SET status = 'N'
				WHERE `no` IN({$noStr})
			";
			$this->update($sql);
		}


		// 회원 상세 정보
		function getInfoOfUser()
		{
			$no = $this->req["no"];

			$sql = "
				SELECT 
					U.*
					 , IFNULL((SELECT G.name FROM tbl_user_group G WHERE G.no = U.group_fk AND G.status = 'Y' LIMIT 1), '') AS group_name
				FROM tbl_user U
				WHERE U.no = '{$no}'
				LIMIT 1
			";

			$result = $this->getRow($sql);

			return $result;
		}



	} // class end
}
?>