mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
Update Goods.php
This commit is contained in:
parent
ae9ebf102b
commit
6bcd71f0e4
@ -172,8 +172,8 @@ class Goods extends Controller
|
|||||||
[$data['price_market'], $data['price_selling']] = [0, 0];
|
[$data['price_market'], $data['price_selling']] = [0, 0];
|
||||||
[$count, $items] = [0, array_column(json_decode($data['data_items'], true), 0)];
|
[$count, $items] = [0, array_column(json_decode($data['data_items'], true), 0)];
|
||||||
foreach ($items as $item) if ($item['status'] > 0) {
|
foreach ($items as $item) if ($item['status'] > 0) {
|
||||||
if ($data['price_market'] > $item['market']) $data['price_market'] = $item['market'];
|
if ($data['price_market'] === 0 || $data['price_market'] > $item['market']) $data['price_market'] = $item['market'];
|
||||||
if ($data['price_selling'] > $item['selling']) $data['price_selling'] = $item['selling'];
|
if ($data['price_selling'] === 0 || $data['price_selling'] > $item['selling']) $data['price_selling'] = $item['selling'];
|
||||||
$count++;
|
$count++;
|
||||||
}
|
}
|
||||||
if (empty($count)) $this->error('无效的的商品价格信息!');
|
if (empty($count)) $this->error('无效的的商品价格信息!');
|
||||||
|
Loading…
x
Reference in New Issue
Block a user