From a099bb6e703d18b55061add00d5dce3a7f45c72d Mon Sep 17 00:00:00 2001 From: Anyon Date: Wed, 9 May 2018 11:26:42 +0800 Subject: [PATCH] =?UTF-8?q?[=E6=9B=B4=E6=96=B0]=E5=BE=AE=E5=95=86=E5=9F=8E?= =?UTF-8?q?=E5=BA=93=E5=AD=98=E7=AE=A1=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/store/controller/Goods.php | 39 ++++++++++++++++ application/store/service/GoodsService.php | 4 +- application/store/view/goods/index.html | 5 +++ application/store/view/goods/stock.html | 52 ++++++++++++++++++++++ 4 files changed, 98 insertions(+), 2 deletions(-) create mode 100644 application/store/view/goods/stock.html diff --git a/application/store/controller/Goods.php b/application/store/controller/Goods.php index f9aa540e5..fb8d9b7c4 100644 --- a/application/store/controller/Goods.php +++ b/application/store/controller/Goods.php @@ -223,6 +223,45 @@ class Goods extends BasicAdmin return ['main' => $main, 'list' => $list]; } + /** + * 商品库存信息更新 + * @return string + * @throws \think\Exception + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\ModelNotFoundException + * @throws \think\exception\DbException + * @throws \think\exception\PDOException + */ + public function stock() + { + if (!$this->request->post()) { + $goods_id = $this->request->get('id'); + $goods = Db::name('StoreGoods')->where(['id' => $goods_id, 'is_deleted' => '0'])->find(); + empty($goods) && $this->error('该商品无法操作入库操作!'); + $where = ['goods_id' => $goods_id, 'status' => '1', 'is_deleted' => '0']; + $goods['list'] = Db::name('StoreGoodsList')->where($where)->select(); + return $this->fetch('', ['vo' => $goods]); + } + // 入库保存 + $goods_id = $this->request->post('id'); + list($post, $data) = [$this->request->post(), []]; + foreach ($post['spec'] as $key => $spec) { + if ($post['stock'][$key] > 0) { + $data[] = [ + 'goods_stock' => $post['stock'][$key], + 'stock_desc' => $this->request->post('desc'), + 'goods_spec' => $spec, 'goods_id' => $goods_id, + ]; + } + } + empty($data) && $this->error('无需入库的数据哦!'); + if (Db::name('StoreGoodsStock')->insertAll($data) !== false) { + GoodsService::syncGoodsStock($goods_id); + $this->success('商品入库成功!', ''); + } + $this->error('商品入库失败,请稍候再试!'); + } + /** * 删除商品 * @throws \think\Exception diff --git a/application/store/service/GoodsService.php b/application/store/service/GoodsService.php index 75c5c07f9..7ef6c6a7f 100644 --- a/application/store/service/GoodsService.php +++ b/application/store/service/GoodsService.php @@ -99,7 +99,7 @@ class GoodsService { // 检查商品是否需要更新库存 $map = ['id' => $goods_id, 'is_deleted' => '0']; - if (!($goods = Db::name('Goods')->where($map)->find())) { + if (!($goods = Db::name('StoreGoods')->where($map)->find())) { return ['code' => 0, 'msg' => '指定商品信息无法同步库存!']; } // 统计入库信息 @@ -109,7 +109,7 @@ class GoodsService // 统计销售信息 $saleField = 'goods_id,goods_spec,ifnull(sum(number), 0) goods_sale'; $saleWhere = ['status' => '1', 'is_deleted' => '0', 'goods_id' => $goods_id]; - $saleList = (array)Db::name('StoreOrderList')->field($saleField)->where($saleWhere)->group('goods_id,goods_spec')->select(); + $saleList = (array)Db::name('StoreOrderGoods')->field($saleField)->where($saleWhere)->group('goods_id,goods_spec')->select(); // 库存置零 list($where, $total_sale) = [['goods_id' => $goods_id], 0]; Db::name('StoreGoodsList')->where($where)->update(['goods_stock' => 0, 'goods_sale' => 0]); diff --git a/application/store/view/goods/index.html b/application/store/view/goods/index.html index b47420777..6b33ced59 100644 --- a/application/store/view/goods/index.html +++ b/application/store/view/goods/index.html @@ -159,6 +159,11 @@ 编辑 + + | + 入库 + + | 下架 diff --git a/application/store/view/goods/stock.html b/application/store/view/goods/stock.html new file mode 100644 index 000000000..d712b1f9b --- /dev/null +++ b/application/store/view/goods/stock.html @@ -0,0 +1,52 @@ +