[更新]修改商品库存

This commit is contained in:
Anyon 2019-04-03 18:55:46 +08:00
parent ee73737d84
commit a2c36ffc63
2 changed files with 8 additions and 4 deletions

View File

@ -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);

View File

@ -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}-->