mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
[更新]修改商品库存
This commit is contained in:
parent
ee73737d84
commit
a2c36ffc63
@ -83,9 +83,11 @@ class Goods extends Controller
|
||||
return $this->fetch('', ['vo' => $goods]);
|
||||
}
|
||||
list($post, $data) = [$this->request->post(), []];
|
||||
if (isset($post['id']) && isset($post['spec']) && is_array($post['spec'])) {
|
||||
foreach ($post['spec'] as $k => $v) if ($v > 0) array_push($data, [
|
||||
'goods_id' => $post['id'], 'goods_spec' => $k, 'number_stock' => $v,
|
||||
if (isset($post['id']) && isset($post['goods_id']) && is_array($post['goods_id'])) {
|
||||
foreach (array_keys($post['goods_id']) as $key) if ($post['number'][$key] > 0) array_push($data, [
|
||||
'goods_id' => $post['goods_id'][$key],
|
||||
'goods_spec' => $post['goods_spec'][$key],
|
||||
'number_stock' => $post['number'][$key],
|
||||
]);
|
||||
if (!empty($data)) {
|
||||
Db::name('StoreGoodsStock')->insertAll($data);
|
||||
|
@ -41,7 +41,9 @@
|
||||
<input class="layui-input text-center layui-bg-gray border-0 padding-left-0" disabled value="{$goods.number_stock-$goods.number_sales} ">
|
||||
</td>
|
||||
<td class="padding-0" width="10%">
|
||||
<input class="layui-input text-center border-0 padding-left-0" onblur="this.value=parseInt(this.value)||0" name="spec[{$goods.goods_spec}]" value="0">
|
||||
<input type="hidden" name="goods_id[]" value="{$goods.goods_id|default=''}">
|
||||
<input type="hidden" name="goods_spec[]" value="{$goods.goods_spec|default=''}">
|
||||
<input class="layui-input text-center border-0 padding-left-0" onblur="this.value=parseInt(this.value)||0" name="number[]" value="0">
|
||||
</td>
|
||||
</tr>
|
||||
<!--{/foreach}-->
|
||||
|
Loading…
x
Reference in New Issue
Block a user