1단계 선택옵션에서 재고수량이 음수일 때 품절표시되지 않는 오류 수정
This commit is contained in:
@ -982,7 +982,7 @@ function get_item_options($it_id, $subject)
|
||||
else
|
||||
$price = ' '.number_format($row['io_price']).'원';
|
||||
|
||||
if(!$row['io_stock_qty'])
|
||||
if($row['io_stock_qty'] < 1)
|
||||
$soldout = ' [품절]';
|
||||
else
|
||||
$soldout = '';
|
||||
|
||||
Reference in New Issue
Block a user