DepotGoods.php 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. <?php
  2. namespace app\purchase\controller;
  3. use app\common\model\SeckillActivity;
  4. use app\common\model\SeckillGoodsItem;
  5. use app\common\model\StoreGoodsItem;
  6. use app\common\service\PurchaseLogic;
  7. use library\Controller;
  8. use library\tools\Data;
  9. use think\Db;
  10. use function AlibabaCloud\Client\value;
  11. /**
  12. * 仓库商品
  13. * Class DepotGoods
  14. * @package app\purchase\controller
  15. */
  16. class DepotGoods extends Controller
  17. {
  18. /**
  19. * 绑定数据表
  20. * @var string
  21. */
  22. protected $table = 'DepotGoods';
  23. /**
  24. * 列表
  25. * @auth true
  26. * @menu true
  27. * @throws \think\Exception
  28. * @throws \think\db\exception\DataNotFoundException
  29. * @throws \think\db\exception\ModelNotFoundException
  30. * @throws \think\exception\DbException
  31. * @throws \think\exception\PDOException
  32. */
  33. public function index()
  34. {
  35. $lid = input('id',0);
  36. $search_name = input('search_name','');
  37. $this->title = '商品盘点' ;
  38. $this->lid = $lid;
  39. $this->depot_list = \app\common\model\Depot::where('is_deleted',0)->column('name',"id");
  40. $where = [];
  41. if($lid)$where[]= ['v.depot_id','=',$lid];
  42. if($search_name) $where[] = ['g.name','like',"%".$search_name."%"];
  43. $list = $this->_query($this->table)->alias('v')
  44. ->field('v.create_at,v.sort,v.id,v.online_id,v.goods_id,v.depot_id,g.name as goods_name,g.cover,g.name,g.low_price,g.status,g.is_deleted')
  45. ->where($where)
  46. ->join('BaseGoods g','v.goods_id = g.id','LEFT')
  47. ->order('v.sort desc ,v.id desc')
  48. ->page();
  49. }
  50. /**
  51. * 数据列表处理
  52. * @auth true
  53. * @menu true
  54. * @param array $data
  55. * @throws \think\db\exception\DataNotFoundException
  56. * @throws \think\db\exception\ModelNotFoundException
  57. * @throws \think\exception\DbException
  58. */
  59. protected function _index_page_filter(&$data)
  60. {
  61. foreach ($data as &$v){
  62. $v['list'] = Db::name('DepotGoodsItem')->where('goods_id', $v['id'])->select();
  63. }
  64. }
  65. /**
  66. * 可添加商品列表
  67. * @auth true
  68. * @menu true
  69. * @param array $data
  70. * @throws \think\db\exception\DataNotFoundException
  71. * @throws \think\db\exception\ModelNotFoundException
  72. * @throws \think\exception\DbException
  73. */
  74. public function goods_list()
  75. {
  76. $lid = input('id');
  77. $this->title = Db::name('Depot')->where('id',$lid)->value('name');
  78. $this->lid = $lid;
  79. $name = input('name');
  80. $sel_ids = Db::name('DepotGoods')->where(['depot_id'=>$lid])->column('goods_id');
  81. $where = [];
  82. $where[]= ['is_deleted','=',0];
  83. $where[]= ['status','=',1];
  84. if(!empty($sel_ids)) $where[] = ['id','not in',$sel_ids];
  85. if($name) $where[] = ['name','like','%'.$name.'%'];
  86. $list = $this->_query('StoreGoods')
  87. ->field('id,name,cover,low_price')
  88. ->where($where)
  89. ->order('sort desc ,id desc')->page();
  90. return $this->fetch('goods_list');
  91. }
  92. /**
  93. * ajax添加商品
  94. * @auth true
  95. * @menu true
  96. * @param array $data
  97. * @throws \think\db\exception\DataNotFoundException
  98. * @throws \think\db\exception\ModelNotFoundException
  99. * @throws \think\exception\DbException
  100. */
  101. public function ajax_add()
  102. {
  103. $sel_goods = input('post.ids');
  104. $depot_id = input('post.depot_id');
  105. foreach ($sel_goods as $goods_id){
  106. $int_data[]=[
  107. 'depot_id' => $depot_id,
  108. 'goods_id' => $goods_id,
  109. 'sort' => 0,
  110. 'create_at' => date("Y-m-d H:i:s")
  111. ];
  112. $goods_item = StoreGoodsItem::where('goods_id',$goods_id)->field("goods_id,id as spec_id,goods_spec")->select()->toArray();
  113. array_walk($goods_item,function (&$v,$k)use($depot_id,$goods_id){
  114. $v['depot_id'] = $depot_id;
  115. Data::save('DepotGoodsItem',$v,'depot_id',['depot_id'=>$depot_id,'goods_id'=>$goods_id,'spec_id'=>$v['spec_id']]);
  116. });
  117. }
  118. Db::name('DepotGoods')->insertAll($int_data);
  119. return json_encode(['code'=>200]);
  120. }
  121. /**
  122. * 商品添加到商城
  123. * @auth true
  124. * @menu true
  125. * @param array $data
  126. * @throws \think\db\exception\DataNotFoundException
  127. * @throws \think\db\exception\ModelNotFoundException
  128. * @throws \think\exception\DbException
  129. */
  130. public function online()
  131. {
  132. if($this->request->isAjax()) {
  133. $id = input('post.id');
  134. PurchaseLogic::deoptGoodsOnline($id);
  135. $this->success('上架成功');
  136. }
  137. }
  138. /**
  139. * 商品库存入库
  140. * @auth true
  141. * @throws \think\Exception
  142. * @throws \think\db\exception\DataNotFoundException
  143. * @throws \think\db\exception\ModelNotFoundException
  144. * @throws \think\exception\DbException
  145. * @throws \think\exception\PDOException
  146. */
  147. public function stock()
  148. {
  149. if ($this->request->isGet()) {
  150. $id = $this->request->get('id');
  151. $depot_goods = Db::name('DepotGoods')->where(['id' => $id])->find();
  152. $list = Db::name('DepotGoodsItem')->where(['goods_id' => $depot_goods['id'],'depot_id'=>$depot_goods['depot_id']])->select();
  153. $this->fetch('', ['list' => $list,'depot_id'=>$depot_goods['depot_id'],'goods_id'=>$depot_goods['id']]);
  154. } else {
  155. list($post, $data) = [$this->request->post(), []];
  156. if(!$post['depot_id'] || !$post['goods_id'] ||!$post['order_id']) $this->error('参数错误');
  157. if($post['type'] == 1) {
  158. $depot_order = Db::name('SupplierOrder')->where('id',$post['order_id'])->value('id');
  159. if(!$depot_order) $this->error('供货订单未录入');
  160. }else{
  161. $goods_order = Db::name('GoodsOrder')->where('id',$post['order_id'])->value('id');
  162. if(!$goods_order) $this->error('商品订单不存在');
  163. }
  164. if (isset($post['spec_id']) && is_array($post['spec_id'])) {
  165. foreach (array_keys($post['spec_id']) as $key) {
  166. if ($post['goods_number'][$key] > 0)
  167. array_push($data, [
  168. 'depot_id' => $post['depot_id'],
  169. 'order_id' => $post['order_id'],
  170. 'goods_id' => $post['goods_id'],
  171. 'spec_id' => $post['spec_id'][$key],
  172. 'goods_spec' => $post['goods_spec'][$key],
  173. 'num' => $post['goods_number'][$key],
  174. 'remark' => $post['remark'],
  175. 'type' => $post['type'],
  176. ]);
  177. }
  178. if (!empty($data)) {
  179. Db::startTrans();
  180. Db::name('DepotGoodsInfo')->insertAll($data);// 生成入库记录
  181. foreach ($data as $dv) {
  182. if($post['type'] == 1){
  183. Db::name('DepotGoodsItem')->where(['goods_id'=>$dv['goods_id'],'depot_id'=>$dv['depot_id'],'spec_id'=>$dv['spec_id']])
  184. ->update(['stock'=>Db::raw('stock +'.$dv['num']),'base_stock'=>Db::raw('base_stock + '.$dv['num'])]);
  185. }else{
  186. Db::name('DepotGoodsItem')->where(['goods_id'=>$dv['goods_id'],'depot_id'=>$dv['depot_id'],'spec_id'=>$dv['spec_id']])
  187. ->update(['stock'=>Db::raw('stock -'.$dv['num'])]);
  188. }
  189. }
  190. Db::commit();
  191. $post['type'] == 1 ?$this->success('商品信息入库成功!') :$this->success('商品信息出库成功!');
  192. }
  193. }
  194. $this->error('没有入库数据!');
  195. }
  196. }
  197. /**
  198. * 表单数据处理
  199. * @auth true
  200. * @menu true
  201. * @param array $data
  202. */
  203. protected function _form_filter(&$data)
  204. {
  205. }
  206. protected function _form_result($result){
  207. }
  208. }