5.3 버전 내용 적용
This commit is contained in:
@ -154,9 +154,9 @@ include_once (G5_ADMIN_PATH.'/admin.head.php');
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div class="btn_confirm01 btn_confirm">
|
||||
<input type="submit" value="확인" class="btn_submit" accesskey="s">
|
||||
<a href="./bannerlist.php">목록</a>
|
||||
<div class="btn_fixed_top">
|
||||
<a href="./bannerlist.php" class="btn_02 btn">목록</a>
|
||||
<input type="submit" value="확인" class="btn_submit btn" accesskey="s">
|
||||
</div>
|
||||
|
||||
</form>
|
||||
|
||||
@ -21,14 +21,14 @@ $from_record = ($page - 1) * $rows; // 시작 열을 구함
|
||||
?>
|
||||
|
||||
<div class="local_ov01 local_ov">
|
||||
등록된 배너 <?php echo $total_count; ?>개
|
||||
<span class="btn_ov01"><span class="ov_txt"> 등록된 배너 </span><span class="ov_num"> <?php echo $total_count; ?>개</span></span>
|
||||
</div>
|
||||
|
||||
<div class="btn_add01 btn_add">
|
||||
<a href="./bannerform.php">배너추가</a>
|
||||
<div class="btn_fixed_top">
|
||||
<a href="./bannerform.php" class="btn_01 btn">배너추가</a>
|
||||
</div>
|
||||
|
||||
<div class="tbl_head02 tbl_wrap">
|
||||
<div class="tbl_head01 tbl_wrap">
|
||||
<table>
|
||||
<caption><?php echo $g5['title']; ?> 목록</caption>
|
||||
<thead>
|
||||
@ -67,9 +67,8 @@ $from_record = ($page - 1) * $rows; // 시작 열을 구함
|
||||
$width = $size[0];
|
||||
|
||||
$bn_img = "";
|
||||
if ($row['bn_url'] && $row['bn_url'] != "http://")
|
||||
$bn_img .= '<a href="'.$row['bn_url'].'" '.$bn_new_win.'>';
|
||||
$bn_img .= '<img src="'.G5_DATA_URL.'/banner/'.$row['bn_id'].'" width="'.$width.'" alt="'.$row['bn_alt'].'"></a>';
|
||||
|
||||
$bn_img .= '<img src="'.G5_DATA_URL.'/banner/'.$row['bn_id'].'" width="'.$width.'" alt="'.$row['bn_alt'].'">';
|
||||
}
|
||||
|
||||
switch($row['bn_device']) {
|
||||
@ -98,9 +97,9 @@ $from_record = ($page - 1) * $rows; // 시작 열을 구함
|
||||
<td headers="th_end" class="td_datetime"><?php echo $bn_end_time; ?></td>
|
||||
<td headers="th_odr" class="td_num"><?php echo $row['bn_order']; ?></td>
|
||||
<td headers="th_hit" class="td_num"><?php echo $row['bn_hit']; ?></td>
|
||||
<td headers="th_mng" class="td_mngsmall">
|
||||
<a href="./bannerform.php?w=u&bn_id=<?php echo $row['bn_id']; ?>">수정</a></li>
|
||||
<a href="./bannerformupdate.php?w=d&bn_id=<?php echo $row['bn_id']; ?>" onclick="return delete_confirm(this);">삭제</a>
|
||||
<td headers="th_mng" class="td_mng td_mns_m">
|
||||
<a href="./bannerform.php?w=u&bn_id=<?php echo $row['bn_id']; ?>" class="btn btn_03">수정</a>
|
||||
<a href="./bannerformupdate.php?w=d&bn_id=<?php echo $row['bn_id']; ?>" onclick="return delete_confirm(this);" class="btn btn_02">삭제</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="<?php echo $bg; ?>">
|
||||
|
||||
@ -84,11 +84,6 @@ $pg_anchor ='<ul class="anchor">
|
||||
if ($w == 'u') $pg_anchor .= '<li><a href="#frm_etc">기타설정</a></li>';
|
||||
$pg_anchor .= '</ul>';
|
||||
|
||||
$frm_submit = '<div class="btn_confirm01 btn_confirm">
|
||||
<input type="submit" value="확인" class="btn_submit" accesskey="s">
|
||||
<a href="./categorylist.php?'.$qstr.'">목록</a>
|
||||
</div>';
|
||||
|
||||
// 쿠폰 적용 불가 설정 필드 추가
|
||||
if(!sql_query(" select ca_nocoupon from {$g5['g5_shop_category_table']} limit 1 ", false)) {
|
||||
sql_query(" ALTER TABLE `{$g5['g5_shop_category_table']}`
|
||||
@ -198,13 +193,13 @@ else {
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><label for="ca_skin_dir">PC용 스킨명</label></th>
|
||||
<td colspan="3">
|
||||
<td>
|
||||
<?php echo get_skin_select('shop', 'ca_skin_dir', 'ca_skin_dir', $ca['ca_skin_dir']); ?>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><label for="ca_mobile_skin_dir">모바일용 스킨명</label></th>
|
||||
<td colspan="3">
|
||||
<td>
|
||||
<?php echo get_mobile_skin_select('shop', 'ca_mobile_skin_dir', 'ca_mobile_skin_dir', $ca['ca_mobile_skin_dir']); ?>
|
||||
</td>
|
||||
</tr>
|
||||
@ -333,9 +328,9 @@ else {
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<button type="button" class="shop_category btn_02 btn">테마설정 가져오기</button>
|
||||
</section>
|
||||
|
||||
<?php echo preg_replace('#</div>$#i', '<button type="button" class="shop_category">테마설정 가져오기</button></div>', $frm_submit); ?>
|
||||
|
||||
<section id="anc_scatefrm_optional">
|
||||
<h2 class="h2_frm">선택 입력</h2>
|
||||
@ -396,7 +391,6 @@ else {
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<?php echo $frm_submit; ?>
|
||||
|
||||
<section id="anc_scatefrm_extra">
|
||||
<h2>여분필드 설정</h2>
|
||||
@ -425,7 +419,6 @@ else {
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<?php echo $frm_submit; ?>
|
||||
|
||||
<?php if ($w == "u") { ?>
|
||||
<section id="frm_etc">
|
||||
@ -452,9 +445,12 @@ else {
|
||||
</table>
|
||||
</div>
|
||||
</section>
|
||||
<?php echo $frm_submit; ?>
|
||||
<?php } ?>
|
||||
|
||||
<?php } ?>
|
||||
<div class="btn_fixed_top">
|
||||
<input type="submit" value="확인" class="btn_submit btn" accesskey="s">
|
||||
<a href="./categorylist.php?'.$qstr.'" class="btn_02 btn">목록</a>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
<script>
|
||||
|
||||
@ -53,7 +53,7 @@ $listall = '<a href="'.$_SERVER['SCRIPT_NAME'].'" class="ov_listall">전체목
|
||||
|
||||
<div class="local_ov01 local_ov">
|
||||
<?php echo $listall; ?>
|
||||
생성된 분류 수 <?php echo number_format($total_count); ?>개
|
||||
<span class="btn_ov01"><span class="ov_txt">생성된 분류 수</span><span class="ov_num"> <?php echo number_format($total_count); ?>개</span></span>
|
||||
</div>
|
||||
|
||||
<form name="flist" class="local_sch01 local_sch">
|
||||
@ -73,12 +73,6 @@ $listall = '<a href="'.$_SERVER['SCRIPT_NAME'].'" class="ov_listall">전체목
|
||||
|
||||
</form>
|
||||
|
||||
<?php if ($is_admin == 'super') {?>
|
||||
<div class="btn_add01 btn_add">
|
||||
<a href="./categoryform.php" id="cate_add">분류 추가</a>
|
||||
</div>
|
||||
<?php } ?>
|
||||
|
||||
<form name="fcategorylist" method="post" action="./categorylistupdate.php" autocomplete="off">
|
||||
<input type="hidden" name="sst" value="<?php echo $sst; ?>">
|
||||
<input type="hidden" name="sod" value="<?php echo $sod; ?>">
|
||||
@ -86,7 +80,7 @@ $listall = '<a href="'.$_SERVER['SCRIPT_NAME'].'" class="ov_listall">전체목
|
||||
<input type="hidden" name="stx" value="<?php echo $stx; ?>">
|
||||
<input type="hidden" name="page" value="<?php echo $page; ?>">
|
||||
|
||||
<div id="sct" class="tbl_head02 tbl_wrap">
|
||||
<div id="sct" class="tbl_head01 tbl_wrap">
|
||||
<table>
|
||||
<caption><?php echo $g5['title']; ?> 목록</caption>
|
||||
<thead>
|
||||
@ -94,20 +88,20 @@ $listall = '<a href="'.$_SERVER['SCRIPT_NAME'].'" class="ov_listall">전체목
|
||||
<th scope="col" rowspan="2"><?php echo subject_sort_link("ca_id"); ?>분류코드</a></th>
|
||||
<th scope="col" id="sct_cate"><?php echo subject_sort_link("ca_name"); ?>분류명</a></th>
|
||||
<th scope="col" id="sct_amount">상품수</th>
|
||||
<th scope="col" id="sct_hpcert">본인인증</th>
|
||||
<th scope="col" id="sct_imgw">이미지 폭</th>
|
||||
<th scope="col" id="sct_imgh">이미지 높이</th>
|
||||
<th scope="col" id="sct_imgcol">1행이미지수</th>
|
||||
<th scope="col" id="sct_mobileimg">모바일 1행이미지수</th>
|
||||
<th scope="col" id="sct_mobileimg">모바일<br>1행이미지수</th>
|
||||
<th scope="col" id="sct_pcskin">PC스킨지정</th>
|
||||
<th scope="col" rowspan="2">관리</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="col" id="sct_admin"><?php echo subject_sort_link("ca_mb_id"); ?>관리회원아이디</a></th>
|
||||
<th scope="col" id="sct_sell"><?php echo subject_sort_link("ca_use"); ?>판매가능</a></th>
|
||||
<th scope="col" id="sct_hpcert">본인인증</th>
|
||||
<th scope="col" id="sct_adultcert">성인인증</th>
|
||||
<th scope="col" id="sct_imgh">이미지 높이</th>
|
||||
<th scope="col" id="sct_imgrow">이미지 행수</th>
|
||||
<th scope="col" id="sct_mobilerow">모바일 이미지 행수</th>
|
||||
<th scope="col" id="sct_mobilerow">모바일<br>이미지 행수</th>
|
||||
<th scope="col" id="sct_mskin">모바일스킨지정</th>
|
||||
</tr>
|
||||
</thead>
|
||||
@ -132,12 +126,12 @@ $listall = '<a href="'.$_SERVER['SCRIPT_NAME'].'" class="ov_listall">전체목
|
||||
$s_level = '<div><label for="ca_name_'.$i.'" '.$class.'><span class="sound_only">'.$p_ca_name.''.($level+1).'단 분류</span></label></div>';
|
||||
$s_level_input_size = 25 - $level *2; // 하위 분류일 수록 입력칸 넓이 작아짐 - 지운아빠 2013-04-02
|
||||
|
||||
if ($level+2 < 6) $s_add = '<a href="./categoryform.php?ca_id='.$row['ca_id'].'&'.$qstr.'">추가</a> '; // 분류는 5단계까지만 가능
|
||||
if ($level+2 < 6) $s_add = '<a href="./categoryform.php?ca_id='.$row['ca_id'].'&'.$qstr.'" class="btn btn_03">추가</a> '; // 분류는 5단계까지만 가능
|
||||
else $s_add = '';
|
||||
$s_upd = '<a href="./categoryform.php?w=u&ca_id='.$row['ca_id'].'&'.$qstr.'"><span class="sound_only">'.get_text($row['ca_name']).' </span>수정</a> ';
|
||||
$s_upd = '<a href="./categoryform.php?w=u&ca_id='.$row['ca_id'].'&'.$qstr.'" class="btn btn_02"><span class="sound_only">'.get_text($row['ca_name']).' </span>수정</a> ';
|
||||
|
||||
if ($is_admin == 'super')
|
||||
$s_del = '<a href="./categoryformupdate.php?w=d&ca_id='.$row['ca_id'].'&'.$qstr.'" onclick="return delete_confirm(this);"><span class="sound_only">'.get_text($row['ca_name']).' </span>삭제</a> ';
|
||||
$s_del = '<a href="./categoryformupdate.php?w=d&ca_id='.$row['ca_id'].'&'.$qstr.'" onclick="return delete_confirm(this);" class="btn btn_02"><span class="sound_only">'.get_text($row['ca_name']).' </span>삭제</a> ';
|
||||
|
||||
// 해당 분류에 속한 상품의 수
|
||||
$sql1 = " select COUNT(*) as cnt from {$g5['g5_shop_item_table']}
|
||||
@ -172,25 +166,26 @@ $listall = '<a href="'.$_SERVER['SCRIPT_NAME'].'" class="ov_listall">전체목
|
||||
<input type="hidden" name="ca_id[<?php echo $i; ?>]" value="<?php echo $row['ca_id']; ?>">
|
||||
<a href="<?php echo G5_SHOP_URL; ?>/list.php?ca_id=<?php echo $row['ca_id']; ?>"><?php echo $row['ca_id']; ?></a>
|
||||
</td>
|
||||
<td headers="sct_cate" class="sct_name sct_name<?php echo $level; ?>"><?php echo $s_level; ?> <input type="text" name="ca_name[<?php echo $i; ?>]" value="<?php echo get_text($row['ca_name']); ?>" id="ca_name_<?php echo $i; ?>" required class="frm_input full_input required"></td>
|
||||
<td headers="sct_cate" class="sct_name<?php echo $level; ?>"><?php echo $s_level; ?> <input type="text" name="ca_name[<?php echo $i; ?>]" value="<?php echo get_text($row['ca_name']); ?>" id="ca_name_<?php echo $i; ?>" required class="tbl_input full_input required"></td>
|
||||
<td headers="sct_amount" class="td_amount"><a href="./itemlist.php?sca=<?php echo $row['ca_id']; ?>"><?php echo $row1['cnt']; ?></a></td>
|
||||
<td headers="sct_imgw" class="td_output">
|
||||
<td headers="sct_hpcert" class="td_possible">
|
||||
<input type="checkbox" name="ca_cert_use[<?php echo $i; ?>]" value="1" id="ca_cert_use_yes<?php echo $i; ?>" <?php if($row['ca_cert_use']) echo 'checked="checked"'; ?>>
|
||||
<label for="ca_cert_use_yes<?php echo $i; ?>">사용</label>
|
||||
</td>
|
||||
<td headers="sct_imgw">
|
||||
<label for="ca_out_width<?php echo $i; ?>" class="sound_only">출력이미지 폭</label>
|
||||
<input type="text" name="ca_img_width[<?php echo $i; ?>]" value="<?php echo get_text($row['ca_img_width']); ?>" id="ca_out_width<?php echo $i; ?>" required class="required frm_input" size="3" > <span class="sound_only">픽셀</span>
|
||||
<input type="text" name="ca_img_width[<?php echo $i; ?>]" value="<?php echo get_text($row['ca_img_width']); ?>" id="ca_out_width<?php echo $i; ?>" required class="required tbl_input" size="3" > <span class="sound_only">픽셀</span>
|
||||
</td>
|
||||
<td headers="sct_imgh" class="td_output">
|
||||
<label for="ca_img_height<?php echo $i; ?>" class="sound_only">출력이미지 높이</label>
|
||||
<input type="text" name="ca_img_height[<?php echo $i; ?>]" value="<?php echo $row['ca_img_height']; ?>" id="ca_img_height<?php echo $i; ?>" required class="required frm_input" size="3" > <span class="sound_only">픽셀</span>
|
||||
</td>
|
||||
<td headers="sct_imgcol" class="td_imgline">
|
||||
|
||||
<td headers="sct_imgcol">
|
||||
<label for="ca_lineimg_num<?php echo $i; ?>" class="sound_only">1줄당 이미지 수</label>
|
||||
<input type="text" name="ca_list_mod[<?php echo $i; ?>]" size="3" value="<?php echo $row['ca_list_mod']; ?>" id="ca_lineimg_num<?php echo $i; ?>" required class="required frm_input"> <span class="sound_only">개</span>
|
||||
<input type="text" name="ca_list_mod[<?php echo $i; ?>]" size="3" value="<?php echo $row['ca_list_mod']; ?>" id="ca_lineimg_num<?php echo $i; ?>" required class="required tbl_input"> <span class="sound_only">개</span>
|
||||
</td>
|
||||
<td headers="sct_mobileimg" class="td_output">
|
||||
<td headers="sct_mobileimg">
|
||||
<label for="ca_mobileimg_num<?php echo $i; ?>" class="sound_only">모바일 1줄당 이미지 수</label>
|
||||
<input type="text" name="ca_mobile_list_mod[<?php echo $i; ?>]" size="3" value="<?php echo $row['ca_mobile_list_mod']; ?>" id="ca_mobileimg_num<?php echo $i; ?>" required class="required frm_input"> <span class="sound_only">개</span>
|
||||
<input type="text" name="ca_mobile_list_mod[<?php echo $i; ?>]" size="3" value="<?php echo $row['ca_mobile_list_mod']; ?>" id="ca_mobileimg_num<?php echo $i; ?>" required class="required tbl_input"> <span class="sound_only">개</span>
|
||||
</td>
|
||||
<td headers="sct_pcskin">
|
||||
<td headers="sct_pcskin" class="sct_pcskin">
|
||||
<label for="ca_skin_dir<?php echo $i; ?>" class="sound_only">PC스킨폴더</label>
|
||||
<?php echo get_skin_select('shop', 'ca_skin_dir'.$i, 'ca_skin_dir['.$i.']', $row['ca_skin_dir'], 'class="skin_dir"'); ?>
|
||||
<label for="ca_skin<?php echo $i; ?>" class="sound_only">PC스킨파일</label>
|
||||
@ -198,7 +193,7 @@ $listall = '<a href="'.$_SERVER['SCRIPT_NAME'].'" class="ov_listall">전체목
|
||||
<?php echo get_list_skin_options("^list.[0-9]+\.skin\.php", $g5_shop_skin_path, $row['ca_skin']); ?>
|
||||
</select>
|
||||
</td>
|
||||
<td class="td_mng" rowspan="2">
|
||||
<td class="td_mng td_mng_s" rowspan="2">
|
||||
<?php echo $s_add; ?>
|
||||
<?php echo $s_vie; ?>
|
||||
<?php echo $s_upd; ?>
|
||||
@ -206,10 +201,10 @@ $listall = '<a href="'.$_SERVER['SCRIPT_NAME'].'" class="ov_listall">전체목
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="<?php echo $bg; ?>">
|
||||
<td headers="sct_admin" class="td_mng">
|
||||
<td headers="sct_admin">
|
||||
<?php if ($is_admin == 'super') {?>
|
||||
<label for="ca_mb_id<?php echo $i; ?>" class="sound_only">관리회원아이디</label>
|
||||
<input type="text" name="ca_mb_id[<?php echo $i; ?>]" value="<?php echo $row['ca_mb_id']; ?>" id="ca_mb_id<?php echo $i; ?>" class="frm_input full_input" size="15" maxlength="20">
|
||||
<input type="text" name="ca_mb_id[<?php echo $i; ?>]" value="<?php echo $row['ca_mb_id']; ?>" id="ca_mb_id<?php echo $i; ?>" class="tbl_input full_input" size="15" maxlength="20">
|
||||
<?php } else { ?>
|
||||
<input type="hidden" name="ca_mb_id[<?php echo $i; ?>]" value="<?php echo $row['ca_mb_id']; ?>">
|
||||
<?php echo $row['ca_mb_id']; ?>
|
||||
@ -219,23 +214,24 @@ $listall = '<a href="'.$_SERVER['SCRIPT_NAME'].'" class="ov_listall">전체목
|
||||
<input type="checkbox" name="ca_use[<?php echo $i; ?>]" value="1" id="ca_use<?php echo $i; ?>" <?php echo ($row['ca_use'] ? "checked" : ""); ?>>
|
||||
<label for="ca_use<?php echo $i; ?>">판매</label>
|
||||
</td>
|
||||
<td headers="sct_hpcert" class="td_confirm">
|
||||
<input type="checkbox" name="ca_cert_use[<?php echo $i; ?>]" value="1" id="ca_cert_use_yes<?php echo $i; ?>" <?php if($row['ca_cert_use']) echo 'checked="checked"'; ?>>
|
||||
<label for="ca_cert_use_yes<?php echo $i; ?>">사용</label>
|
||||
</td>
|
||||
<td headers="sct_adultcert" class="td_confirm">
|
||||
|
||||
<td headers="sct_adultcert" class="td_possible">
|
||||
<input type="checkbox" name="ca_adult_use[<?php echo $i; ?>]" value="1" id="ca_adult_use_yes<?php echo $i; ?>" <?php if($row['ca_adult_use']) echo 'checked="checked"'; ?>>
|
||||
<label for="ca_adult_use_yes<?php echo $i; ?>">사용</label>
|
||||
</td>
|
||||
<td headers="sct_imgrow" class="td_imgline">
|
||||
<td headers="sct_imgh">
|
||||
<label for="ca_img_height<?php echo $i; ?>" class="sound_only">출력이미지 높이</label>
|
||||
<input type="text" name="ca_img_height[<?php echo $i; ?>]" value="<?php echo $row['ca_img_height']; ?>" id="ca_img_height<?php echo $i; ?>" required class="required tbl_input" size="3" > <span class="sound_only">픽셀</span>
|
||||
</td>
|
||||
<td headers="sct_imgrow">
|
||||
<label for="ca_imgline_num<?php echo $i; ?>" class="sound_only">이미지 줄 수</label>
|
||||
<input type="text" name="ca_list_row[<?php echo $i; ?>]" value='<?php echo $row['ca_list_row']; ?>' id="ca_imgline_num<?php echo $i; ?>" required class="required frm_input" size="3"> <span class="sound_only">줄</span>
|
||||
<input type="text" name="ca_list_row[<?php echo $i; ?>]" value='<?php echo $row['ca_list_row']; ?>' id="ca_imgline_num<?php echo $i; ?>" required class="required tbl_input" size="3"> <span class="sound_only">줄</span>
|
||||
</td>
|
||||
<td headers="sct_mobilerow" class="td_output">
|
||||
<td headers="sct_mobilerow">
|
||||
<label for="ca_mobileimg_row<?php echo $i; ?>" class="sound_only">모바일 이미지 줄 수</label>
|
||||
<input type="text" name="ca_mobile_list_row[<?php echo $i; ?>]" value='<?php echo $row['ca_mobile_list_row']; ?>' id="ca_mobileimg_row<?php echo $i; ?>" required class="required frm_input" size="3">
|
||||
<input type="text" name="ca_mobile_list_row[<?php echo $i; ?>]" value='<?php echo $row['ca_mobile_list_row']; ?>' id="ca_mobileimg_row<?php echo $i; ?>" required class="required tbl_input" size="3">
|
||||
</td>
|
||||
<td headers="sct_mskin">
|
||||
<td headers="sct_mskin" class="sct_mskin">
|
||||
<label for="ca_mobile_skin_dir<?php echo $i; ?>" class="sound_only">모바일스킨폴더</label>
|
||||
<?php echo get_mobile_skin_select('shop', 'ca_mobile_skin_dir'.$i, 'ca_mobile_skin_dir['.$i.']', $row['ca_mobile_skin_dir'], 'class="skin_dir"'); ?>
|
||||
<label for="ca_mobile_skin<?php echo $i; ?>" class="sound_only">모바일스킨파일</label>
|
||||
@ -251,8 +247,12 @@ $listall = '<a href="'.$_SERVER['SCRIPT_NAME'].'" class="ov_listall">전체목
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div class="btn_list01 btn_list">
|
||||
<input type="submit" value="일괄수정">
|
||||
<div class="btn_fixed_top">
|
||||
<input type="submit" value="일괄수정" class="btn_02 btn">
|
||||
|
||||
<?php if ($is_admin == 'super') {?>
|
||||
<a href="./categoryform.php" id="cate_add" class="btn btn_01">분류 추가</a>
|
||||
<?php } ?>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -151,9 +151,9 @@ include_once(G5_PLUGIN_PATH.'/jquery-ui/datepicker.php');
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div class="btn_confirm01 btn_confirm">
|
||||
<input type="submit" value="확인" class="btn_submit" accesskey="s">
|
||||
<a href="./couponlist.php">목록</a>
|
||||
<div class="btn_fixed_top">
|
||||
<a href="./couponlist.php" class="btn btn_02">목록</a>
|
||||
<input type="submit" value="확인" class="btn_submit btn" accesskey="s">
|
||||
</div>
|
||||
|
||||
</form>
|
||||
|
||||
@ -50,11 +50,11 @@ include_once (G5_ADMIN_PATH.'/admin.head.php');
|
||||
|
||||
$colspan = 9;
|
||||
?>
|
||||
|
||||
<div class="local_ov">
|
||||
<span class="btn_ov01"><span class="ov_txt">전체 </span><span class="ov_num"> <?php echo number_format($total_count) ?> 개</span></span>
|
||||
</div>
|
||||
<form name="fsearch" id="fsearch" class="local_sch01 local_sch" method="get">
|
||||
<span>
|
||||
전체 <?php echo number_format($total_count) ?> 개
|
||||
</span>
|
||||
|
||||
<select name="sfl" title="검색대상">
|
||||
<option value="mb_id"<?php echo get_selected($_GET['sfl'], "mb_id"); ?>>회원아이디</option>
|
||||
<option value="cp_subject"<?php echo get_selected($_GET['sfl'], "cp_subject"); ?>>쿠폰이름</option>
|
||||
@ -65,9 +65,7 @@ $colspan = 9;
|
||||
<input type="submit" class="btn_submit" value="검색">
|
||||
</form>
|
||||
|
||||
<div class="btn_add01 btn_add">
|
||||
<a href="./couponform.php" id="coupon_add">쿠폰 추가</a>
|
||||
</div>
|
||||
|
||||
|
||||
<form name="fcouponlist" id="fcouponlist" method="post" action="./couponlist_delete.php" onsubmit="return fcouponlist_submit(this);">
|
||||
<input type="hidden" name="sst" value="<?php echo $sst; ?>">
|
||||
@ -140,13 +138,13 @@ $colspan = 9;
|
||||
</td>
|
||||
<td><?php echo $cp_method; ?></td>
|
||||
<td><?php echo $row['cp_id']; ?></td>
|
||||
<td><?php echo $row['cp_subject']; ?></td>
|
||||
<td class="td_left"><?php echo $row['cp_subject']; ?></td>
|
||||
<td><?php echo $cp_target; ?></td>
|
||||
<td class="td_name sv_use"><div><?php echo $row['mb_id']; ?></div></td>
|
||||
<td class="td_datetime"><?php echo substr($row['cp_start'], 2, 8); ?> ~ <?php echo substr($row['cp_end'], 2, 8); ?></td>
|
||||
<td class="td_cntsmall"><?php echo number_format($used_count); ?></td>
|
||||
<td class="td_mngsmall">
|
||||
<a href="./couponform.php?w=u&cp_id=<?php echo $row['cp_id']; ?>&<?php echo $qstr; ?>"><span class="sound_only"><?php echo $row['cp_id']; ?> </span>수정</a>
|
||||
<td class="td_mng td_mng_s">
|
||||
<a href="./couponform.php?w=u&cp_id=<?php echo $row['cp_id']; ?>&<?php echo $qstr; ?>" class="btn btn_03"><span class="sound_only"><?php echo $row['cp_id']; ?> </span>수정</a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
@ -159,9 +157,9 @@ $colspan = 9;
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div class="btn_list01 btn_list">
|
||||
<input type="submit" name="act_button" value="선택삭제" onclick="document.pressed=this.value">
|
||||
<div class="btn_fixed_top">
|
||||
<input type="submit" name="act_button" value="선택삭제" onclick="document.pressed=this.value" class="btn btn_02">
|
||||
<a href="./couponform.php" id="coupon_add" class="btn btn_01">쿠폰 추가</a>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
|
||||
@ -44,7 +44,7 @@ $qstr1 = 'mb_name='.$_GET['mb_name'];
|
||||
<input type="text" name="mb_name" id="mb_name" value="<?php echo $mb_name; ?>" class="frm_input required" required size="20">
|
||||
<input type="submit" value="검색" class="btn_frmline">
|
||||
</div>
|
||||
<div class="tbl_head01 tbl_wrap">
|
||||
<div class="tbl_head01 tbl_wrap new_win_con">
|
||||
<table>
|
||||
<caption>검색결과</caption>
|
||||
<thead>
|
||||
@ -60,8 +60,8 @@ $qstr1 = 'mb_name='.$_GET['mb_name'];
|
||||
?>
|
||||
<tr>
|
||||
<td class="td_mbname"><?php echo get_text($row['mb_name']); ?></td>
|
||||
<td><?php echo $row['mb_id']; ?></td>
|
||||
<td class="scp_find_select"><button type="button" class="btn_frmline" onclick="sel_member_id('<?php echo $row['mb_id']; ?>');">선택</button></td>
|
||||
<td class="td_left"><?php echo $row['mb_id']; ?></td>
|
||||
<td class="scp_find_select td_mng td_mng_s"><button type="button" class="btn btn_03" onclick="sel_member_id('<?php echo $row['mb_id']; ?>');">선택</button></td>
|
||||
</tr>
|
||||
<?php
|
||||
}
|
||||
@ -76,8 +76,8 @@ $qstr1 = 'mb_name='.$_GET['mb_name'];
|
||||
|
||||
<?php echo get_paging(G5_IS_MOBILE ? $config['cf_mobile_pages'] : $config['cf_write_pages'], $page, $total_page, '?'.$qstr1.'&page='); ?>
|
||||
|
||||
<div class="btn_confirm01 btn_confirm">
|
||||
<button type="button" onclick="window.close();">닫기</button>
|
||||
<div class="btn_confirm01 btn_confirm win_btn">
|
||||
<button type="button" onclick="window.close();" class="btn_close btn">닫기</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
@ -74,8 +74,8 @@ $qstr1 = 'sch_target='.$sch_target.'&sch_word='.urlencode($sch_word);
|
||||
<input type="text" name="sch_word" id="sch_word" value="<?php echo get_text($sch_word); ?>" class="frm_input required" required size="20">
|
||||
<input type="submit" value="검색" class="btn_frmline">
|
||||
</div>
|
||||
|
||||
<div class="tbl_head01 tbl_wrap">
|
||||
|
||||
<div class="tbl_head01 tbl_wrap new_win_con">
|
||||
<table>
|
||||
<caption>검색결과</caption>
|
||||
<thead>
|
||||
@ -90,9 +90,9 @@ $qstr1 = 'sch_target='.$sch_target.'&sch_word='.urlencode($sch_word);
|
||||
for($i=0; $row=sql_fetch_array($result); $i++) {
|
||||
?>
|
||||
<tr>
|
||||
<td><?php echo $row['t_name']; ?></td>
|
||||
<td class="td_left"><?php echo $row['t_name']; ?></td>
|
||||
<td class="scp_target_code"><?php echo $row['t_id']; ?></td>
|
||||
<td class="scp_target_select"><button type="button" class="btn_frmline" onclick="sel_target_id('<?php echo $row['t_id']; ?>');">선택</button>
|
||||
<td class="td_mng td_mng_s"><button type="button" class="btn btn_03" onclick="sel_target_id('<?php echo $row['t_id']; ?>');">선택</button>
|
||||
</tr>
|
||||
<?php
|
||||
}
|
||||
@ -107,8 +107,8 @@ $qstr1 = 'sch_target='.$sch_target.'&sch_word='.urlencode($sch_word);
|
||||
|
||||
<?php echo get_paging(G5_IS_MOBILE ? $config['cf_mobile_pages'] : $config['cf_write_pages'], $page, $total_page, '?'.$qstr1.'&page='); ?>
|
||||
|
||||
<div class="btn_confirm01 btn_confirm">
|
||||
<button type="button" onclick="window.close();">닫기</button>
|
||||
<div class="btn_confirm01 btn_confirm win_btn">
|
||||
<button type="button" onclick="window.close();" class="btn">닫기</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
@ -176,9 +176,9 @@ include_once(G5_PLUGIN_PATH.'/jquery-ui/datepicker.php');
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div class="btn_confirm01 btn_confirm">
|
||||
<input type="submit" value="확인" class="btn_submit" accesskey="s">
|
||||
<a href="./couponzonelist.php?<?php echo $qstr; ?>">목록</a>
|
||||
<div class="btn_fixed_top">
|
||||
<a href="./couponzonelist.php?<?php echo $qstr; ?>" class="btn_02 btn">목록</a>
|
||||
<input type="submit" value="확인" class="btn_submit btn" accesskey="s">
|
||||
</div>
|
||||
|
||||
</form>
|
||||
|
||||
@ -42,18 +42,16 @@ include_once (G5_ADMIN_PATH.'/admin.head.php');
|
||||
$colspan = 9;
|
||||
?>
|
||||
|
||||
<div class="local_ov">
|
||||
<span class="btn_ov01"><span class="ov_txt">전체 </span><span class="ov_num"> <?php echo number_format($total_count) ?> 개</span></span>
|
||||
</div>
|
||||
<form name="fsearch" id="fsearch" class="local_sch01 local_sch" method="get">
|
||||
<span>
|
||||
전체 <?php echo number_format($total_count) ?> 개
|
||||
</span>
|
||||
|
||||
<label for="stx" class="sound_only">검색어<strong class="sound_only"> 필수</strong></label>
|
||||
<input type="text" name="stx" value="<?php echo $stx ?>" id="stx" required class="required frm_input">
|
||||
<input type="submit" class="btn_submit" value="검색">
|
||||
</form>
|
||||
|
||||
<div class="btn_add01 btn_add">
|
||||
<a href="./couponzoneform.php" id="coupon_add">쿠폰 추가</a>
|
||||
</div>
|
||||
|
||||
<form name="fcouponlist" id="fcouponzonelist" method="post" action="./couponzonelist_delete.php" onsubmit="return fcouponzonelist_submit(this);">
|
||||
<input type="hidden" name="stx" value="<?php echo $stx; ?>">
|
||||
@ -127,15 +125,15 @@ $colspan = 9;
|
||||
<input type="hidden" id="cz_id_<?php echo $i; ?>" name="cz_id[<?php echo $i; ?>]" value="<?php echo $row['cz_id']; ?>">
|
||||
<input type="checkbox" id="chk_<?php echo $i; ?>" name="chk[]" value="<?php echo $i; ?>" title="내역선택">
|
||||
</td>
|
||||
<td><?php echo get_text($row['cz_subject']); ?></td>
|
||||
<td class="td_left"><?php echo get_text($row['cz_subject']); ?></td>
|
||||
<td class="td_type"><?php echo $cz_type; ?></td>
|
||||
<td class="td_type"><?php echo $cp_method; ?></td>
|
||||
<td class="td_odrnum2"><?php echo $cp_price; ?></td>
|
||||
<td class="td_type">다운로드 후 <?php echo $row['cz_period']; ?>일</td>
|
||||
<td class="td_num"><?php echo number_format($row['cz_download']); ?></td>
|
||||
<td class="td_datetime"><?php echo substr($row['cz_start'], 2, 8); ?> ~ <?php echo substr($row['cz_end'], 2, 8); ?></td>
|
||||
<td class="td_mngsmall">
|
||||
<a href="./couponzoneform.php?w=u&cz_id=<?php echo $row['cz_id']; ?>&<?php echo $qstr; ?>"><span class="sound_only"><?php echo get_text($row['cz_subject']); ?> </span>수정</a>
|
||||
<td class="td_mng td_mng_s">
|
||||
<a href="./couponzoneform.php?w=u&cz_id=<?php echo $row['cz_id']; ?>&<?php echo $qstr; ?>" class="btn btn_03"><span class="sound_only"><?php echo get_text($row['cz_subject']); ?> </span>수정</a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
@ -149,8 +147,9 @@ $colspan = 9;
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div class="btn_list01 btn_list">
|
||||
<input type="submit" name="act_button" value="선택삭제" onclick="document.pressed=this.value">
|
||||
<div class="btn_fixed_top">
|
||||
<input type="submit" name="act_button" value="선택삭제" onclick="document.pressed=this.value" class="btn btn_02">
|
||||
<a href="./couponzoneform.php" id="coupon_add" class="btn btn_01">쿠폰 추가</a>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
|
||||
@ -223,7 +223,7 @@ function get_max_value($arr)
|
||||
$info = get_order_status_sum('주문');
|
||||
?>
|
||||
<th scope="row">주문 -> 입금</th>
|
||||
<td class="td_numbig"><a href="<?php echo $info['href']; ?>"><?php echo number_format($info['count']); ?></a></td>
|
||||
<td class="td_num"><a href="<?php echo $info['href']; ?>"><?php echo number_format($info['count']); ?></a></td>
|
||||
<td class="td_price"><a href="<?php echo $info['href']; ?>"><?php echo number_format($info['price']); ?></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
@ -231,7 +231,7 @@ function get_max_value($arr)
|
||||
$info = get_order_status_sum('입금');
|
||||
?>
|
||||
<th scope="row">입금 -> 준비</th>
|
||||
<td class="td_numbig"><a href="<?php echo $info['href']; ?>"><?php echo number_format($info['count']); ?></a></td>
|
||||
<td class="td_num"><a href="<?php echo $info['href']; ?>"><?php echo number_format($info['count']); ?></a></td>
|
||||
<td class="td_price"><a href="<?php echo $info['href']; ?>"><?php echo number_format($info['price']); ?></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
@ -239,7 +239,7 @@ function get_max_value($arr)
|
||||
$info = get_order_status_sum('준비');
|
||||
?>
|
||||
<th scope="row">준비 -> 배송</th>
|
||||
<td class="td_numbig"><a href="<?php echo $info['href']; ?>"><?php echo number_format($info['count']); ?></a></td>
|
||||
<td class="td_num"><a href="<?php echo $info['href']; ?>"><?php echo number_format($info['count']); ?></a></td>
|
||||
<td class="td_price"><a href="<?php echo $info['href']; ?>"><?php echo number_format($info['price']); ?></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
@ -247,7 +247,7 @@ function get_max_value($arr)
|
||||
$info = get_order_status_sum('배송');
|
||||
?>
|
||||
<th scope="row">배송 -> 완료</th>
|
||||
<td class="td_numbig"><a href="<?php echo $info['href']; ?>"><?php echo number_format($info['count']); ?></a></td>
|
||||
<td class="td_num"><a href="<?php echo $info['href']; ?>"><?php echo number_format($info['count']); ?></a></td>
|
||||
<td class="td_price"><a href="<?php echo $info['href']; ?>"><?php echo number_format($info['price']); ?></a></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
@ -295,8 +295,8 @@ function get_max_value($arr)
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td class="td_numbig"><a href="./itemstocklist.php"><?php echo number_format($item_noti); ?></a></td>
|
||||
<td class="td_numbig"><a href="./optionstocklist.php"><?php echo number_format($option_noti); ?></a></td>
|
||||
<td class="td_num2"><a href="./itemstocklist.php"><?php echo number_format($item_noti); ?></a></td>
|
||||
<td class="td_num2"><a href="./optionstocklist.php"><?php echo number_format($option_noti); ?></a></td>
|
||||
<td class="td_price"><?php echo display_price(intval($userinfo['coin'])); ?></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
@ -310,7 +310,7 @@ function get_max_value($arr)
|
||||
<h2>결제수단별 주문현황</h2>
|
||||
<?php echo $pg_anchor; ?>
|
||||
|
||||
<div id="sidx_settle" class="tbl_head02 tbl_wrap">
|
||||
<div id="sidx_settle" class="tbl_head01 tbl_wrap">
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
|
||||
@ -52,7 +52,7 @@ $colspan = 10;
|
||||
?>
|
||||
|
||||
<div class="local_ov01 local_ov">
|
||||
전체 <?php echo number_format($total_count) ?> 건
|
||||
<span class="btn_ov01"><span class="ov_txt">전체 </span><span class="ov_num"> <?php echo number_format($total_count) ?> 건 </span></span>
|
||||
</div>
|
||||
|
||||
<form name="fsearch" id="fsearch" class="local_sch01 local_sch" method="get">
|
||||
@ -85,8 +85,8 @@ $colspan = 10;
|
||||
<th scope="col">PG</th>
|
||||
<th scope="col">주문자</th>
|
||||
<th scope="col">주문자전화</th>
|
||||
<th scope="col">받는분</a></th>
|
||||
<th scope="col">주문금액</a></th>
|
||||
<th scope="col">받는분</th>
|
||||
<th scope="col">주문금액</th>
|
||||
<th scope="col">결제방법</th>
|
||||
<th scope="col">주문일시</th>
|
||||
<th scope="col">관리</th>
|
||||
@ -129,9 +129,9 @@ $colspan = 10;
|
||||
<td class="td_price"><?php echo number_format($ct['price']); ?></td>
|
||||
<td class="td_center"><?php echo $data['od_settle_case']; ?></td>
|
||||
<td class="td_time"><?php echo $row['dt_time']; ?></td>
|
||||
<td class="td_mngsmall">
|
||||
<a href="./inorderform.php?od_id=<?php echo $row['od_id']; ?>&<?php echo $qstr; ?>"><span class="sound_only"><?php echo $row['od_id']; ?> </span>보기</a>
|
||||
<a href="./inorderformupdate.php?w=d&od_id=<?php echo $row['od_id']; ?>&<?php echo $qstr; ?>" onclick="return delete_confirm(this);"><span class="sound_only"><?php echo $row['od_id']; ?> </span>삭제</a>
|
||||
<td class="td_mng td_mng_m">
|
||||
<a href="./inorderform.php?od_id=<?php echo $row['od_id']; ?>&<?php echo $qstr; ?>" class="btn btn_03"><span class="sound_only"><?php echo $row['od_id']; ?> </span>보기</a>
|
||||
<a href="./inorderformupdate.php?w=d&od_id=<?php echo $row['od_id']; ?>&<?php echo $qstr; ?>" onclick="return delete_confirm(this);" class="btn btn_02"><span class="sound_only"><?php echo $row['od_id']; ?> </span>삭제</a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
@ -145,8 +145,8 @@ $colspan = 10;
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div class="btn_list01 btn_list">
|
||||
<input type="submit" name="act_button" value="선택삭제" onclick="document.pressed=this.value">
|
||||
<div class="btn_fixed_top">
|
||||
<input type="submit" name="act_button" value="선택삭제" onclick="document.pressed=this.value" class="btn btn_02">
|
||||
</div>
|
||||
|
||||
</form>
|
||||
|
||||
@ -17,7 +17,7 @@ include_once(G5_PATH.'/head.sub.php');
|
||||
<input type="text" name="new_it_id" value="<?php echo time(); ?>" id="new_it_id" class="frm_input" maxlength="20">
|
||||
</div>
|
||||
|
||||
<div class="btn_confirm01 btn_confirm">
|
||||
<div class="win_btn btn_confirm">
|
||||
<input type="button" value="복사하기" class="btn_submit" onclick="_copy('itemcopyupdate.php?it_id=<?php echo $it_id; ?>&ca_id=<?php echo $ca_id; ?>');">
|
||||
<button type="button" onclick="self.close();">창닫기</button>
|
||||
</div>
|
||||
|
||||
@ -19,12 +19,12 @@ $result = sql_query($sql);
|
||||
?>
|
||||
|
||||
<div class="local_ov01 local_ov">
|
||||
전체 이벤트 <?php echo $total_count ?>건
|
||||
<span class="btn_ov01"><span class="ov_txt">전체 이벤트</span><span class="ov_num"> <?php echo $total_count; ?>건</span></span>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="btn_add01 btn_add">
|
||||
<a href="./itemeventform.php">이벤트 추가</a>
|
||||
<div class="btn_fixed_top">
|
||||
<a href="./itemeventform.php" class="btn btn_01">이벤트 추가</a>
|
||||
</div>
|
||||
|
||||
<div class="tbl_head01 tbl_wrap">
|
||||
@ -56,13 +56,13 @@ $result = sql_query($sql);
|
||||
|
||||
<tr>
|
||||
<td class="td_num"><?php echo $row['ev_id']; ?></td>
|
||||
<td><?php echo $subject; ?></td>
|
||||
<td class="td_left"><?php echo $subject; ?></td>
|
||||
<td class="td_num"><?php echo $href; ?><?php echo $ev['cnt']; ?><?php echo $href_close; ?></td>
|
||||
<td class="td_boolean"><?php echo $row['ev_use'] ? '<span class="txt_true">예</span>' : '<span class="txt_false">아니오</span>'; ?></td>
|
||||
<td class="td_mng">
|
||||
<a href="./itemeventform.php?w=u&ev_id=<?php echo $row['ev_id']; ?>">수정</a>
|
||||
<a href="<?php echo G5_SHOP_URL; ?>/event.php?ev_id=<?php echo $row['ev_id']; ?>">보기</a>
|
||||
<a href="./itemeventformupdate.php?w=d&ev_id=<?php echo $row['ev_id']; ?>" onclick="return delete_confirm(this);">삭제</a>
|
||||
<td class="td_mng td_mng_l">
|
||||
<a href="./itemeventform.php?w=u&ev_id=<?php echo $row['ev_id']; ?>" class="btn btn_03">수정</a>
|
||||
<a href="<?php echo G5_SHOP_URL; ?>/event.php?ev_id=<?php echo $row['ev_id']; ?>" class="btn btn_02">보기</a>
|
||||
<a href="./itemeventformupdate.php?w=d&ev_id=<?php echo $row['ev_id']; ?>" onclick="return delete_confirm(this);" class="btn btn_02">삭제</a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
|
||||
@ -322,9 +322,9 @@ include_once (G5_ADMIN_PATH.'/admin.head.php');
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div class="btn_confirm01 btn_confirm">
|
||||
<input type="submit" value="확인" class="btn_submit" accesskey="s">
|
||||
<a href="./itemevent.php">목록</a>
|
||||
<div class="btn_fixed_top">
|
||||
<a href="./itemevent.php" class="btn btn_02">목록</a>
|
||||
<input type="submit" value="확인" class="btn_submit btn" accesskey="s">
|
||||
</div>
|
||||
</form>
|
||||
|
||||
|
||||
@ -72,7 +72,8 @@ if($ev_id) {
|
||||
?>
|
||||
|
||||
<div class="local_ov01 local_ov">
|
||||
전체 이벤트 <?php echo $total_count; ?>건
|
||||
<?php echo $listall; ?>
|
||||
<span class="btn_ov01"><span class="ov_txt">전체 이벤트</span><span class="ov_num"> <?php echo $total_count; ?>건</span></span>
|
||||
</div>
|
||||
|
||||
<form name="flist" class="local_sch01 local_sch" autocomplete="off">
|
||||
@ -96,7 +97,6 @@ if($ev_id) {
|
||||
<form name="flist" class="local_sch01 local_sch" autocomplete="off">
|
||||
<input type="hidden" name="page" value="<?php echo $page; ?>">
|
||||
<input type="hidden" name="ev_id" value="<?php echo $ev_id; ?>">
|
||||
<?php echo $listall; ?>
|
||||
|
||||
<label for="sel_ca_id" class="sound_only">분류선택</label>
|
||||
<select name="sel_ca_id" id="sel_ca_id">
|
||||
@ -162,13 +162,13 @@ if($ev_id) {
|
||||
?>
|
||||
|
||||
<tr class="<?php echo $bg; ?>">
|
||||
<td class="td_chk">
|
||||
<td class="td_chk2">
|
||||
<input type="hidden" name="it_id[<?php echo $i; ?>]" value="<?php echo $row['it_id']; ?>">
|
||||
<label for="ev_chk_<?php echo $i; ?>" class="sound_only">이벤트 사용</label>
|
||||
<input type="checkbox" name="ev_chk[<?php echo $i; ?>]" value="1" id="ev_chk_<?php echo $i; ?>" <?php echo ($row['ev_id'] ? "checked" : ""); ?>>
|
||||
</td>
|
||||
<td class="td_num"><a href="<?php echo $href; ?>"><?php echo $row['it_id']; ?></a></td>
|
||||
<td><a href="<?php echo $href; ?>"><?php echo get_it_image($row['it_id'], 50, 50); ?> <?php echo cut_str(stripslashes($row['it_name']), 60, "…"); ?></a></td>
|
||||
<td class="td_left"><a href="<?php echo $href; ?>"><?php echo get_it_image($row['it_id'], 50, 50); ?> <?php echo cut_str(stripslashes($row['it_name']), 60, "…"); ?></a></td>
|
||||
</tr>
|
||||
|
||||
<?php
|
||||
@ -192,8 +192,8 @@ if($ev_id) {
|
||||
<?php } ?>
|
||||
</p>
|
||||
</div>
|
||||
<div class="btn_confirm01 btn_confirm">
|
||||
<input type="submit" value="일괄수정" class="btn_submit" accesskey="s">
|
||||
<div class="btn_fixed_top">
|
||||
<input type="submit" value="일괄수정" class="btn_submit btn" accesskey="s">
|
||||
</div>
|
||||
|
||||
</form>
|
||||
|
||||
@ -31,9 +31,9 @@ include_once(G5_PATH.'/head.sub.php');
|
||||
<input type="file" name="excelfile" id="excelfile">
|
||||
</div>
|
||||
|
||||
<div class="btn_confirm01 btn_confirm">
|
||||
<input type="submit" value="상품 엑셀파일 등록" class="btn_submit">
|
||||
<button type="button" onclick="window.close();">닫기</button>
|
||||
<div class="win_btn btn_confirm">
|
||||
<input type="submit" value="상품 엑셀파일 등록" class="btn_submit btn">
|
||||
<button type="button" onclick="window.close();" class="btn_close btn">닫기</button>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
|
||||
@ -131,12 +131,6 @@ $pg_anchor ='<ul class="anchor">
|
||||
</ul>
|
||||
';
|
||||
|
||||
$frm_submit = '<div class="btn_confirm01 btn_confirm">
|
||||
<input type="submit" value="확인" class="btn_submit" accesskey="s">
|
||||
<a href="./itemlist.php?'.$qstr.'">목록</a>';
|
||||
if($it_id)
|
||||
$frm_submit .= PHP_EOL.'<a href="'.G5_SHOP_URL.'/item.php?it_id='.$it_id.'" class="btn_frmline">상품보기</a>';
|
||||
$frm_submit .= '</div>';
|
||||
|
||||
// 쿠폰적용안함 설정 필드 추가
|
||||
if(!sql_query(" select it_nocoupon from {$g5['g5_shop_item_table']} limit 1", false)) {
|
||||
@ -218,7 +212,6 @@ if(!sql_query(" select it_skin from {$g5['g5_shop_item_table']} limit 1", false)
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<?php echo $frm_submit; ?>
|
||||
|
||||
<section id="anc_sitfrm_skin">
|
||||
<h2 class="h2_frm">스킨설정</h2>
|
||||
@ -230,14 +223,11 @@ if(!sql_query(" select it_skin from {$g5['g5_shop_item_table']} limit 1", false)
|
||||
<div class="tbl_frm01 tbl_wrap">
|
||||
<table>
|
||||
<caption>스킨설정</caption>
|
||||
<colgroup>
|
||||
<col class="grid_4">
|
||||
<col>
|
||||
</colgroup>
|
||||
|
||||
<tbody>
|
||||
<tr>
|
||||
<th scope="row"><label for="it_skin">PC용 스킨</label></th>
|
||||
<td colspan="3">
|
||||
<td>
|
||||
<?php echo get_skin_select('shop', 'it_skin', 'it_skin', $it['it_skin']); ?>
|
||||
</td>
|
||||
<td class="td_grpset">
|
||||
@ -249,7 +239,7 @@ if(!sql_query(" select it_skin from {$g5['g5_shop_item_table']} limit 1", false)
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><label for="it_mobile_skin">모바일용 스킨</label></th>
|
||||
<td colspan="3">
|
||||
<td>
|
||||
<?php echo get_mobile_skin_select('shop', 'it_mobile_skin', 'it_mobile_skin', $it['it_mobile_skin']); ?>
|
||||
</td>
|
||||
<td class="td_grpset">
|
||||
@ -264,7 +254,6 @@ if(!sql_query(" select it_skin from {$g5['g5_shop_item_table']} limit 1", false)
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<?php echo $frm_submit; ?>
|
||||
|
||||
<section id="anc_sitfrm_ini">
|
||||
<h2 class="h2_frm">기본정보</h2>
|
||||
@ -485,7 +474,6 @@ if(!sql_query(" select it_skin from {$g5['g5_shop_item_table']} limit 1", false)
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<?php echo $frm_submit; ?>
|
||||
|
||||
<section id="anc_sitfrm_compact">
|
||||
<h2 class="h2_frm">상품요약정보</h2>
|
||||
@ -511,7 +499,6 @@ if(!sql_query(" select it_skin from {$g5['g5_shop_item_table']} limit 1", false)
|
||||
<div id="sit_compact_fields"><?php include_once(G5_ADMIN_PATH.'/shop_admin/iteminfo.php'); ?></div>
|
||||
</section>
|
||||
|
||||
<?php echo $frm_submit; ?>
|
||||
|
||||
<script>
|
||||
$(function(){
|
||||
@ -1112,7 +1099,6 @@ $(function(){
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<?php echo $frm_submit; ?>
|
||||
|
||||
<section id="anc_sitfrm_sendcost">
|
||||
<h2 class="h2_frm">배송비</h2>
|
||||
@ -1269,7 +1255,6 @@ $(function(){
|
||||
</script>
|
||||
</section>
|
||||
|
||||
<?php echo $frm_submit; ?>
|
||||
|
||||
<section id="anc_sitfrm_img">
|
||||
<h2 class="h2_frm">이미지</h2>
|
||||
@ -1313,7 +1298,6 @@ $(function(){
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<?php echo $frm_submit; ?>
|
||||
|
||||
<section id="anc_sitfrm_relation" class="srel">
|
||||
<h2 class="h2_frm">관련상품</h2>
|
||||
@ -1464,7 +1448,6 @@ $(function(){
|
||||
|
||||
</section>
|
||||
|
||||
<?php echo $frm_submit; ?>
|
||||
|
||||
<section id="anc_sitfrm_event" class="srel">
|
||||
<h2 class="h2_frm">관련이벤트</h2>
|
||||
@ -1579,7 +1562,6 @@ $(function(){
|
||||
|
||||
</section>
|
||||
|
||||
<?php echo $frm_submit; ?>
|
||||
|
||||
<section id="anc_sitfrm_optional">
|
||||
<h2 class="h2_frm">상세설명설정</h2>
|
||||
@ -1639,7 +1621,6 @@ $(function(){
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<?php echo $frm_submit; ?>
|
||||
|
||||
<section id="anc_sitfrm_extra">
|
||||
<h2>여분필드 설정</h2>
|
||||
@ -1691,7 +1672,11 @@ $(function(){
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<?php echo $frm_submit; ?>
|
||||
<div class="btn_fixed_top">
|
||||
<a href="./itemlist.php?<?php echo $qstr; ?>" class="btn btn_02">목록</a>
|
||||
<a href="<?php echo G5_SHOP_URL ;?>/item.php?it_id=<?php echo $it_id ;?>" class="btn_02 btn">상품보기</a>
|
||||
<input type="submit" value="확인" class="btn_submit btn" accesskey="s">
|
||||
</div>
|
||||
</form>
|
||||
|
||||
|
||||
|
||||
@ -80,7 +80,7 @@ $listall = '<a href="'.$_SERVER['SCRIPT_NAME'].'" class="ov_listall">전체목
|
||||
|
||||
<div class="local_ov01 local_ov">
|
||||
<?php echo $listall; ?>
|
||||
등록된 상품 <?php echo $total_count; ?>건
|
||||
<span class="btn_ov01"><span class="ov_txt">등록된 상품</span><span class="ov_num"> <?php echo $total_count; ?>건</span></span>
|
||||
</div>
|
||||
|
||||
<form name="flist" class="local_sch01 local_sch">
|
||||
@ -117,12 +117,7 @@ $listall = '<a href="'.$_SERVER['SCRIPT_NAME'].'" class="ov_listall">전체목
|
||||
|
||||
</form>
|
||||
|
||||
<div class="btn_add01 btn_add">
|
||||
<a href="./itemform.php">상품등록</a>
|
||||
<a href="./itemexcel.php" onclick="return excelform(this.href);" target="_blank">상품일괄등록</a>
|
||||
</div>
|
||||
|
||||
<form name="fitemlistupdate" method="post" action="./itemlistupdate.php" onsubmit="return fitemlist_submit(this);" autocomplete="off">
|
||||
<form name="fitemlistupdate" method="post" action="./itemlistupdate.php" onsubmit="return fitemlist_submit(this);" autocomplete="off" id="fitemlistupdate">
|
||||
<input type="hidden" name="sca" value="<?php echo $sca; ?>">
|
||||
<input type="hidden" name="sst" value="<?php echo $sst; ?>">
|
||||
<input type="hidden" name="sod" value="<?php echo $sod; ?>">
|
||||
@ -130,7 +125,7 @@ $listall = '<a href="'.$_SERVER['SCRIPT_NAME'].'" class="ov_listall">전체목
|
||||
<input type="hidden" name="stx" value="<?php echo $stx; ?>">
|
||||
<input type="hidden" name="page" value="<?php echo $page; ?>">
|
||||
|
||||
<div class="tbl_head02 tbl_wrap">
|
||||
<div class="tbl_head01 tbl_wrap">
|
||||
<table>
|
||||
<caption><?php echo $g5['title']; ?> 목록</caption>
|
||||
<thead>
|
||||
@ -180,7 +175,7 @@ $listall = '<a href="'.$_SERVER['SCRIPT_NAME'].'" class="ov_listall">전체목
|
||||
<input type="hidden" name="it_id[<?php echo $i; ?>]" value="<?php echo $row['it_id']; ?>">
|
||||
<?php echo $row['it_id']; ?>
|
||||
</td>
|
||||
<td colspan="5">
|
||||
<td colspan="5" class="td_sort">
|
||||
<label for="ca_id_<?php echo $i; ?>" class="sound_only"><?php echo get_text($row['it_name']); ?> 기본분류</label>
|
||||
<select name="ca_id[<?php echo $i; ?>]" id="ca_id_<?php echo $i; ?>">
|
||||
<?php echo conv_selected_option($ca_list, $row['ca_id']); ?>
|
||||
@ -194,38 +189,38 @@ $listall = '<a href="'.$_SERVER['SCRIPT_NAME'].'" class="ov_listall">전체목
|
||||
<?php echo conv_selected_option($ca_list, $row['ca_id3']); ?>
|
||||
</select>
|
||||
</td>
|
||||
<td rowspan="3" class="td_mngsmall">
|
||||
<td rowspan="3" class="td_num">
|
||||
<label for="order_<?php echo $i; ?>" class="sound_only">순서</label>
|
||||
<input type="text" name="it_order[<?php echo $i; ?>]" value="<?php echo $row['it_order']; ?>" id="order_<?php echo $i; ?>" class="frm_input" size="3">
|
||||
<input type="text" name="it_order[<?php echo $i; ?>]" value="<?php echo $row['it_order']; ?>" id="order_<?php echo $i; ?>" class="tbl_input" size="3">
|
||||
</td>
|
||||
<td rowspan="3" class="td_chk">
|
||||
<td rowspan="3">
|
||||
<label for="use_<?php echo $i; ?>" class="sound_only">판매여부</label>
|
||||
<input type="checkbox" name="it_use[<?php echo $i; ?>]" <?php echo ($row['it_use'] ? 'checked' : ''); ?> value="1" id="use_<?php echo $i; ?>">
|
||||
</td>
|
||||
<td rowspan="3" class="td_chk">
|
||||
<td rowspan="3">
|
||||
<label for="soldout_<?php echo $i; ?>" class="sound_only">품절</label>
|
||||
<input type="checkbox" name="it_soldout[<?php echo $i; ?>]" <?php echo ($row['it_soldout'] ? 'checked' : ''); ?> value="1" id="soldout_<?php echo $i; ?>">
|
||||
</td>
|
||||
<td rowspan="3" class="td_num"><?php echo $row['it_hit']; ?></td>
|
||||
<td rowspan="3" class="td_mng">
|
||||
<a href="./itemform.php?w=u&it_id=<?php echo $row['it_id']; ?>&ca_id=<?php echo $row['ca_id']; ?>&<?php echo $qstr; ?>"><span class="sound_only"><?php echo htmlspecialchars2(cut_str($row['it_name'],250, "")); ?> </span>수정</a>
|
||||
<a href="./itemcopy.php?it_id=<?php echo $row['it_id']; ?>&ca_id=<?php echo $row['ca_id']; ?>" class="itemcopy" target="_blank"><span class="sound_only"><?php echo htmlspecialchars2(cut_str($row['it_name'],250, "")); ?> </span>복사</a>
|
||||
<a href="<?php echo $href; ?>"><span class="sound_only"><?php echo htmlspecialchars2(cut_str($row['it_name'],250, "")); ?> </span>보기</a>
|
||||
<td rowspan="3" class="td_mng td_mng_s">
|
||||
<a href="./itemform.php?w=u&it_id=<?php echo $row['it_id']; ?>&ca_id=<?php echo $row['ca_id']; ?>&<?php echo $qstr; ?>" class="btn btn_03"><span class="sound_only"><?php echo htmlspecialchars2(cut_str($row['it_name'],250, "")); ?> </span>수정</a>
|
||||
<a href="./itemcopy.php?it_id=<?php echo $row['it_id']; ?>&ca_id=<?php echo $row['ca_id']; ?>" class="itemcopy btn btn_02" target="_blank"><span class="sound_only"><?php echo htmlspecialchars2(cut_str($row['it_name'],250, "")); ?> </span>복사</a>
|
||||
<a href="<?php echo $href; ?>" class="btn btn_02"><span class="sound_only"><?php echo htmlspecialchars2(cut_str($row['it_name'],250, "")); ?> </span>보기</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="<?php echo $bg; ?>">
|
||||
<td rowspan="2" class="td_img"><a href="<?php echo $href; ?>"><?php echo get_it_image($row['it_id'], 50, 50); ?></a></td>
|
||||
<td headers="th_pc_title" rowspan="2" class="td_input">
|
||||
<label for="name_<?php echo $i; ?>" class="sound_only">상품명</label>
|
||||
<input type="text" name="it_name[<?php echo $i; ?>]" value="<?php echo htmlspecialchars2(cut_str($row['it_name'],250, "")); ?>" id="name_<?php echo $i; ?>" required class="frm_input required" size="30">
|
||||
<input type="text" name="it_name[<?php echo $i; ?>]" value="<?php echo htmlspecialchars2(cut_str($row['it_name'],250, "")); ?>" id="name_<?php echo $i; ?>" required class="tbl_input required" size="30">
|
||||
</td>
|
||||
<td headers="th_amt" class="td_numbig td_input">
|
||||
<label for="price_<?php echo $i; ?>" class="sound_only">판매가격</label>
|
||||
<input type="text" name="it_price[<?php echo $i; ?>]" value="<?php echo $row['it_price']; ?>" id="price_<?php echo $i; ?>" class="frm_input sit_amt" size="7">
|
||||
<input type="text" name="it_price[<?php echo $i; ?>]" value="<?php echo $row['it_price']; ?>" id="price_<?php echo $i; ?>" class="tbl_input sit_amt" size="7">
|
||||
</td>
|
||||
<td headers="th_camt" class="td_numbig td_input">
|
||||
<label for="cust_price_<?php echo $i; ?>" class="sound_only">시중가격</label>
|
||||
<input type="text" name="it_cust_price[<?php echo $i; ?>]" value="<?php echo $row['it_cust_price']; ?>" id="cust_price_<?php echo $i; ?>" class="frm_input sit_camt" size="7">
|
||||
<input type="text" name="it_cust_price[<?php echo $i; ?>]" value="<?php echo $row['it_cust_price']; ?>" id="cust_price_<?php echo $i; ?>" class="tbl_input sit_camt" size="7">
|
||||
</td>
|
||||
<td headers="th_skin" class="td_numbig td_input">
|
||||
<label for="it_skin_<?php echo $i; ?>" class="sound_only">PC 스킨</label>
|
||||
@ -236,7 +231,7 @@ $listall = '<a href="'.$_SERVER['SCRIPT_NAME'].'" class="ov_listall">전체목
|
||||
<td headers="th_pt" class="td_numbig td_input"><?php echo $it_point; ?></td>
|
||||
<td headers="th_qty" class="td_numbig td_input">
|
||||
<label for="stock_qty_<?php echo $i; ?>" class="sound_only">재고</label>
|
||||
<input type="text" name="it_stock_qty[<?php echo $i; ?>]" value="<?php echo $row['it_stock_qty']; ?>" id="stock_qty_<?php echo $i; ?>" class="frm_input sit_qty" size="7">
|
||||
<input type="text" name="it_stock_qty[<?php echo $i; ?>]" value="<?php echo $row['it_stock_qty']; ?>" id="stock_qty_<?php echo $i; ?>" class="tbl_input sit_qty" size="7">
|
||||
</td>
|
||||
<td headers="th_mskin" class="td_numbig td_input">
|
||||
<label for="it_mobile_skin_<?php echo $i; ?>" class="sound_only">모바일 스킨</label>
|
||||
@ -252,10 +247,13 @@ $listall = '<a href="'.$_SERVER['SCRIPT_NAME'].'" class="ov_listall">전체목
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div class="btn_list01 btn_list">
|
||||
<input type="submit" name="act_button" value="선택수정" onclick="document.pressed=this.value">
|
||||
<div class="btn_fixed_top">
|
||||
|
||||
<a href="./itemform.php" class="btn btn_01">상품등록</a>
|
||||
<a href="./itemexcel.php" onclick="return excelform(this.href);" target="_blank" class="btn btn_02">상품일괄등록</a>
|
||||
<input type="submit" name="act_button" value="선택수정" onclick="document.pressed=this.value" class="btn btn_02">
|
||||
<?php if ($is_admin == 'super') { ?>
|
||||
<input type="submit" name="act_button" value="선택삭제" onclick="document.pressed=this.value">
|
||||
<input type="submit" name="act_button" value="선택삭제" onclick="document.pressed=this.value" class="btn btn_02">
|
||||
<?php } ?>
|
||||
</div>
|
||||
<!-- <div class="btn_confirm01 btn_confirm">
|
||||
|
||||
@ -192,7 +192,7 @@ if($po_run) {
|
||||
</div>
|
||||
|
||||
<div class="btn_list01 btn_list">
|
||||
<input type="button" value="선택삭제" id="sel_option_delete">
|
||||
<input type="button" value="선택삭제" id="sel_option_delete" class="btn btn_02">
|
||||
</div>
|
||||
|
||||
<fieldset>
|
||||
|
||||
@ -75,9 +75,9 @@ $qstr .= ($qstr ? '&' : '').'sca='.$sca;
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div class="btn_confirm01 btn_confirm">
|
||||
<input type="submit" accesskey='s' value="확인" class="btn_submit">
|
||||
<a href="./itemqalist.php?<?php echo $qstr; ?>">목록</a>
|
||||
<div class="btn_fixed_top">
|
||||
<a href="./itemqalist.php?<?php echo $qstr; ?>" class="btn btn_02">목록</a>
|
||||
<input type="submit" accesskey='s' value="확인" class="btn_submit btn">
|
||||
</div>
|
||||
</form>
|
||||
|
||||
|
||||
@ -57,7 +57,7 @@ $listall = '<a href="'.$_SERVER['SCRIPT_NAME'].'" class="ov_listall">전체목
|
||||
|
||||
<div class="local_ov01 local_ov">
|
||||
<?php echo $listall; ?>
|
||||
전체 문의내역 <?php echo $total_count; ?>건
|
||||
<span class="btn_ov01"><span class="ov_txt"> 전체 문의내역</span><span class="ov_num"> <?php echo $total_count; ?>건</span></span>
|
||||
</div>
|
||||
|
||||
<form name="flist" class="local_sch01 local_sch">
|
||||
@ -100,7 +100,7 @@ $listall = '<a href="'.$_SERVER['SCRIPT_NAME'].'" class="ov_listall">전체목
|
||||
<input type="hidden" name="stx" value="<?php echo $stx; ?>">
|
||||
<input type="hidden" name="page" value="<?php echo $page; ?>">
|
||||
|
||||
<div class="tbl_head01 tbl_wrap">
|
||||
<div class="tbl_head01 tbl_wrap" id="itemqalist">
|
||||
<table>
|
||||
<caption><?php echo $g5['title']; ?> 목록</caption>
|
||||
<thead>
|
||||
@ -134,20 +134,25 @@ $listall = '<a href="'.$_SERVER['SCRIPT_NAME'].'" class="ov_listall">전체목
|
||||
<input type="checkbox" name="chk[]" value="<?php echo $i ?>" id="chk_<?php echo $i; ?>">
|
||||
<input type="hidden" name="iq_id[<?php echo $i; ?>]" value="<?php echo $row['iq_id']; ?>">
|
||||
</td>
|
||||
<td><a href="<?php echo $href; ?>"><?php echo get_it_image($row['it_id'], 50, 50); ?> <?php echo cut_str($row['it_name'],30); ?></a></td>
|
||||
<td>
|
||||
<a href="#" class="qa_href" onclick="return false;" target="<?php echo $i; ?>"><?php echo get_text($row['iq_subject']); ?></a>
|
||||
<td class="td_left"><a href="<?php echo $href; ?>"><?php echo get_it_image($row['it_id'], 50, 50); ?> <?php echo cut_str($row['it_name'],30); ?></a></td>
|
||||
<td class="td_left">
|
||||
<a href="#" class="qa_href" onclick="return false;" target="<?php echo $i; ?>"><?php echo get_text($row['iq_subject']); ?> <span class="tit_op">열기</span></a>
|
||||
<div id="qa_div<?php echo $i; ?>" class="qa_div" style="display:none;">
|
||||
<strong>문의내용</strong><br>
|
||||
<?php echo $iq_question; ?>
|
||||
<strong>답변</strong><br>
|
||||
<div class="qa_q">
|
||||
<strong>문의내용</strong>
|
||||
|
||||
<?php echo $iq_question; ?>
|
||||
</div>
|
||||
<div class="qa_a">
|
||||
<strong>답변</strong>
|
||||
<?php echo $iq_answer; ?>
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
<td class="td_name"><?php echo $name; ?></td>
|
||||
<td class="td_boolean"><?php echo $answer; ?></td>
|
||||
<td class="td_mngsmall">
|
||||
<a href="./itemqaform.php?w=u&iq_id=<?php echo $row['iq_id']; ?>&<?php echo $qstr; ?>"><span class="sound_only"><?php echo get_text($row['iq_subject']); ?> </span>수정</a>
|
||||
<td class="td_mng td_mng_s">
|
||||
<a href="./itemqaform.php?w=u&iq_id=<?php echo $row['iq_id']; ?>&<?php echo $qstr; ?>" class="btn btn_03"><span class="sound_only"><?php echo get_text($row['iq_subject']); ?> </span>수정</a>
|
||||
</td>
|
||||
</tr>
|
||||
<?php
|
||||
@ -160,8 +165,8 @@ $listall = '<a href="'.$_SERVER['SCRIPT_NAME'].'" class="ov_listall">전체목
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div class="btn_list01 btn_list">
|
||||
<input type="submit" name="act_button" value="선택삭제" onclick="document.pressed=this.value">
|
||||
<div class="btn_fixed_top">
|
||||
<input type="submit" name="act_button" value="선택삭제" onclick="document.pressed=this.value" class="btn btn_02">
|
||||
</div>
|
||||
</form>
|
||||
|
||||
|
||||
@ -66,7 +66,7 @@ $listall = '<a href="'.$_SERVER['SCRIPT_NAME'].'" class="ov_listall">전체목
|
||||
|
||||
<div class="local_ov01 local_ov">
|
||||
<?php echo $listall; ?>
|
||||
등록상품 <?php echo $total_count; ?>건
|
||||
<span class="btn_ov01"><span class="ov_txt">등록상품 </span><span class="ov_num"> <?php echo $total_count; ?>건 </span></span>
|
||||
</div>
|
||||
|
||||
<form name="flist" class="local_sch01 local_sch">
|
||||
@ -103,9 +103,9 @@ $listall = '<a href="'.$_SERVER['SCRIPT_NAME'].'" class="ov_listall">전체목
|
||||
<p>판매량을 합산하여 상품판매순위를 집계합니다.</p>
|
||||
</div>
|
||||
|
||||
<div class="btn_add01 btn_add">
|
||||
<a href="./itemlist.php" class="btn_add01 btn_add_optional">상품등록</a>
|
||||
<a href="./itemstocklist.php" class="btn_add01 btn_add_optional">상품재고관리</a>
|
||||
<div class="btn_fixed_top">
|
||||
<a href="./itemstocklist.php" class="btn_02 btn">상품재고관리</a>
|
||||
<a href="./itemlist.php" class="btn_01 btn">상품등록</a>
|
||||
</div>
|
||||
|
||||
<div class="tbl_head01 tbl_wrap">
|
||||
@ -139,7 +139,7 @@ $listall = '<a href="'.$_SERVER['SCRIPT_NAME'].'" class="ov_listall">전체목
|
||||
?>
|
||||
<tr class="<?php echo $bg; ?>">
|
||||
<td class="td_num"><?php echo $num; ?></td>
|
||||
<td><a href="<?php echo $href; ?>"><?php echo get_it_image($row['it_id'], 50, 50); ?> <?php echo cut_str($row['it_name'],30); ?></a></td>
|
||||
<td class="td_left"><a href="<?php echo $href; ?>"><?php echo get_it_image($row['it_id'], 50, 50); ?> <?php echo cut_str($row['it_name'],30); ?></a></td>
|
||||
<td class="td_num"><?php echo $row['ct_status_1']; ?></td>
|
||||
<td class="td_num"><?php echo $row['ct_status_2']; ?></td>
|
||||
<td class="td_num"><?php echo $row['ct_status_3']; ?></td>
|
||||
|
||||
@ -62,7 +62,7 @@ $listall = '<a href="'.$_SERVER['SCRIPT_NAME'].'" class="ov_listall">전체목
|
||||
|
||||
<div class="local_ov01 local_ov">
|
||||
<?php echo $listall; ?>
|
||||
전체 상품 <?php echo $total_count; ?>개
|
||||
<span class="btn_ov01"><span class="ov_txt">전체 상품</span><span class="ov_num"> <?php echo $total_count; ?>개</span></span>
|
||||
</div>
|
||||
|
||||
<form name="flist" class="local_sch01 local_sch">
|
||||
@ -93,7 +93,7 @@ $listall = '<a href="'.$_SERVER['SCRIPT_NAME'].'" class="ov_listall">전체목
|
||||
</select>
|
||||
|
||||
<label for="search" class="sound_only">검색어<strong class="sound_only"> 필수</strong></label>
|
||||
<input type="text" name="search" value="<?php echo $search; ?>" required class="frm_input required">
|
||||
<input type="text" name="search" id="search" value="<?php echo $search; ?>" required class="frm_input required">
|
||||
<input type="submit" value="검색" class="btn_submit">
|
||||
|
||||
</form>
|
||||
@ -102,10 +102,6 @@ $listall = '<a href="'.$_SERVER['SCRIPT_NAME'].'" class="ov_listall">전체목
|
||||
<p>재고수정의 수치를 수정하시면 창고재고의 수치가 변경됩니다.</p>
|
||||
</div>
|
||||
|
||||
<div class="btn_add01 btn_add">
|
||||
<a href="./optionstocklist.php" class="btn_add01 btn_add_optional">상품옵션재고</a>
|
||||
<a href="./itemsellrank.php" class="btn_add01 btn_add_optional">상품판매순위</a>
|
||||
</div>
|
||||
|
||||
<form name="fitemstocklist" action="./itemstocklistupdate.php" method="post">
|
||||
<input type="hidden" name="sort1" value="<?php echo $sort1; ?>">
|
||||
@ -172,7 +168,7 @@ $listall = '<a href="'.$_SERVER['SCRIPT_NAME'].'" class="ov_listall">전체목
|
||||
<input type="hidden" name="it_id[<?php echo $i; ?>]" value="<?php echo $row['it_id']; ?>">
|
||||
<?php echo $row['it_id']; ?>
|
||||
</td>
|
||||
<td><a href="<?php echo $href; ?>"><?php echo get_it_image($row['it_id'], 50, 50); ?> <?php echo cut_str(stripslashes($row['it_name']), 60, "…"); ?></a></td>
|
||||
<td class="td_left"><a href="<?php echo $href; ?>"><?php echo get_it_image($row['it_id'], 50, 50); ?> <?php echo cut_str(stripslashes($row['it_name']), 60, "…"); ?></a></td>
|
||||
<td class="td_num<?php echo $it_stock_qty_st; ?>"><?php echo $it_stock_qty; ?></td>
|
||||
<td class="td_num"><?php echo number_format($wait_qty); ?></td>
|
||||
<td class="td_num"><?php echo number_format($temporary_qty); ?></td>
|
||||
@ -184,19 +180,19 @@ $listall = '<a href="'.$_SERVER['SCRIPT_NAME'].'" class="ov_listall">전체목
|
||||
<label for="noti_qty_<?php echo $i; ?>" class="sound_only">통보수량</label>
|
||||
<input type="text" name="it_noti_qty[<?php echo $i; ?>]" value="<?php echo $row['it_noti_qty']; ?>" id="noti_qty_<?php echo $i; ?>" class="frm_input" size="10" autocomplete="off">
|
||||
</td>
|
||||
<td class="td_chk">
|
||||
<td class="td_chk2">
|
||||
<label for="use_<?php echo $i; ?>" class="sound_only">판매</label>
|
||||
<input type="checkbox" name="it_use[<?php echo $i; ?>]" value="1" id="use_<?php echo $i; ?>" <?php echo ($row['it_use'] ? "checked" : ""); ?>>
|
||||
</td>
|
||||
<td class="td_chk">
|
||||
<td class="td_chk2">
|
||||
<label for="soldout_<?php echo $i; ?>" class="sound_only">품절</label>
|
||||
<input type="checkbox" name="it_soldout[<?php echo $i; ?>]" value="1" id="soldout_<?php echo $i; ?>" <?php echo ($row['it_soldout'] ? "checked" : ""); ?>>
|
||||
</td>
|
||||
<td class="td_chk">
|
||||
<td class="td_chk2">
|
||||
<label for="stock_sms_<?php echo $i; ?>" class="sound_only">재입고 알림</label>
|
||||
<input type="checkbox" name="it_stock_sms[<?php echo $i; ?>]" value="1" id="stock_sms_<?php echo $i; ?>" <?php echo ($row['it_stock_sms'] ? "checked" : ""); ?>>
|
||||
</td>
|
||||
<td class="td_mngsmall"><a href="./itemform.php?w=u&it_id=<?php echo $row['it_id']; ?>&ca_id=<?php echo $row['ca_id']; ?>&<?php echo $qstr; ?>">수정</a></td>
|
||||
<td class="td_mng td_mng_s"><a href="./itemform.php?w=u&it_id=<?php echo $row['it_id']; ?>&ca_id=<?php echo $row['ca_id']; ?>&<?php echo $qstr; ?>" class="btn btn_03">수정</a></td>
|
||||
</tr>
|
||||
<?php
|
||||
}
|
||||
@ -207,8 +203,10 @@ $listall = '<a href="'.$_SERVER['SCRIPT_NAME'].'" class="ov_listall">전체목
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div class="btn_confirm01 btn_confirm">
|
||||
<input type="submit" value="일괄수정" class="btn_submit">
|
||||
<div class="btn_fixed_top">
|
||||
<a href="./optionstocklist.php" class="btn btn_02">상품옵션재고</a>
|
||||
<a href="./itemsellrank.php" class="btn btn_02">상품판매순위</a>
|
||||
<input type="submit" value="일괄수정" class="btn_submit btn">
|
||||
</div>
|
||||
</form>
|
||||
|
||||
|
||||
@ -72,7 +72,8 @@ $listall = '<a href="'.$_SERVER['SCRIPT_NAME'].'" class="ov_listall">전체목
|
||||
|
||||
<div class="local_ov01 local_ov">
|
||||
<?php echo $listall; ?>
|
||||
전체 <?php echo number_format($total_count); ?>건, 미전송 <?php echo number_format($unsend_count); ?>건
|
||||
<span class="btn_ov01"><span class="ov_txt">전체 </span><span class="ov_num"> <?php echo number_format($total_count); ?>건</span></span>
|
||||
<span class="btn_ov01"><span class="ov_txt">미전송 </span><span class="ov_num"><?php echo number_format($unsend_count); ?>건</span></span>
|
||||
</div>
|
||||
|
||||
<form name="flist" class="local_sch01 local_sch">
|
||||
@ -88,7 +89,7 @@ $listall = '<a href="'.$_SERVER['SCRIPT_NAME'].'" class="ov_listall">전체목
|
||||
</select>
|
||||
|
||||
<label for="search" class="sound_only">검색어<strong class="sound_only"> 필수</strong></label>
|
||||
<input type="text" name="search" value="<?php echo $search; ?>" required class="frm_input required">
|
||||
<input type="text" name="search" id="search" value="<?php echo $search; ?>" required class="frm_input required">
|
||||
<input type="submit" value="검색" class="btn_submit">
|
||||
|
||||
</form>
|
||||
@ -138,7 +139,7 @@ $listall = '<a href="'.$_SERVER['SCRIPT_NAME'].'" class="ov_listall">전체목
|
||||
<input type="checkbox" name="chk[]" value="<?php echo $i ?>" id="chk_<?php echo $i; ?>">
|
||||
<input type="hidden" name="ss_id[<?php echo $i; ?>]" value="<?php echo $row['ss_id']; ?>">
|
||||
</td>
|
||||
<td><?php echo $it_name; ?></td>
|
||||
<td class="td_left"><?php echo $it_name; ?></td>
|
||||
<td class="td_telbig"><?php echo $row['ss_hp']; ?></td>
|
||||
<td class="td_stat"><?php echo ($row['ss_send'] ? '전송완료' : '전송전'); ?></td>
|
||||
<td class="td_datetime"><?php echo (is_null_time($row['ss_send_time']) ? '' : $row['ss_send_time']); ?></td>
|
||||
@ -153,14 +154,12 @@ $listall = '<a href="'.$_SERVER['SCRIPT_NAME'].'" class="ov_listall">전체목
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<?php if ($is_admin == 'super') { ?>
|
||||
<div class="btn_list01 btn_list">
|
||||
<input type="submit" name="act_button" value="선택삭제" onclick="document.pressed=this.value">
|
||||
</div>
|
||||
<?php } ?>
|
||||
|
||||
<div class="btn_confirm01 btn_confirm">
|
||||
<input type="submit" name="act_button" value="선택SMS전송" class="btn_submit" onclick="document.pressed=this.value">
|
||||
|
||||
<div class="btn_fixed_top">
|
||||
<?php if ($is_admin == 'super') { ?>
|
||||
<input type="submit" name="act_button" value="선택삭제" onclick="document.pressed=this.value" class="btn btn_02">
|
||||
<?php } ?>
|
||||
<input type="submit" name="act_button" value="선택SMS전송" class="btn_submit btn" onclick="document.pressed=this.value">
|
||||
</div>
|
||||
</form>
|
||||
|
||||
|
||||
@ -153,7 +153,7 @@ if($ps_run) {
|
||||
</div>
|
||||
|
||||
<div class="btn_list01 btn_list">
|
||||
<button type="button" id="sel_supply_delete">선택삭제</button>
|
||||
<button type="button" id="sel_supply_delete" class="btn btn_02">선택삭제</button>
|
||||
</div>
|
||||
|
||||
<fieldset>
|
||||
|
||||
@ -79,7 +79,7 @@ $listall = '<a href="'.$_SERVER['SCRIPT_NAME'].'" class="ov_listall">전체목
|
||||
|
||||
<div class="local_ov01 local_ov">
|
||||
<?php echo $listall; ?>
|
||||
전체 상품 <?php echo $total_count; ?>개
|
||||
<span class="btn_ov01"><span class="ov_txt">전체 상품</span><span class="ov_num"> <?php echo $total_count; ?>개</span></span>
|
||||
</div>
|
||||
|
||||
<form name="flist" class="local_sch01 local_sch">
|
||||
@ -147,29 +147,29 @@ $listall = '<a href="'.$_SERVER['SCRIPT_NAME'].'" class="ov_listall">전체목
|
||||
<input type="hidden" name="it_id[<?php echo $i; ?>]" value="<?php echo $row['it_id']; ?>">
|
||||
<?php echo $row['it_id']; ?>
|
||||
</td>
|
||||
<td><a href="<?php echo $href; ?>"><?php echo get_it_image($row['it_id'], 50, 50); ?><?php echo cut_str(stripslashes($row['it_name']), 60, "…"); ?></a></td>
|
||||
<td class="td_chk">
|
||||
<td class="td_left"><a href="<?php echo $href; ?>"><?php echo get_it_image($row['it_id'], 50, 50); ?><?php echo cut_str(stripslashes($row['it_name']), 60, "…"); ?></a></td>
|
||||
<td class="td_chk2">
|
||||
<label for="type1_<?php echo $i; ?>" class="sound_only">히트상품</label>
|
||||
<input type="checkbox" name="it_type1[<?php echo $i; ?>]" value="1" id="type1_<?php echo $i; ?>" <?php echo ($row['it_type1'] ? 'checked' : ''); ?>>
|
||||
</td>
|
||||
<td class="td_chk">
|
||||
<td class="td_chk2">
|
||||
<label for="type2_<?php echo $i; ?>" class="sound_only">추천상품</label>
|
||||
<input type="checkbox" name="it_type2[<?php echo $i; ?>]" value="1" id="type2_<?php echo $i; ?>" <?php echo ($row['it_type2'] ? 'checked' : ''); ?>>
|
||||
</td>
|
||||
<td class="td_chk">
|
||||
<td class="td_chk2">
|
||||
<label for="type3_<?php echo $i; ?>" class="sound_only">신규상품</label>
|
||||
<input type="checkbox" name="it_type3[<?php echo $i; ?>]" value="1" id="type3_<?php echo $i; ?>" <?php echo ($row['it_type3'] ? 'checked' : ''); ?>>
|
||||
</td>
|
||||
<td class="td_chk">
|
||||
<td class="td_chk2">
|
||||
<label for="type4_<?php echo $i; ?>" class="sound_only">인기상품</label>
|
||||
<input type="checkbox" name="it_type4[<?php echo $i; ?>]" value="1" id="type4_<?php echo $i; ?>" <?php echo ($row['it_type4'] ? 'checked' : ''); ?>>
|
||||
</td>
|
||||
<td class="td_chk">
|
||||
<td class="td_chk2">
|
||||
<label for="type5_<?php echo $i; ?>" class="sound_only">할인상품</label>
|
||||
<input type="checkbox" name="it_type5[<?php echo $i; ?>]" value="1" id="type5_<?php echo $i; ?>" <?php echo ($row['it_type5'] ? 'checked' : ''); ?>>
|
||||
</td>
|
||||
<td class="td_mngsmall">
|
||||
<a href="./itemform.php?w=u&it_id=<?php echo $row['it_id']; ?>&ca_id=<?php echo $row['ca_id']; ?>&<?php echo $qstr; ?>"><span class="sound_only"><?php echo cut_str(stripslashes($row['it_name']), 60, "…"); ?> </span>수정</a>
|
||||
<td class="td_mng td_mng_s">
|
||||
<a href="./itemform.php?w=u&it_id=<?php echo $row['it_id']; ?>&ca_id=<?php echo $row['ca_id']; ?>&<?php echo $qstr; ?>" class="btn btn_03"><span class="sound_only"><?php echo cut_str(stripslashes($row['it_name']), 60, "…"); ?> </span>수정</a>
|
||||
</td>
|
||||
</tr>
|
||||
<?php
|
||||
|
||||
@ -66,7 +66,7 @@ $qstr .= ($qstr ? '&' : '').'sca='.$sca;
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">평점</th>
|
||||
<td><img src="<?php echo G5_URL; ?>/shop/img/s_star<?php echo $is['is_score']; ?>.png"> (<?php echo $is['is_score']; ?>점)</td>
|
||||
<td><img src="<?php echo G5_URL; ?>/shop/img/s_star<?php echo $is['is_score']; ?>.png" width="100"> (<?php echo $is['is_score']; ?>점)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><label for="is_subject">제목</label></th>
|
||||
@ -99,9 +99,9 @@ $qstr .= ($qstr ? '&' : '').'sca='.$sca;
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div class="btn_confirm01 btn_confirm">
|
||||
<input type="submit" value="확인" class="btn_submit" accesskey="s">
|
||||
<a href="./itemuselist.php?<?php echo $qstr; ?>">목록</a>
|
||||
<div class="btn_fixed_top">
|
||||
<a href="./itemuselist.php?<?php echo $qstr; ?>" class="btn_02 btn">목록</a>
|
||||
<input type="submit" value="확인" class="btn_submit btn" accesskey="s">
|
||||
</div>
|
||||
</form>
|
||||
|
||||
|
||||
@ -57,7 +57,7 @@ $listall = '<a href="'.$_SERVER['SCRIPT_NAME'].'" class="ov_listall">전체목
|
||||
|
||||
<div class="local_ov01 local_ov">
|
||||
<?php echo $listall; ?>
|
||||
전체 후기내역 <?php echo $total_count; ?>건
|
||||
<span class="btn_ov01"><span class="ov_txt"> 전체 후기내역</span><span class="ov_num"> <?php echo $total_count; ?>건</span></span>
|
||||
</div>
|
||||
|
||||
<form name="flist" class="local_sch01 local_sch">
|
||||
@ -88,7 +88,7 @@ $listall = '<a href="'.$_SERVER['SCRIPT_NAME'].'" class="ov_listall">전체목
|
||||
</select>
|
||||
|
||||
<label for="stx" class="sound_only">검색어<strong class="sound_only"> 필수</strong></label>
|
||||
<input type="text" name="stx" value="<?php echo $stx; ?>" required class="frm_input required">
|
||||
<input type="text" name="stx" id="stx" value="<?php echo $stx; ?>" required class="frm_input required">
|
||||
<input type="submit" value="검색" class="btn_submit">
|
||||
|
||||
</form>
|
||||
@ -101,7 +101,7 @@ $listall = '<a href="'.$_SERVER['SCRIPT_NAME'].'" class="ov_listall">전체목
|
||||
<input type="hidden" name="stx" value="<?php echo $stx; ?>">
|
||||
<input type="hidden" name="page" value="<?php echo $page; ?>">
|
||||
|
||||
<div class="tbl_head01 tbl_wrap">
|
||||
<div class="tbl_head01 tbl_wrap" id="itemuselist">
|
||||
<table>
|
||||
<caption><?php echo $g5['title']; ?> 목록</caption>
|
||||
<thead>
|
||||
@ -135,15 +135,15 @@ $listall = '<a href="'.$_SERVER['SCRIPT_NAME'].'" class="ov_listall">전체목
|
||||
<input type="hidden" name="is_id[<?php echo $i; ?>]" value="<?php echo $row['is_id']; ?>">
|
||||
<input type="hidden" name="it_id[<?php echo $i; ?>]" value="<?php echo $row['it_id']; ?>">
|
||||
</td>
|
||||
<td><a href="<?php echo $href; ?>"><?php echo get_it_image($row['it_id'], 50, 50); ?><?php echo cut_str($row['it_name'],30); ?></a></td>
|
||||
<td class="td_left"><a href="<?php echo $href; ?>"><?php echo get_it_image($row['it_id'], 50, 50); ?><?php echo cut_str($row['it_name'],30); ?></a></td>
|
||||
<td class="td_name"><?php echo $name; ?></td>
|
||||
<td class="sit_use_subject">
|
||||
<a href="#" class="use_href" onclick="return false;" target="<?php echo $i; ?>"><?php echo get_text($row['is_subject']); ?></a>
|
||||
<td class="sit_use_subject td_left">
|
||||
<a href="#" class="use_href" onclick="return false;" target="<?php echo $i; ?>"><?php echo get_text($row['is_subject']); ?><span class="tit_op">열기</span></a>
|
||||
<div id="use_div<?php echo $i; ?>" class="use_div" style="display:none;">
|
||||
<?php echo $is_content; ?>
|
||||
</div>
|
||||
</td>
|
||||
<td class="td_num">
|
||||
<td class="td_select">
|
||||
<label for="score_<?php echo $i; ?>" class="sound_only">평점</label>
|
||||
<select name="is_score[<?php echo $i; ?>]" id="score_<?php echo $i; ?>">
|
||||
<option value="5" <?php echo get_selected($row['is_score'], "5"); ?>>매우만족</option>
|
||||
@ -153,12 +153,12 @@ $listall = '<a href="'.$_SERVER['SCRIPT_NAME'].'" class="ov_listall">전체목
|
||||
<option value="1" <?php echo get_selected($row['is_score'], "1"); ?>>매우불만</option>
|
||||
</select>
|
||||
</td>
|
||||
<td class="td_chk">
|
||||
<td class="td_chk2">
|
||||
<label for="confirm_<?php echo $i; ?>" class="sound_only">확인</label>
|
||||
<input type="checkbox" name="is_confirm[<?php echo $i; ?>]" <?php echo ($row['is_confirm'] ? 'checked' : ''); ?> value="1" id="confirm_<?php echo $i; ?>">
|
||||
</td>
|
||||
<td class="td_mngsmall">
|
||||
<a href="./itemuseform.php?w=u&is_id=<?php echo $row['is_id']; ?>&<?php echo $qstr; ?>"><span class="sound_only"><?php echo get_text($row['is_subject']); ?> </span>수정</a>
|
||||
<td class="td_mng td_mng_s">
|
||||
<a href="./itemuseform.php?w=u&is_id=<?php echo $row['is_id']; ?>&<?php echo $qstr; ?>" class="btn btn_03"><span class="sound_only"><?php echo get_text($row['is_subject']); ?> </span>수정</a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
@ -173,9 +173,9 @@ $listall = '<a href="'.$_SERVER['SCRIPT_NAME'].'" class="ov_listall">전체목
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div class="btn_list01 btn_list">
|
||||
<input type="submit" name="act_button" value="선택수정" onclick="document.pressed=this.value">
|
||||
<input type="submit" name="act_button" value="선택삭제" onclick="document.pressed=this.value">
|
||||
<div class="btn_fixed_top">
|
||||
<input type="submit" name="act_button" value="선택수정" onclick="document.pressed=this.value" class="btn btn_02">
|
||||
<input type="submit" name="act_button" value="선택삭제" onclick="document.pressed=this.value" class="btn btn_02">
|
||||
</div>
|
||||
</form>
|
||||
|
||||
|
||||
@ -63,7 +63,7 @@ $listall = '<a href="'.$_SERVER['SCRIPT_NAME'].'" class="ov_listall">전체목
|
||||
|
||||
<div class="local_ov01 local_ov">
|
||||
<?php echo $listall; ?>
|
||||
전체 옵션 <?php echo $total_count; ?>개
|
||||
<span class="btn_ov01"><span class="ov_txt">전체 옵션</span><span class="ov_num"> <?php echo $total_count; ?>개</span></span>
|
||||
</div>
|
||||
|
||||
<form name="flist" class="local_sch01 local_sch">
|
||||
@ -94,16 +94,11 @@ $listall = '<a href="'.$_SERVER['SCRIPT_NAME'].'" class="ov_listall">전체목
|
||||
</select>
|
||||
|
||||
<label for="search" class="sound_only">검색어<strong class="sound_only"> 필수</strong></label>
|
||||
<input type="text" name="search" value="<?php echo $search; ?>" required class="frm_input required">
|
||||
<input type="text" name="search" id="search" value="<?php echo $search; ?>" required class="frm_input required">
|
||||
<input type="submit" value="검색" class="btn_submit">
|
||||
|
||||
</form>
|
||||
|
||||
<div class="btn_add01 btn_add">
|
||||
<a href="./itemstocklist.php" class="btn_add01 btn_add_optional">상품재고관리</a>
|
||||
<a href="./itemsellrank.php" class="btn_add01 btn_add_optional">상품판매순위</a>
|
||||
</div>
|
||||
|
||||
<form name="fitemstocklist" action="./optionstocklistupdate.php" method="post">
|
||||
<input type="hidden" name="sort1" value="<?php echo $sort1; ?>">
|
||||
<input type="hidden" name="sort2" value="<?php echo $sort2; ?>">
|
||||
@ -179,13 +174,13 @@ $listall = '<a href="'.$_SERVER['SCRIPT_NAME'].'" class="ov_listall">전체목
|
||||
$bg = 'bg'.($i%2);
|
||||
?>
|
||||
<tr class="<?php echo $bg; ?>">
|
||||
<td>
|
||||
<td class="td_left">
|
||||
<input type="hidden" name="it_id[<?php echo $i; ?>]" value="<?php echo $row['it_id']; ?>">
|
||||
<input type="hidden" name="io_id[<?php echo $i; ?>]" value="<?php echo $row['io_id']; ?>">
|
||||
<input type="hidden" name="io_type[<?php echo $i; ?>]" value="<?php echo $row['io_type']; ?>">
|
||||
<a href="<?php echo $href; ?>"><?php echo get_it_image($row['it_id'], 50, 50); ?> <?php echo cut_str(stripslashes($row['it_name']), 60, "…"); ?></a>
|
||||
</td>
|
||||
<td class="td_itopt"><?php echo $option; ?></td>
|
||||
<td class="td_left"><?php echo $option; ?></td>
|
||||
<td class="td_mng"><?php echo $type; ?></td>
|
||||
<td class="td_num<?php echo $io_stock_qty_st; ?>"><?php echo $io_stock_qty; ?></td>
|
||||
<td class="td_num"><?php echo number_format($wait_qty); ?></td>
|
||||
@ -198,11 +193,11 @@ $listall = '<a href="'.$_SERVER['SCRIPT_NAME'].'" class="ov_listall">전체목
|
||||
<label for="noti_qty_<?php echo $i; ?>" class="sound_only">통보수량</label>
|
||||
<input type="text" name="io_noti_qty[<?php echo $i; ?>]" value="<?php echo $row['io_noti_qty']; ?>" id="noti_qty_<?php echo $i; ?>" class="frm_input" size="8" autocomplete="off">
|
||||
</td>
|
||||
<td class="td_chk">
|
||||
<td class="td_chk2">
|
||||
<label for="use_<?php echo $i; ?>" class="sound_only">판매</label>
|
||||
<input type="checkbox" name="io_use[<?php echo $i; ?>]" value="1" id="use_<?php echo $i; ?>" <?php echo ($row['io_use'] ? "checked" : ""); ?>>
|
||||
</td>
|
||||
<td class="td_mngsmall"><a href="./itemform.php?w=u&it_id=<?php echo $row['it_id']; ?>&ca_id=<?php echo $row['ca_id']; ?>&<?php echo $qstr; ?>">수정</a></td>
|
||||
<td class="td_mng td_mng_s"><a href="./itemform.php?w=u&it_id=<?php echo $row['it_id']; ?>&ca_id=<?php echo $row['ca_id']; ?>&<?php echo $qstr; ?>" class="btn btn_03">수정</a></td>
|
||||
</tr>
|
||||
<?php
|
||||
}
|
||||
@ -213,9 +208,12 @@ $listall = '<a href="'.$_SERVER['SCRIPT_NAME'].'" class="ov_listall">전체목
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div class="btn_confirm01 btn_confirm">
|
||||
<input type="submit" value="일괄수정" class="btn_submit">
|
||||
<div class="btn_fixed_top">
|
||||
<a href="./itemstocklist.php" class="btn btn_02">상품재고관리</a>
|
||||
<a href="./itemsellrank.php" class="btn btn_02">상품판매순위</a>
|
||||
<input type="submit" value="일괄수정" class="btn_submit btn">
|
||||
</div>
|
||||
|
||||
</form>
|
||||
|
||||
<div class="local_desc01 local_desc">
|
||||
|
||||
@ -203,7 +203,7 @@ add_javascript(G5_POSTCODE_JS, 0); //다음 주소 js
|
||||
?>
|
||||
<tr>
|
||||
<?php if($k == 0) { ?>
|
||||
<td rowspan="<?php echo $rowspan; ?>">
|
||||
<td rowspan="<?php echo $rowspan; ?>" class="td_left">
|
||||
<a href="./itemform.php?w=u&it_id=<?php echo $row['it_id']; ?>"><?php echo $image; ?> <?php echo stripslashes($row['it_name']); ?></a>
|
||||
<?php if($od['od_tax_flag'] && $row['ct_notax']) echo '[비과세상품]'; ?>
|
||||
</td>
|
||||
@ -212,7 +212,7 @@ add_javascript(G5_POSTCODE_JS, 0); //다음 주소 js
|
||||
<input type="checkbox" id="sit_sel_<?php echo $i; ?>" name="it_sel[]">
|
||||
</td>
|
||||
<?php } ?>
|
||||
<td>
|
||||
<td class="td_left">
|
||||
<label for="ct_chk_<?php echo $chk_cnt; ?>" class="sound_only"><?php echo get_text($opt['ct_option']); ?></label>
|
||||
<input type="checkbox" name="ct_chk[<?php echo $chk_cnt; ?>]" id="ct_chk_<?php echo $chk_cnt; ?>" value="<?php echo $chk_cnt; ?>" class="sct_sel_<?php echo $i; ?>">
|
||||
<input type="hidden" name="ct_id[<?php echo $chk_cnt; ?>]" value="<?php echo $opt['ct_id']; ?>">
|
||||
@ -223,10 +223,10 @@ add_javascript(G5_POSTCODE_JS, 0); //다음 주소 js
|
||||
<label for="ct_qty_<?php echo $chk_cnt; ?>" class="sound_only"><?php echo get_text($opt['ct_option']); ?> 수량</label>
|
||||
<input type="text" name="ct_qty[<?php echo $chk_cnt; ?>]" id="ct_qty_<?php echo $chk_cnt; ?>" value="<?php echo $opt['ct_qty']; ?>" required class="frm_input required" size="5">
|
||||
</td>
|
||||
<td class="td_num"><?php echo number_format($opt_price); ?></td>
|
||||
<td class="td_num"><?php echo number_format($ct_price['stotal']); ?></td>
|
||||
<td class="td_num"><?php echo number_format($opt['cp_price']); ?></td>
|
||||
<td class="td_num"><?php echo number_format($ct_point['stotal']); ?></td>
|
||||
<td class="td_num_right "><?php echo number_format($opt_price); ?></td>
|
||||
<td class="td_num_right"><?php echo number_format($ct_price['stotal']); ?></td>
|
||||
<td class="td_num_right"><?php echo number_format($opt['cp_price']); ?></td>
|
||||
<td class=" td_num_right"><?php echo number_format($ct_point['stotal']); ?></td>
|
||||
<td class="td_sendcost_by"><?php echo $ct_send_cost; ?></td>
|
||||
<td class="td_mngsmall"><?php echo get_yn($opt['ct_point_use']); ?></td>
|
||||
<td class="td_mngsmall"><?php echo get_yn($opt['ct_stock_use']); ?></td>
|
||||
@ -246,14 +246,14 @@ add_javascript(G5_POSTCODE_JS, 0); //다음 주소 js
|
||||
<p>
|
||||
<input type="hidden" name="chk_cnt" value="<?php echo $chk_cnt; ?>">
|
||||
<strong>주문 및 장바구니 상태 변경</strong>
|
||||
<input type="submit" name="ct_status" value="주문" onclick="document.pressed=this.value">
|
||||
<input type="submit" name="ct_status" value="입금" onclick="document.pressed=this.value">
|
||||
<input type="submit" name="ct_status" value="준비" onclick="document.pressed=this.value">
|
||||
<input type="submit" name="ct_status" value="배송" onclick="document.pressed=this.value">
|
||||
<input type="submit" name="ct_status" value="완료" onclick="document.pressed=this.value">
|
||||
<input type="submit" name="ct_status" value="취소" onclick="document.pressed=this.value">
|
||||
<input type="submit" name="ct_status" value="반품" onclick="document.pressed=this.value">
|
||||
<input type="submit" name="ct_status" value="품절" onclick="document.pressed=this.value">
|
||||
<input type="submit" name="ct_status" value="주문" onclick="document.pressed=this.value" class="btn_02 color_01">
|
||||
<input type="submit" name="ct_status" value="입금" onclick="document.pressed=this.value" class="btn_02 color_02">
|
||||
<input type="submit" name="ct_status" value="준비" onclick="document.pressed=this.value" class="btn_02 color_03">
|
||||
<input type="submit" name="ct_status" value="배송" onclick="document.pressed=this.value" class="btn_02 color_04">
|
||||
<input type="submit" name="ct_status" value="완료" onclick="document.pressed=this.value" class="btn_02 color_05">
|
||||
<input type="submit" name="ct_status" value="취소" onclick="document.pressed=this.value" class="btn_02 color_06">
|
||||
<input type="submit" name="ct_status" value="반품" onclick="document.pressed=this.value" class="btn_02 color_06">
|
||||
<input type="submit" name="ct_status" value="품절" onclick="document.pressed=this.value" class="btn_02 color_06">
|
||||
</p>
|
||||
</div>
|
||||
|
||||
@ -784,7 +784,7 @@ add_javascript(G5_POSTCODE_JS, 0); //다음 주소 js
|
||||
<tr>
|
||||
<th scope="row"><label for="od_refund_price">결제취소/환불 금액</label></th>
|
||||
<td>
|
||||
<input type="text" name="od_refund_price" value="<?php echo $od['od_refund_price']; ?>" class="frm_input" size="10"> 원
|
||||
<input type="text" name="od_refund_price" value="<?php echo $od['od_refund_price']; ?>" id="od_refund_price" class="frm_input" size="10"> 원
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
@ -833,14 +833,14 @@ add_javascript(G5_POSTCODE_JS, 0); //다음 주소 js
|
||||
</div>
|
||||
|
||||
<div class="btn_confirm01 btn_confirm">
|
||||
<input type="submit" value="결제/배송내역 수정" class="btn_submit">
|
||||
<input type="submit" value="결제/배송내역 수정" class="btn_submit btn">
|
||||
<?php if($od['od_status'] == '주문' && $od['od_misu'] > 0) { ?>
|
||||
<a href="./personalpayform.php?popup=yes&od_id=<?php echo $od_id; ?>" id="personalpay_add">개인결제추가</a>
|
||||
<a href="./personalpayform.php?popup=yes&od_id=<?php echo $od_id; ?>" id="personalpay_add" class="btn btn_02">개인결제추가</a>
|
||||
<?php } ?>
|
||||
<?php if($od['od_misu'] < 0 && ($od['od_receipt_price'] - $od['od_refund_price']) > 0 && ($od['od_settle_case'] == '신용카드' || $od['od_settle_case'] == '계좌이체' || $od['od_settle_case'] == 'KAKAOPAY')) { ?>
|
||||
<a href="./orderpartcancel.php?od_id=<?php echo $od_id; ?>" id="orderpartcancel"><?php echo $od['od_settle_case']; ?> 부분취소</a>
|
||||
<a href="./orderpartcancel.php?od_id=<?php echo $od_id; ?>" id="orderpartcancel" class="btn btn_02"><?php echo $od['od_settle_case']; ?> 부분취소</a>
|
||||
<?php } ?>
|
||||
<a href="./orderlist.php?<?php echo $qstr; ?>">목록</a>
|
||||
<a href="./orderlist.php?<?php echo $qstr; ?>" class="btn btn_02">목록</a>
|
||||
</div>
|
||||
</form>
|
||||
</section>
|
||||
@ -870,7 +870,7 @@ add_javascript(G5_POSTCODE_JS, 0); //다음 주소 js
|
||||
</div>
|
||||
|
||||
<div class="btn_confirm01 btn_confirm">
|
||||
<input type="submit" value="메모 수정" class="btn_submit">
|
||||
<input type="submit" value="메모 수정" class="btn_submit btn">
|
||||
</div>
|
||||
|
||||
</form>
|
||||
@ -1004,8 +1004,8 @@ add_javascript(G5_POSTCODE_JS, 0); //다음 주소 js
|
||||
</div>
|
||||
|
||||
<div class="btn_confirm01 btn_confirm">
|
||||
<input type="submit" value="주문자/배송지 정보 수정" class="btn_submit">
|
||||
<a href="./orderlist.php?<?php echo $qstr; ?>">목록</a>
|
||||
<input type="submit" value="주문자/배송지 정보 수정" class="btn_submit btn ">
|
||||
<a href="./orderlist.php?<?php echo $qstr; ?>" class="btn">목록</a>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
|
||||
@ -138,7 +138,7 @@ if(!sql_query(" select mb_id from {$g5['g5_shop_order_delete_table']} limit 1 ",
|
||||
|
||||
<div class="local_ov01 local_ov">
|
||||
<?php echo $listall; ?>
|
||||
전체 주문내역 <?php echo number_format($total_count); ?>건
|
||||
<span class="btn_ov01"><span class="ov_txt">전체 주문내역</span><span class="ov_num"> <?php echo number_format($total_count); ?>건</span></span>
|
||||
<?php if($od_status == '준비' && $total_count > 0) { ?>
|
||||
<a href="./orderdelivery.php" id="order_delivery" class="ov_a">엑셀배송처리</a>
|
||||
<?php } ?>
|
||||
@ -171,7 +171,7 @@ if(!sql_query(" select mb_id from {$g5['g5_shop_order_delete_table']} limit 1 ",
|
||||
|
||||
</form>
|
||||
|
||||
<form class="local_sch02 local_sch">
|
||||
<form class="local_sch03 local_sch">
|
||||
<div>
|
||||
<strong>주문상태</strong>
|
||||
<input type="radio" name="od_status" value="" id="od_status_all" <?php echo get_checked($od_status, ''); ?>>
|
||||
@ -248,7 +248,7 @@ if(!sql_query(" select mb_id from {$g5['g5_shop_order_delete_table']} limit 1 ",
|
||||
<form name="forderlist" id="forderlist" onsubmit="return forderlist_submit(this);" method="post" autocomplete="off">
|
||||
<input type="hidden" name="search_od_status" value="<?php echo $od_status; ?>">
|
||||
|
||||
<div class="tbl_head02 tbl_wrap">
|
||||
<div class="tbl_head01 tbl_wrap">
|
||||
<table id="sodr_list">
|
||||
<caption>주문 내역 목록</caption>
|
||||
<thead>
|
||||
@ -257,7 +257,7 @@ if(!sql_query(" select mb_id from {$g5['g5_shop_order_delete_table']} limit 1 ",
|
||||
<label for="chkall" class="sound_only">주문 전체</label>
|
||||
<input type="checkbox" name="chkall" value="1" id="chkall" onclick="check_all(this.form)">
|
||||
</th>
|
||||
<th scope="col" id="th_odrnum" rowspan="2" colspan="2"><a href="<?php echo title_sort("od_id", 1)."&$qstr1"; ?>">주문번호</a></th>
|
||||
<th scope="col" id="th_ordnum" rowspan="2" colspan="2"><a href="<?php echo title_sort("od_id", 1)."&$qstr1"; ?>">주문번호</a></th>
|
||||
<th scope="col" id="th_odrer">주문자</th>
|
||||
<th scope="col" id="th_odrertel">주문자전화</th>
|
||||
<th scope="col" id="th_recvr">받는분</th>
|
||||
@ -378,13 +378,13 @@ if(!sql_query(" select mb_id from {$g5['g5_shop_order_delete_table']} limit 1 ",
|
||||
<td headers="th_odrer" class="td_name"><?php echo $mb_nick; ?></td>
|
||||
<td headers="th_odrertel" class="td_tel"><?php echo get_text($row['od_tel']); ?></td>
|
||||
<td headers="th_recvr" class="td_name"><a href="<?php echo $_SERVER['SCRIPT_NAME']; ?>?sort1=<?php echo $sort1; ?>&sort2=<?php echo $sort2; ?>&sel_field=od_b_name&search=<?php echo get_text($row['od_b_name']); ?>"><?php echo get_text($row['od_b_name']); ?></a></td>
|
||||
<td rowspan="3" class="td_numsum"><?php echo number_format($row['od_cart_price'] + $row['od_send_cost'] + $row['od_send_cost2']); ?></td>
|
||||
<td rowspan="3" class="td_numincome"><?php echo number_format($row['od_receipt_price']); ?></td>
|
||||
<td rowspan="3" class="td_numcancel<?php echo $td_color; ?>"><?php echo number_format($row['od_cancel_price']); ?></td>
|
||||
<td rowspan="3" class="td_numcoupon"><?php echo number_format($row['couponprice']); ?></td>
|
||||
<td rowspan="3" class="td_numrdy"><?php echo number_format($row['od_misu']); ?></td>
|
||||
<td rowspan="3" class="td_mngsmall">
|
||||
<a href="./orderform.php?od_id=<?php echo $row['od_id']; ?>&<?php echo $qstr; ?>" class="mng_mod"><span class="sound_only"><?php echo $row['od_id']; ?> </span>보기</a>
|
||||
<td rowspan="3" class="td_num td_numsum"><?php echo number_format($row['od_cart_price'] + $row['od_send_cost'] + $row['od_send_cost2']); ?></td>
|
||||
<td rowspan="3" class="td_num_right"><?php echo number_format($row['od_receipt_price']); ?></td>
|
||||
<td rowspan="3" class="td_numcancel<?php echo $td_color; ?> td_num"><?php echo number_format($row['od_cancel_price']); ?></td>
|
||||
<td rowspan="3" class="td_num_right"><?php echo number_format($row['couponprice']); ?></td>
|
||||
<td rowspan="3" class="td_num_right"><?php echo number_format($row['od_misu']); ?></td>
|
||||
<td rowspan="3" class="td_mng td_mng_s">
|
||||
<a href="./orderform.php?od_id=<?php echo $row['od_id']; ?>&<?php echo $qstr; ?>" class="mng_mod btn btn_02"><span class="sound_only"><?php echo $row['od_id']; ?> </span>보기</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="<?php echo $bg; ?>">
|
||||
@ -399,22 +399,22 @@ if(!sql_query(" select mb_id from {$g5['g5_shop_order_delete_table']} limit 1 ",
|
||||
<td headers="th_odrall"><?php echo $od_cnt; ?>건</td>
|
||||
</tr>
|
||||
<tr class="<?php echo $bg; ?>">
|
||||
<td headers="th_odrstat" class="td_odrstatus">
|
||||
<td headers="odrstat" class="odrstat">
|
||||
<input type="hidden" name="current_status[<?php echo $i ?>]" value="<?php echo $row['od_status'] ?>">
|
||||
<?php echo $row['od_status']; ?>
|
||||
</td>
|
||||
<td headers="th_odrpay" class="td_payby">
|
||||
<td headers="odrpay" class="odrpay">
|
||||
<input type="hidden" name="current_settle_case[<?php echo $i ?>]" value="<?php echo $row['od_settle_case'] ?>">
|
||||
<?php echo $s_receipt_way; ?>
|
||||
</td>
|
||||
<td headers="th_delino" class="td_delino">
|
||||
<td headers="delino" class="delino">
|
||||
<?php if ($od_status == '준비') { ?>
|
||||
<input type="text" name="od_invoice[<?php echo $i; ?>]" value="<?php echo $row['od_invoice']; ?>" class="frm_input" size="10">
|
||||
<?php } else {
|
||||
echo ($row['od_invoice'] ? $row['od_invoice'] : '-');
|
||||
} ?>
|
||||
</td>
|
||||
<td headers="th_delicom">
|
||||
<td headers="delicom">
|
||||
<?php if ($od_status == '준비') { ?>
|
||||
<select name="od_delivery_company[<?php echo $i; ?>]">
|
||||
<?php echo get_delivery_company($delivery_company); ?>
|
||||
@ -423,7 +423,7 @@ if(!sql_query(" select mb_id from {$g5['g5_shop_order_delete_table']} limit 1 ",
|
||||
echo ($row['od_delivery_company'] ? $row['od_delivery_company'] : '-');
|
||||
} ?>
|
||||
</td>
|
||||
<td headers="th_delidate">
|
||||
<td headers="delidate">
|
||||
<?php if ($od_status == '준비') { ?>
|
||||
<input type="text" name="od_invoice_time[<?php echo $i; ?>]" value="<?php echo $invoice_time; ?>" class="frm_input" size="10" maxlength="19">
|
||||
<?php } else {
|
||||
|
||||
@ -9,7 +9,7 @@ include_once (G5_ADMIN_PATH.'/admin.head.php');
|
||||
include_once(G5_PLUGIN_PATH.'/jquery-ui/datepicker.php');
|
||||
?>
|
||||
|
||||
<div class="local_sch02 local_sch">
|
||||
<div class="local_sch03 local_sch">
|
||||
|
||||
<div>
|
||||
<form name="forderprint" action="./orderprintresult.php" onsubmit="return forderprintcheck(this);" autocomplete="off">
|
||||
@ -76,8 +76,8 @@ include_once(G5_PLUGIN_PATH.'/jquery-ui/datepicker.php');
|
||||
|
||||
</div>
|
||||
|
||||
<div class="btn_add01 btn_add">
|
||||
<a href="./orderlist.php" class="btn_add01 btn_add_optional">주문내역</a>
|
||||
<div class="btn_fixed_top">
|
||||
<a href="./orderlist.php" class="btn_01 btn ">주문내역</a>
|
||||
</div>
|
||||
|
||||
<div class="local_desc01 local_desc">
|
||||
|
||||
@ -119,21 +119,11 @@ if(!sql_query(" select pp_cash from {$g5['g5_shop_personalpay_table']} limit 1 "
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<div class="btn_confirm01 btn_confirm">
|
||||
<input type="submit" value="확인" class="btn_submit" accesskey="s">
|
||||
<?php if($popup == 'yes') { ?>
|
||||
<button type="button" onclick="self.close();">닫기</button>
|
||||
<?php } else { ?>
|
||||
<a href="./personalpaylist.php?<?php echo $qstr; ?>">목록</a>
|
||||
<?php } ?>
|
||||
<?php if($w == 'u') { ?>
|
||||
<a href="./personalpayformupdate.php?w=d&pp_id=<?php echo $pp['pp_id']; ?>" onclick="return delete_confirm(this);">삭제</a>
|
||||
<?php } ?>
|
||||
</div>
|
||||
|
||||
|
||||
<?php if($popup != 'yes') { ?>
|
||||
<section id="anc_spp_pay" class="cbox">
|
||||
<h2>결제 정보</h2>
|
||||
<h2 class="h2_frm">결제 정보</h2>
|
||||
<?php echo $pg_anchor; ?>
|
||||
<div class="local_desc02 local_desc">
|
||||
<p>결제 관련 정보입니다.</p>
|
||||
@ -247,15 +237,15 @@ if(!sql_query(" select pp_cash from {$g5['g5_shop_personalpay_table']} limit 1 "
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<div class="btn_confirm01 btn_confirm">
|
||||
<input type="submit" value="확인" class="btn_submit" accesskey="s">
|
||||
<div class="btn_fixed_top">
|
||||
<input type="submit" value="확인" class="btn_submit btn" accesskey="s">
|
||||
<?php if($popup == 'yes') { ?>
|
||||
<button type="button" onclick="self.close();">닫기</button>
|
||||
<button type="button" onclick="self.close();" class="btn btn_02">닫기</button>
|
||||
<?php } else { ?>
|
||||
<a href="./personalpaylist.php?<?php echo $qstr; ?>">목록</a>
|
||||
<a href="./personalpaylist.php?<?php echo $qstr; ?>" class="btn btn_02">목록</a>
|
||||
<?php } ?>
|
||||
<?php if($w == 'u') { ?>
|
||||
<a href="./personalpayformupdate.php?w=d&pp_id=<?php echo $pp['pp_id']; ?>" onclick="return delete_confirm(this);">삭제</a>
|
||||
<a href="./personalpayformupdate.php?w=d&pp_id=<?php echo $pp['pp_id']; ?>" onclick="return delete_confirm(this);" class="btn btn_02">삭제</a>
|
||||
<?php } ?>
|
||||
</div>
|
||||
<?php } ?>
|
||||
|
||||
@ -55,7 +55,7 @@ $colspan = 10;
|
||||
?>
|
||||
|
||||
<div class="local_ov01 local_ov">
|
||||
전체 <?php echo number_format($total_count) ?> 건
|
||||
<span class="btn_ov01"><span class="ov_txt">전체 </span><span class="ov_num"> <?php echo number_format($total_count) ?>건 </span></span>
|
||||
</div>
|
||||
|
||||
<form name="fsearch" id="fsearch" class="local_sch01 local_sch" method="get">
|
||||
@ -69,9 +69,7 @@ $colspan = 10;
|
||||
<input type="submit" class="btn_submit" value="검색">
|
||||
</form>
|
||||
|
||||
<div class="btn_add01 btn_add">
|
||||
<a href="./personalpayform.php" id="personalpay_add">개인결제 추가</a>
|
||||
</div>
|
||||
|
||||
|
||||
<form name="fpersonalpaylist" id="fpersonalpaylist" method="post" action="./personalpaylistdelete.php" onsubmit="return fpersonalpaylist_submit(this);">
|
||||
<input type="hidden" name="sst" value="<?php echo $sst; ?>">
|
||||
@ -95,8 +93,8 @@ $colspan = 10;
|
||||
<th scope="col">주문금액</th>
|
||||
<th scope="col">입금금액</th>
|
||||
<th scope="col">미수금액</th>
|
||||
<th scope="col">입금방법</a></th>
|
||||
<th scope="col"><?php echo subject_sort_link('pp_receipt_time') ?>입금일</a></a></th>
|
||||
<th scope="col">입금방법</th>
|
||||
<th scope="col"><?php echo subject_sort_link('pp_receipt_time') ?>입금일</a></th>
|
||||
<th scope="col">사용</th>
|
||||
<th scope="col">관리</th>
|
||||
</tr>
|
||||
@ -117,7 +115,7 @@ $colspan = 10;
|
||||
<input type="hidden" id="pp_id_<?php echo $i; ?>" name="pp_id[<?php echo $i; ?>]" value="<?php echo $row['pp_id']; ?>">
|
||||
<input type="checkbox" id="chk_<?php echo $i; ?>" name="chk[]" value="<?php echo $i; ?>" title="내역선택">
|
||||
</td>
|
||||
<td><?php echo $row['pp_name']; ?></td>
|
||||
<td class="td_left"><?php echo $row['pp_name']; ?></td>
|
||||
<td class="td_odrnum3"><?php echo $od_id; ?></td>
|
||||
<td class="td_numsum"><?php echo number_format($row['pp_price']); ?></td>
|
||||
<td class="td_numincome"><?php echo number_format($row['pp_receipt_price']); ?></td>
|
||||
@ -125,9 +123,9 @@ $colspan = 10;
|
||||
<td class="td_payby"><?php echo $row['pp_settle_case']; ?></td>
|
||||
<td class="td_date"><?php echo is_null_time($row['pp_receipt_time']) ? '' : substr($row['pp_receipt_time'], 2, 8); ?></td>
|
||||
<td class="td_boolean"><?php echo $row['pp_use'] ? '예' : '아니오'; ?></td>
|
||||
<td class="td_mngsmall">
|
||||
<a href="./personalpayform.php?w=u&pp_id=<?php echo $row['pp_id']; ?>&<?php echo $qstr; ?>"><span class="sound_only"><?php echo $row['pp_id']; ?> </span>수정</a>
|
||||
<a href="./personalpaycopy.php?pp_id=<?php echo $row['pp_id']; ?>" class="personalpaycopy"><span class="sound_only"><?php echo $row['pp_id']; ?> </span>복사</a>
|
||||
<td class="td_mng td_mng_m">
|
||||
<a href="./personalpayform.php?w=u&pp_id=<?php echo $row['pp_id']; ?>&<?php echo $qstr; ?>" class="btn btn_03"><span class="sound_only"><?php echo $row['pp_id']; ?> </span>수정</a>
|
||||
<a href="./personalpaycopy.php?pp_id=<?php echo $row['pp_id']; ?>" class="personalpaycopy btn btn_02"><span class="sound_only"><?php echo $row['pp_id']; ?> </span>복사</a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
@ -141,8 +139,9 @@ $colspan = 10;
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div class="btn_list01 btn_list">
|
||||
<input type="submit" name="act_button" value="선택삭제" onclick="document.pressed=this.value">
|
||||
<div class="btn_fixed_top">
|
||||
<input type="submit" name="act_button" value="선택삭제" onclick="document.pressed=this.value" class="btn btn_02">
|
||||
<a href="./personalpayform.php" id="personalpay_add" class="btn btn_01">개인결제 추가</a>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
|
||||
@ -9,7 +9,7 @@ include_once (G5_ADMIN_PATH.'/admin.head.php');
|
||||
include_once(G5_PLUGIN_PATH.'/jquery-ui/datepicker.php');
|
||||
?>
|
||||
|
||||
<div class="local_sch02 local_sch">
|
||||
<div class="local_sch03 local_sch">
|
||||
|
||||
<div>
|
||||
<form name="frm_sale_today" action="./sale1today.php" method="get">
|
||||
|
||||
@ -131,17 +131,17 @@ $result = sql_query($sql);
|
||||
<tfoot>
|
||||
<tr>
|
||||
<td>합계</td>
|
||||
<td><?php echo number_format($tot['ordercount']); ?></td>
|
||||
<td><?php echo number_format($tot['orderprice']); ?></td>
|
||||
<td><?php echo number_format($tot['ordercoupon']); ?></td>
|
||||
<td><?php echo number_format($tot['receiptbank']); ?></td>
|
||||
<td><?php echo number_format($tot['receiptvbank']); ?></td>
|
||||
<td><?php echo number_format($tot['receiptiche']); ?></td>
|
||||
<td><?php echo number_format($tot['receiptcard']); ?></td>
|
||||
<td><?php echo number_format($tot['receipthp']); ?></td>
|
||||
<td><?php echo number_format($tot['receiptpoint']); ?></td>
|
||||
<td><?php echo number_format($tot['ordercancel']); ?></td>
|
||||
<td><?php echo number_format($tot['misu']); ?></td>
|
||||
<td class="td_num_right"><?php echo number_format($tot['ordercount']); ?></td>
|
||||
<td class="td_num_right"><?php echo number_format($tot['orderprice']); ?></td>
|
||||
<td class="td_num_right"><?php echo number_format($tot['ordercoupon']); ?></td>
|
||||
<td class="td_num_right"><?php echo number_format($tot['receiptbank']); ?></td>
|
||||
<td class="td_num_right"><?php echo number_format($tot['receiptvbank']); ?></td>
|
||||
<td class="td_num_right"><?php echo number_format($tot['receiptiche']); ?></td>
|
||||
<td class="td_num_right"><?php echo number_format($tot['receiptcard']); ?></td>
|
||||
<td class="td_num_right"><?php echo number_format($tot['receipthp']); ?></td>
|
||||
<td class="td_num_right"><?php echo number_format($tot['receiptpoint']); ?></td>
|
||||
<td class="td_num_right"><?php echo number_format($tot['ordercancel']); ?></td>
|
||||
<td class="td_num_right"><?php echo number_format($tot['misu']); ?></td>
|
||||
</tr>
|
||||
</tfoot>
|
||||
</table>
|
||||
|
||||
@ -132,17 +132,17 @@ $result = sql_query($sql);
|
||||
<tfoot>
|
||||
<tr>
|
||||
<td>합 계</td>
|
||||
<td><?php echo number_format($tot['ordercount']); ?></td>
|
||||
<td><?php echo number_format($tot['orderprice']); ?></td>
|
||||
<td><?php echo number_format($tot['ordercoupon']); ?></td>
|
||||
<td><?php echo number_format($tot['receiptbank']); ?></td>
|
||||
<td><?php echo number_format($tot['receiptvbank']); ?></td>
|
||||
<td><?php echo number_format($tot['receiptiche']); ?></td>
|
||||
<td><?php echo number_format($tot['receiptcard']); ?></td>
|
||||
<td><?php echo number_format($tot['receipthp']); ?></td>
|
||||
<td><?php echo number_format($tot['receiptpoint']); ?></td>
|
||||
<td><?php echo number_format($tot['ordercancel']); ?></td>
|
||||
<td><?php echo number_format($tot['misu']); ?></td>
|
||||
<td class="td_num_right"><?php echo number_format($tot['ordercount']); ?></td>
|
||||
<td class="td_num_right"><?php echo number_format($tot['orderprice']); ?></td>
|
||||
<td class="td_num_right"><?php echo number_format($tot['ordercoupon']); ?></td>
|
||||
<td class="td_num_right"><?php echo number_format($tot['receiptbank']); ?></td>
|
||||
<td class="td_num_right"><?php echo number_format($tot['receiptvbank']); ?></td>
|
||||
<td class="td_num_right"><?php echo number_format($tot['receiptiche']); ?></td>
|
||||
<td class="td_num_right"><?php echo number_format($tot['receiptcard']); ?></td>
|
||||
<td class="td_num_right"><?php echo number_format($tot['receipthp']); ?></td>
|
||||
<td class="td_num_right"><?php echo number_format($tot['receiptpoint']); ?></td>
|
||||
<td class="td_num_right"><?php echo number_format($tot['ordercancel']); ?></td>
|
||||
<td class="td_num_right"><?php echo number_format($tot['misu']); ?></td>
|
||||
</tr>
|
||||
</tfoot>
|
||||
</table>
|
||||
|
||||
@ -75,7 +75,7 @@ $result = sql_query($sql);
|
||||
<td class="td_alignc"><a href="./orderform.php?od_id=<?php echo $row['od_id']; ?>"><?php echo $row['od_id']; ?></a></td>
|
||||
<td class="td_name"><?php echo $href; ?><?php echo $row['od_name']; ?></a></td>
|
||||
<td class="td_numsum"><?php echo number_format($row['orderprice']); ?></td>
|
||||
<td class="td_numcoupon"><?php echo number_format($row['couponprice']); ?></td>
|
||||
<td class="td_numincome"><?php echo number_format($row['couponprice']); ?></td>
|
||||
<td class="td_numincome"><?php echo number_format($receipt_bank); ?></td>
|
||||
<td class="td_numincome"><?php echo number_format($receipt_vbank); ?></td>
|
||||
<td class="td_numincome"><?php echo number_format($receipt_iche); ?></td>
|
||||
@ -106,16 +106,16 @@ $result = sql_query($sql);
|
||||
<tfoot>
|
||||
<tr>
|
||||
<td colspan="2">합 계</td>
|
||||
<td><?php echo number_format($tot['orderprice']); ?></td>
|
||||
<td><?php echo number_format($tot['coupon']); ?></td>
|
||||
<td><?php echo number_format($tot['receipt_bank']); ?></td>
|
||||
<td><?php echo number_format($tot['receipt_vbank']); ?></td>
|
||||
<td><?php echo number_format($tot['receipt_iche']); ?></td>
|
||||
<td><?php echo number_format($tot['receipt_card']); ?></td>
|
||||
<td><?php echo number_format($tot['receipt_hp']); ?></td>
|
||||
<td><?php echo number_format($tot['receipt_point']); ?></td>
|
||||
<td><?php echo number_format($tot['ordercancel']); ?></td>
|
||||
<td><?php echo number_format($tot['misu']); ?></td>
|
||||
<td class="td_num_right"><?php echo number_format($tot['orderprice']); ?></td>
|
||||
<td class="td_num_right"><?php echo number_format($tot['coupon']); ?></td>
|
||||
<td class="td_num_right"><?php echo number_format($tot['receipt_bank']); ?></td>
|
||||
<td class="td_num_right"><?php echo number_format($tot['receipt_vbank']); ?></td>
|
||||
<td class="td_num_right"><?php echo number_format($tot['receipt_iche']); ?></td>
|
||||
<td class="td_num_right"><?php echo number_format($tot['receipt_card']); ?></td>
|
||||
<td class="td_num_right"><?php echo number_format($tot['receipt_hp']); ?></td>
|
||||
<td class="td_num_right"><?php echo number_format($tot['receipt_point']); ?></td>
|
||||
<td class="td_num_right"><?php echo number_format($tot['ordercancel']); ?></td>
|
||||
<td class="td_num_right"><?php echo number_format($tot['misu']); ?></td>
|
||||
</tr>
|
||||
</tfoot>
|
||||
</table>
|
||||
|
||||
@ -126,17 +126,17 @@ $result = sql_query($sql);
|
||||
<tfoot>
|
||||
<tr>
|
||||
<td>합 계</td>
|
||||
<td><?php echo number_format($tot['ordercount']); ?></td>
|
||||
<td><?php echo number_format($tot['orderprice']); ?></td>
|
||||
<td><?php echo number_format($tot['ordercoupon']); ?></td>
|
||||
<td><?php echo number_format($tot['receiptbank']); ?></td>
|
||||
<td><?php echo number_format($tot['receiptvbank']); ?></td>
|
||||
<td><?php echo number_format($tot['receiptiche']); ?></td>
|
||||
<td><?php echo number_format($tot['receiptcard']); ?></td>
|
||||
<td><?php echo number_format($tot['receipthp']); ?></td>
|
||||
<td><?php echo number_format($tot['receiptpoint']); ?></td>
|
||||
<td><?php echo number_format($tot['ordercancel']); ?></td>
|
||||
<td><?php echo number_format($tot['misu']); ?></td>
|
||||
<td class="td_num_right"><?php echo number_format($tot['ordercount']); ?></td>
|
||||
<td class="td_num_right"><?php echo number_format($tot['orderprice']); ?></td>
|
||||
<td class="td_num_right"><?php echo number_format($tot['ordercoupon']); ?></td>
|
||||
<td class="td_num_right"><?php echo number_format($tot['receiptbank']); ?></td>
|
||||
<td class="td_num_right"><?php echo number_format($tot['receiptvbank']); ?></td>
|
||||
<td class="td_num_right"><?php echo number_format($tot['receiptiche']); ?></td>
|
||||
<td class="td_num_right"><?php echo number_format($tot['receiptcard']); ?></td>
|
||||
<td class="td_num_right"><?php echo number_format($tot['receipthp']); ?></td>
|
||||
<td class="td_num_right"><?php echo number_format($tot['receiptpoint']); ?></td>
|
||||
<td class="td_num_right"><?php echo number_format($tot['ordercancel']); ?></td>
|
||||
<td class="td_num_right"><?php echo number_format($tot['misu']); ?></td>
|
||||
</tr>
|
||||
</tfoot>
|
||||
</table>
|
||||
|
||||
@ -63,7 +63,7 @@ include_once (G5_ADMIN_PATH.'/admin.head.php');
|
||||
<input type="hidden" id="sc_id_<?php echo $i; ?>" name="sc_id[<?php echo $i; ?>]" value="<?php echo $row['sc_id']; ?>">
|
||||
<input type="checkbox" id="chk_<?php echo $i; ?>" name="chk[]" value="<?php echo $i; ?>" title="내역선택">
|
||||
</td>
|
||||
<td><?php echo $row['sc_name']; ?></td>
|
||||
<td class="td_left"><?php echo $row['sc_name']; ?></td>
|
||||
<td class="td_postalbig"><?php echo $row['sc_zip1'].' ~ '.$row['sc_zip2']; ?></td>
|
||||
<td class="td_sendcost_add"><?php echo number_format($row['sc_price']); ?></td>
|
||||
</tr>
|
||||
@ -78,7 +78,7 @@ include_once (G5_ADMIN_PATH.'/admin.head.php');
|
||||
</div>
|
||||
|
||||
<div class="btn_list01 btn_list">
|
||||
<input type="submit" name="act_button" value="선택삭제" onclick="document.pressed=this.value">
|
||||
<input type="submit" name="act_button" value="선택삭제" onclick="document.pressed=this.value" class="btn_frmline">
|
||||
</div>
|
||||
|
||||
</form>
|
||||
@ -125,7 +125,7 @@ include_once (G5_ADMIN_PATH.'/admin.head.php');
|
||||
</div>
|
||||
|
||||
<div class="btn_confirm01 btn_confirm">
|
||||
<input type="submit" value="확인" class="btn_submit">
|
||||
<input type="submit" value="확인" class="btn_submit btn">
|
||||
</div>
|
||||
|
||||
</form>
|
||||
|
||||
@ -57,7 +57,7 @@ $listall = '<a href="'.$_SERVER['SCRIPT_NAME'].'" class="ov_listall">전체목
|
||||
|
||||
<div class="local_ov01 local_ov">
|
||||
<?php echo $listall; ?>
|
||||
<?php echo $total_count; ?>건
|
||||
<span class="btn_ov01"><span class="ov_txt">전체 </span><span class="ov_num"> <?php echo $total_count; ?>건</span></span>
|
||||
</div>
|
||||
|
||||
<form name="flist" class="local_sch01 local_sch">
|
||||
@ -112,7 +112,7 @@ $listall = '<a href="'.$_SERVER['SCRIPT_NAME'].'" class="ov_listall">전체목
|
||||
?>
|
||||
<tr class="<?php echo $bg; ?>">
|
||||
<td class="td_num"><?php echo $num; ?></td>
|
||||
<td>
|
||||
<td class="td_left">
|
||||
<a href="<?php echo $href; ?>"><?php echo get_it_image($row['it_id'], 50, 50); ?> <?php echo cut_str($row['it_name'],30); ?></a>
|
||||
</td>
|
||||
<td class="td_num"><?php echo $row['it_id_cnt']; ?></td>
|
||||
|
||||
Reference in New Issue
Block a user