companyView.php 8.31 KB
<? include $_SERVER["DOCUMENT_ROOT"] . "/common/classes/AdminCompany.php" ?>
<? include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/php/header.php" ?>
<? include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/php/leftCompanyManage.php" ?>
<?
	$obj		= new AdminCompany($_REQUEST, "");
	$info		= $obj->getInfoOfCompany();
	
	$provinceList = $obj->getListOfProvince();
	//$cateCodeList = $obj->getShopCategoryCodeList();
	//$shopImgList = $obj->getShopImgList($info["no"]);
	
	$admin_type = $obj->admUser["admin_type"]; 
	
	
	$rurl		= pack("H*", $_REQUEST["rurl"]) ;
?>
<script src="/admin/inc/fileUpload/fileUploadJS.js"></script>
<script type="text/javascript">
	var _rurl = "<?=$rurl?>";
	var _no = "<?=$_REQUEST[no]?>";

	$(document).ready(function(){

		initFileUpload(101);
		initFileUpload(102);
		initFileUpload(103);
		initFileUpload(104);
		initFileUpload(105);

		<?if($admin_type == 3) { ?>
			setReadOnly();
		<?} ?>
		//=====프레입웤 변수들==================================================================================//
		var FORM_TARGET_CLS_NM		= ".data"	;		// 폼을 동적 wrap 할 타겟 ID이름
		var FORM_NAME				= "alf"		;		// 폼이름
		var FORM_METHOD				= "POST"		;		// 폼 메쏘드
		var FORM_USE_FILE			= false		;		// 파일폼 사용 여부
		var FORM_ACTION				= "/action_front.php" ; 
		
		
		var NEXT_CMD				= ""		;		// 다은 수행 할 cmd
		//=====================================================================================================//

		var jForm = $(FORM_TARGET_CLS_NM).mf({ "name" : FORM_NAME , "method" : FORM_METHOD , "action" : FORM_ACTION , "useFile" : FORM_USE_FILE }) ;

		$(".jCancel").click2(function(){
			location.href = _rurl;
		});


		$(".jSave").click2(function(){
		
			if(confirm("저장하시겠습니까?")){
				$("#jData").ajaxSubmit({
					url:"/action_front.php?cmd=AdminCompany.saveCompany",
					type : "post",
					forceSync : true,
					dataType : "json",
					success : function(data){
						alert(data.returnMessage);
						location.href = _rurl;
					}

				});
			}
		});

		$("#jCategorCd").change(function(){
			setPromotion();
		});

		setPromotion();

	}) ;


	function setPromotion()
	{
		if($("#jCategorCd").val() == "1")
		{
			$("#jPromotionSelect").val("1");
			$("#jPromotionSelect").prop("disabled", true);
			$("#jPromotionHidden").prop("disabled", false);
		}
		else
		{
			$("#jPromotionSelect").prop("disabled", false);
			$("#jPromotionHidden").prop("disabled", true);
		}
	}

	function setReadOnly(){
		$("[name=name]").attr("readonly", true);
		$("[name=tel]").attr("readonly", true);
		$("[name=addr_old]").attr("readonly", true);
		$("[name=addr_new]").attr("readonly", true);
		$("[name=discount_rate]").attr("readonly", true);
		$("[name=discount_desc]").attr("readonly", true);
	}
</script>

<div id="Contents"  class="notice">

	<h1>업체 관리 -등록</h1>

	<!-- location area -->
	<h2>
		업체 관리 > 
		<?
		if($_REQUEST["productType"] == "WB")
			echo "윙바디";
		else
			echo "가변축"
		?>
		> 
		<span><?
		if($_REQUEST["no"]=="")
			echo "등록";
		else
			echo "상세보기";
		?></span>
	</h2>
	<!-- location area -->

	
	<div class="data" style="width:80%;">
		
		<form id="jData" method="post" enctype="multipart/form-data">
			<input type="hidden" name="companyNo" value="<?=$_REQUEST[companyNo]?>" />
			<input type="hidden" name="productCode" value="<?=$_REQUEST[productCode]?>" />
			<table class="datav" style="width:100%;">
				<colgroup>
					<col width="10%" />
					<col width="90%" />
				</colgroup>
				<tr>
					<th style="height:25px;">업체명</th>
					<td class="l">
						<input type="text" name="name" class="wl" style="width:70%;" value="<?=$info["name"]?>" />

					</td>
				</tr>
				<tr>
					<th style="height:25px;">지역</th>
					<td class="l">
						<select name="provinceCode">
							<option value="">선택</option>
							<? for($i=0; $i<sizeof($provinceList); $i++){ ?>
							<option value="<?=$provinceList[$i]["provinceNumber"]?>" <?=$info["provinceCode"] == $provinceList[$i]["provinceNumber"] ? "SELECTED" : ""?>><?=$provinceList[$i]["abbreviation"]?></option>
							<?}?>
						</select>
					</td>
				</tr>


				<tr>
					<th style="height:25px;">상세주소</th>
					<td class="l">
						<input type="text" name="address" class="wl" style="width:70%;" value="<?=$info["address"] ?>" />
					</td>
				</tr>
				
				<tr>
					<th style="height:25px;">전화번호</th>
					<td class="l">
						<input type="text" name="telephone1" style="width:50px" value="<?=substr($info["telephone"], 0, 3)?>"/>&nbsp;  -  &nbsp;
						<input type="text" name="telephone2" style="width:50px" value="<?=substr($info["telephone"], 3, 4)?>"/>&nbsp;  -  &nbsp;
						<input type="text" name="telephone3" style="width:50px" value="<?=substr($info["telephone"], 7, 4)?>"/>
					</td>
				</tr>
				<tr>
					<th style="height:25px;">FAX</th>
					<td class="l">
						<input type="text" name="fax1" style="width:50px" value="<?=substr($info["fax"], 0, 3)?>"/>&nbsp;  -  &nbsp;
						<input type="text" name="fax2" style="width:50px" value="<?=substr($info["fax"], 3, 4)?>"/>&nbsp;  -  &nbsp;
						<input type="text" name="fax3" style="width:50px" value="<?=substr($info["fax"], 7, 4)?>"/>
					</td>
				</tr>
				<tr>
					<th style="height:25px;">E-mail</th>
					<td class="l">
						<input type="text" name="eMail" class="wl" style="width:70%;" value="<?=$info["eMail"] ?>" />
					</td>
				</tr>
				<tr>
					<th style="height:25px;">주요 담당제품</th>
					<td class="l">
						<input type="text" name="companyProductList" class="wl" style="width:70%;" value="<?=$info["companyProductList"] ?>" />
					</td>
				</tr>

				<tr>
					<th style="height:25px;">이미지 1</th>
					<td class="l">
						<?
							$fileIndex	= "101";
							$fileName	= "imgPathCompany1";
							$filePath	= ($info["imgPathCompany1"] == "" ? "" : $info["imgPathCompany1"]);
							//$fileNumber	= ($shopImgList[0]["no"] == "" ? "0" : $shopImgList[0]["no"]);
							include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/fileUpload/fileUpload.php";
						?>
						<input type="hidden" name="imgPathCompany1" value="<?=$info["imgPathCompany1"]?>" />
					</td>
				</tr>
				<tr>
					<th style="height:25px;">이미지 2</th>
					<td class="l">
						<?
							$fileIndex	= "102";
							$fileName	= "imgPathCompany2";
							$filePath	= ($info["imgPathCompany2"] == "" ? "" : $info["imgPathCompany2"]);
							//$fileNumber	= ($shopImgList[1]["no"] == "" ? "0" : $shopImgList[1]["no"]);
							include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/fileUpload/fileUpload.php";
						?>
						<input type="hidden" name="imgPathCompany2" value="<?=$info["imgPathCompany2"]?>" />
					</td>
				</tr>
				<tr>
					<th style="height:25px;">이미지 3</th>
					<td class="l">
						<?
							$fileIndex	= "103";
							$fileName	= "imgPathCompany3";
							$filePath	= ($info["imgPathCompany3"] == "" ? "" : $info["imgPathCompany3"]);
							//$fileNumber	= ($shopImgList[2]["no"] == "" ? "0" : $shopImgList[2]["no"]);
							include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/fileUpload/fileUpload.php";
						?>
						<input type="hidden" name="imgPathCompany3" value="<?=$info["imgPathCompany3"]?>" />
					</td>
				</tr>
				<tr>
					<th style="height:25px;">이미지 4</th>
					<td class="l">
						<?
							$fileIndex	= "104";
							$fileName	= "imgPathCompany4";
							$filePath	= ($info["imgPathCompany4"] == "" ? "" : $info["imgPathCompany4"]);
							//$fileNumber	= ($shopImgList[3]["no"] == "" ? "0" : $shopImgList[3]["no"]);
							include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/fileUpload/fileUpload.php";
						?>
						<input type="hidden" name="imgPathCompany4" value="<?=$info["imgPathCompany4"]?>" />
					</td>
				</tr>
				<tr>
					<th style="height:25px;">이미지 5</th>
					<td class="l">
						<?
							$fileIndex	= "105";
							$fileName	= "imgPathCompany5";
							$filePath	= ($info["imgPathCompany5"] == "" ? "" : $info["imgPathCompany5"]);
							//$fileNumber	= ($shopImgList[4]["no"] == "" ? "0" : $shopImgList[4]["no"]);
							include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/fileUpload/fileUpload.php";
						?>
						<input type="hidden" name="imgPathCompany5" value="<?=$info["imgPathCompany5"]?>" />
					</td>
				</tr>
			</table>
		</form>
		
		<div class="btngroupcenter">
			<span class="button bigrounded blue jCancel">취소 </span>
			<span class="button bigrounded blue jSave" >저장</span>
		</div>

	</div>
</div>