From d97f27f2fad7db258a4964f0d9fc52fa5803b0a0 Mon Sep 17 00:00:00 2001 From: loves2tu Date: Thu, 30 Dec 2021 08:37:12 +0000 Subject: [PATCH] =?UTF-8?q?=EA=B5=AC=EA=B8=80=20=ED=8C=90=EB=A7=A4?= =?UTF-8?q?=EC=9E=90=EC=84=BC=ED=84=B0=20=ED=94=BC=EB=93=9C=20=20-=20?= =?UTF-8?q?=EC=83=81=ED=92=88=20=EC=9E=AC=EA=B3=A0=EC=97=90=20=EB=94=B0?= =?UTF-8?q?=EB=A5=B8=20out=5Fof=5Fstock=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- shop/price/google_feed.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/shop/price/google_feed.php b/shop/price/google_feed.php index 8e395652e..cd919fd9e 100644 --- a/shop/price/google_feed.php +++ b/shop/price/google_feed.php @@ -19,7 +19,7 @@ for ($i = 0; $row = sql_fetch_array($result); $i++ ) { $row['ca_adult_parent4']); // 4depth 성인인증 } -$sql =" SELECT a.*, (SELECT MIN(`io_stock_qty`) FROM `{$g5['g5_shop_item_option_table']}` WHERE `it_id` = a.`it_id` GROUP BY `it_id`) AS in_stock +$sql =" SELECT a.*, IFNULL((SELECT MIN(`io_stock_qty`) FROM `{$g5['g5_shop_item_option_table']}` WHERE `it_id` = a.`it_id` GROUP BY `it_id`), a.`it_stock_qty`) AS in_stock FROM `{$g5['g5_shop_item_table']}` as a where a.`it_use` = '1' and a.`it_soldout` = '0' and a.`it_tel_inq` = '0' and a.`it_price` > '0' order by a.`ca_id`"; $result = sql_query($sql); @@ -49,7 +49,9 @@ for ($i = 0; $row = sql_fetch_array($result); $i++) { } $stock = "in_stock"; - if($row['in_stock'] != null) { + if($row['it_stock_qty'] <= 0) { + $stock = "out_of_stock"; + } else { if($row['in_stock'] <= 0) $stock = "out_of_stock"; }