first commit 2
This commit is contained in:
@@ -0,0 +1,82 @@
|
||||
<?php
|
||||
include_once('./_common.php');
|
||||
|
||||
$pattern = '#[/\'\"%=*\#\(\)\|\+\&\!\$~\{\}\[\]`;:\?\^\,]#';
|
||||
|
||||
$it_id = isset($_POST['it_id']) ? preg_replace($pattern, '', $_POST['it_id']) : '';
|
||||
//$opt_id = isset($_POST['opt_id']) ? preg_replace($pattern, '', $_POST['opt_id']) : '';
|
||||
$opt_id = isset($_POST['opt_id']) ? addslashes(sql_real_escape_string(preg_replace(G5_OPTION_ID_FILTER, '', $_POST['opt_id']))) : '';
|
||||
$idx = isset($_POST['idx']) ? preg_replace('#[^0-9]#', '', $_POST['idx']) : 0;
|
||||
$sel_count = isset($_POST['sel_count']) ? preg_replace('#[^0-9]#', '', $_POST['sel_count']) : 0;
|
||||
$op_title = isset($_POST['op_title']) ? strip_tags($_POST['op_title']) : '';
|
||||
|
||||
$it = get_shop_item($it_id, true);
|
||||
|
||||
if( !$it ){
|
||||
die('');
|
||||
}
|
||||
|
||||
/*
|
||||
옵션명 비슷한 부분 오류 수정
|
||||
수정자 : IT FOR ONE
|
||||
수정 내용 : and io_id like '$opt_id%' => and io_id like '$opt_id".chr(30)."'
|
||||
*/
|
||||
$sql = " select * from {$g5['g5_shop_item_option_table']}
|
||||
where io_type = '0'
|
||||
and it_id = '$it_id'
|
||||
and io_use = '1'
|
||||
and io_id like '$opt_id".chr(30)."%'
|
||||
order by io_no asc ";
|
||||
$result = sql_query($sql);
|
||||
|
||||
$option_title = '선택';
|
||||
|
||||
if( $op_title && ($op_title !== $option_title) && $it['it_option_subject'] ){
|
||||
$array_tmps = explode(',', $it['it_option_subject']);
|
||||
if( isset($array_tmps[$idx+1]) && $array_tmps[$idx+1] ){
|
||||
$option_title = $array_tmps[$idx+1];
|
||||
}
|
||||
}
|
||||
|
||||
$str = '<option value="">'.$option_title.'</option>';
|
||||
$opt = array();
|
||||
|
||||
for($i=0; $row=sql_fetch_array($result); $i++) {
|
||||
$val = explode(chr(30), $row['io_id']);
|
||||
$key = $idx + 1;
|
||||
|
||||
if(!strlen($val[$key]))
|
||||
continue;
|
||||
|
||||
$continue = false;
|
||||
foreach($opt as $v) {
|
||||
if(strval($v) === strval($val[$key])) {
|
||||
$continue = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
if($continue)
|
||||
continue;
|
||||
|
||||
$opt[] = strval($val[$key]);
|
||||
|
||||
if($key + 1 < $sel_count) {
|
||||
$str .= PHP_EOL.'<option value="'.$val[$key].'">'.$val[$key].'</option>';
|
||||
} else {
|
||||
if($row['io_price'] >= 0)
|
||||
$price = ' + '.number_format($row['io_price']).'원';
|
||||
else
|
||||
$price = ' '.number_format($row['io_price']).'원';
|
||||
|
||||
$io_stock_qty = get_option_stock_qty($it_id, $row['io_id'], $row['io_type']);
|
||||
|
||||
if($io_stock_qty < 1)
|
||||
$soldout = ' [품절]';
|
||||
else
|
||||
$soldout = '';
|
||||
|
||||
$str .= PHP_EOL.'<option value="'.$val[$key].','.$row['io_price'].','.$io_stock_qty.'">'.$val[$key].$price.$soldout.'</option>';
|
||||
}
|
||||
}
|
||||
|
||||
echo $str;
|
||||
Reference in New Issue
Block a user