admin_goods_1203_2

This commit is contained in:
dengbw
2021-12-03 15:26:43 +08:00
parent 60536a0073
commit c065fab653
+4 -4
View File
@@ -103,10 +103,10 @@ class Goods extends HD_Controller
if ($res_biz && $res_addr) {
$str_ids = implode(',', array_column($res_biz, 'id'));
$str_addr_ids = implode(',', array_column($res_addr, 'id'));
$where["biz_id in ({$str_ids}) or addr_id in ({$str_addr_ids})"] = null;
$where_1["biz_id in ({$str_ids}) or addr_id in ({$str_addr_ids})"] = null;
$where_2["m.biz_id in ({$str_ids}) or m.addr_id in ({$str_addr_ids})"] = null;
$where_3["m.biz_id in ({$str_ids}) or m.addr_id in ({$str_addr_ids})"] = null;
$where["(biz_id in ({$str_ids}) or addr_id in ({$str_addr_ids}))"] = null;
$where_1["(biz_id in ({$str_ids}) or addr_id in ({$str_addr_ids}))"] = null;
$where_2["(m.biz_id in ({$str_ids}) or m.addr_id in ({$str_addr_ids}))"] = null;
$where_3["(m.biz_id in ({$str_ids}) or m.addr_id in ({$str_addr_ids}))"] = null;
} else if ($res_biz) {
$str_ids = implode(',', array_column($res_biz, 'id'));
$where["biz_id in ({$str_ids})"] = null;