CombindStock.php 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  1. <?php
  2. declare (strict_types = 1);
  3. namespace app\admin\controller;
  4. use app\admin\model\CombindBninfo;use app\admin\model\CombindStockInfo;use app\admin\model\GoodCombind;use app\admin\model\GoodStock;use app\admin\model\GoodStockInfo;use think\App;use think\facade\Db;use think\facade\Validate;
  5. class CombindStock extends Base
  6. {
  7. private $combind ;
  8. private $combindStock ;
  9. private $combindStockInfo ;
  10. private $combindBninfo;
  11. public function __construct(App $app) {
  12. parent::__construct($app);
  13. $this->combindStock =new \app\admin\model\CombindStock();
  14. $this->combindStockInfo =new \app\admin\model\CombindStockInfo();
  15. $this->combindBninfo =new \app\admin\model\CombindBninfo();
  16. $this->combind =new \app\admin\model\GoodCombind();
  17. }
  18. public function list(){
  19. $param=$this->request->only(['spuCode'=>'','wsm_code'=>'','good_name'=>'','cat_id'=>'','status'=>'','flag'=>'',
  20. "create_start"=>"2023-01-01 00:00:00","create_end"=>date("Y-m-d H:i:s"),"page"=>1,"size"=>15],'post','trim');
  21. $where=[["combind_stock.createtime","between",[$param['create_start']?: '2023-01-01 00:00:00',$param['create_end']?: date("Y-m-d H:i:s")]]];
  22. $param['spuCode']==''?:$where[]=["combind_stock.spuCode","like","%{$param['spuCode']}%"];
  23. $param['wsm_code']==''?: $where[]=["combind_stock.wsm_code","like","%{$param['wsm_code']}%"];
  24. $param['good_name']==''?: $where[]=["combind_stock.good_name","like","%{$param['good_name']}%"];
  25. $param['cat_id']==''?: $where[]=["good.cat_id","=",$param['cat_id']];
  26. $param['flag']==''?: $where[]=["combind_stock.flag","=",$param['flag']];
  27. $param['status']==''?: $where[]=["combind_stock.status","=",$param['status']];
  28. $list = $this->combindStock->alias("a")->withJoin(["wsminfo","good"],"left")->where($where)->order("id desc")->paginate
  29. (["page"=>$param['page'],"list_rows"=>$param['size']]);
  30. return app_show(0,"获取成功",["list"=>$list->items(),"count"=>$list->total()]);
  31. }
  32. /**@param spuCode 商品编号
  33. **@param wsm_code 仓库编号
  34. **@param stock_num 库存数量
  35. **@param flag 0 减库存 1 加库存
  36. * @return \think\response\Json|void
  37. */
  38. public function create(){
  39. $param =$this->request->only(["spuCode"=>"","wsm_code"=>"","stock_num"=>"",'flag'=>''],"post","trim");
  40. $valid =Validate::rule([
  41. "spuCode|商品编号"=>"require",
  42. "wsm_code|仓库编号"=>"require",
  43. "stock_num|库存数量"=>"require|number|gt:0",
  44. "flag|库存变化标识"=>"require|number|in:0,1"]);
  45. if($valid->check($param)==false)return error_show(1004,$valid->getError());
  46. $goodbasic =Db::name("good_basic")->where("spuCode",$param["spuCode"])->find();
  47. if($goodbasic==false) return error_show(1004,"未找到组合商品信息");
  48. if($goodbasic['is_combind']==0) return error_show(1004,'商品不是组合商品');
  49. if($param['flag']==0){//减库存 先判断库存是否足够
  50. $stock = (new GoodStock())->where(["spuCode"=>$param['spuCode'],"wsm_code"=>$param["wsm_code"]])
  51. ->findOrEmpty();
  52. if($stock->isEmpty())return error_show(1004,'商品库存信息为找到');
  53. if($stock->usable_stock< $param['stock_num'])return error_show(1004,'商品库存数不足');
  54. $isT = (new \app\admin\model\Good())->where(['spuCode'=>$param['spuCode']])->findOrEmpty();
  55. if($isT->isEmpty()==false){
  56. if($isT->usable_stock< $param['stock_num'])return error_show(1004,'商品库存数不足');
  57. }
  58. }
  59. $combindList = $this->combind->where(["spuCode"=>$param["spuCode"],"is_del"=>0])->select()->toArray();
  60. if(empty($combindList)) return error_show(1004,"未找到组合商品的商品组合信息");
  61. $childarr= Db::name('good')->whereIn('spuCode',array_unique(array_column($combindList,'childCode')))->column("spuCode,usable_stock,is_combind","spuCode");
  62. $stockCode=makeNo("CB");
  63. $this->combindStock->startTrans();
  64. try{
  65. $data=[
  66. "stockCode"=>$stockCode,
  67. "spuCode"=>$param["spuCode"],
  68. "wsm_code"=>$param["wsm_code"],
  69. "good_name"=>$goodbasic['good_name'],
  70. "flag"=>$param["flag"],
  71. "bnCode"=>$param['flag']==1?makeNo("BN"):"",
  72. "stock_num"=>$param['stock_num'],
  73. "apply_name"=>$this->uname,
  74. "apply_id"=>$this->uid,
  75. "status"=>1
  76. ];
  77. $up =$this->combindStock->save($data);
  78. if($up==false) throw new \Exception("创建失败");
  79. if($param["flag"]==0){
  80. if($isT->isEmpty()==false){
  81. $stockup = Db::name('good')->where('spuCode',$param['spuCode'])->dec('usable_stock',$param["stock_num"])->update();
  82. if($stockup==false) throw new \Exception('组合商品库存占用失败');
  83. }
  84. $stock->usable_stock = bcsub($stock->usable_stock,$param['stock_num']);
  85. $stock->total_stock = bcsub($stock->total_stock ,$param['stock_num']);
  86. $reld=$stock->save();
  87. if($reld==false) throw new \Exception('组合商品库存占用失败');
  88. }else{
  89. $bnArr=[];
  90. foreach ($combindList as $item){
  91. $num = bcmul($item['child_num'],$param['stock_num'],2);
  92. if(isset($childarr[$item['childCode']])) {
  93. if($childarr[$item['childCode']]['usable_stock']<$num)throw new \Exception($item['childCode'].'组合商品的子商品库存不足');
  94. $stockup = Db::name('good')->where('spuCode',$item['childCode'])->dec('usable_stock',intval($num))
  95. ->update();
  96. if($stockup==false) throw new \Exception($item['childCode'].'组合商品的子商品信息库存占用失败');
  97. }
  98. $bnlist= (new GoodStock())->stockSub($item['childCode'],$num);
  99. $bnArr=array_merge($bnArr,$bnlist);
  100. }
  101. if(empty($bnArr)) throw new \Exception('组合商品的子商品信息库存占用失败');
  102. (new CombindBninfo())->AaddBNLog($param['spuCode'],$data['bnCode'],$bnArr);
  103. }
  104. $this->combindStock->commit();
  105. }catch (\Exception $exception){
  106. $this->combindStock->rollback();
  107. return error_show(1004,$exception->getMessage());
  108. }
  109. return app_show(0,"数据创建成功",$stockCode);
  110. }
  111. public function info(){
  112. $param=$this->request->only(["id"=>""],"post","trim");
  113. $info =$this->combindStock->withJoin(["good","wsminfo"],"left")->with(['combindgood'])->findOrEmpty($param['id']);
  114. if($info->isEmpty())return error_show(1004,"未找到数据");
  115. if(!empty($info->combindgood)){
  116. foreach ($info->combindgood as &$item){
  117. $item['stock'] = bcmul($info->stock_num,$item['child_num']);
  118. }
  119. }
  120. return app_show(0,"获取成功",$info);
  121. }
  122. //status 1 待审核 2审核通过 3 审核驳回
  123. public function status(){
  124. $param=$this->request->only(['id'=>'',"status"=>"","remark"=>""],'post','trim');
  125. $valid=Validate::rule(["id|主键ID"=>"require","status|状态"=>"require|number|in:2,3"]);
  126. if($valid->check($param)==false)return error_show(1004,$valid->getError());
  127. $row = $this->combindStock->findOrEmpty($param['id']);
  128. if($row->status!=1)return error_show(1004,"数据状态有误");
  129. $goodinfo = (new \app\admin\model\GoodBasic())->where(['spuCode'=>$row->spuCode])->findOrEmpty();
  130. if($goodinfo->isEmpty())return error_show(1004,'未找到对应得组合商品信息');
  131. $comblist = (new GoodCombind())->where(["spuCode"=>$row->spuCode,"is_del"=>0])->select()->toArray();
  132. if(empty($comblist)) return error_show(1004,'组合商品子商品信息未找到');
  133. $good= (new \app\admin\model\Good())->where(['spuCode'=>$row->spuCode])->findOrEmpty();
  134. $GoodStock =new GoodStock();
  135. $stock =$GoodStock->where(['spuCode'=>$row->spuCode,'wsm_code'=>$row->wsm_code])->findOrEmpty();
  136. $row->status = $param['status'];
  137. $row->remark = $param['remark'];
  138. $row->startTrans();
  139. try{
  140. $up =$row->save();
  141. if($up==false) throw new \Exception("数据状态更新失败");
  142. if($param['status']==2){
  143. if($row->flag==1){
  144. $bn = $row->bnCode;
  145. if($stock->isEmpty()){
  146. $wsm_stock = [
  147. "spuCode"=>$row->spuCode,
  148. "wsm_code"=>$row->wsm_code,
  149. "usable_stock"=>$row->stock_num,
  150. "total_stock"=>$row->stock_num,
  151. ];
  152. $id =$stock->insertGetId($wsm_stock);
  153. if($id<=0) throw new \Exception('仓库库存数更新失败');
  154. }else{
  155. $wsm_stock=[
  156. 'usable_stock'=>bcadd($stock->usable_stock,$row->stock_num),
  157. 'total_stock'=>bcadd($stock->total_stock,$row->stock_num)
  158. ];
  159. $up=$stock->save($wsm_stock);
  160. if($up==false) throw new \Exception("仓库库存数更新失败");
  161. $id = $stock->id;
  162. }
  163. if($good->isEmpty()==false){
  164. $good->usable_stock=bcadd($good->usable_stock,$row->stock_num);
  165. $upe=$good->save();
  166. if($upe==false)throw new \Exception('商品可用库存数更新失败');
  167. }
  168. $origin = Db::name('good_nake')->where([['spuCode', '=', $row->spuCode], ['min_num', '<=',$row->stock_num], ['is_del', '=', 0]])->order('min_num desc')->find();
  169. if ($origin == false) {
  170. throw new \Exception( '未找到相关阶梯成本价格');
  171. }
  172. $origin_price = $origin['nake_total'];
  173. $stcoc=GoodStockInfo::AddBn(intval($id),$bn,intval($row->stock_num),floatval($origin_price) );
  174. if($stcoc==false) throw new \Exception( '组合商品bn库存生成失败');
  175. $stockCodeLog= (new CombindStockInfo())->save(["stockCode"=>$row->stockCode,"flag"=>1,
  176. "stock_num"=>$row->stock_num,"bnCode"=>$bn,"origin_price"=>$origin_price]);
  177. if($stockCodeLog==false)throw new \Exception( '组合商品bn库存生成失败');
  178. }
  179. else{
  180. $up =GoodStockInfo::StockBnSub($stock->id,intval($row->stock_num));
  181. if(empty($up)) throw new \Exception('未找到对应子商品BN库存信息');
  182. foreach ($up as $item){
  183. $bnlist =$this->combind->subStock($row->spuCode,$item['bnCode'],$item['num']);
  184. if($bnlist==false)throw new \Exception('子商品BN库存信息更新失败');
  185. }
  186. }
  187. }
  188. if($param['status']==3){
  189. if($row->flag==0){
  190. if($good->isEmpty()==false){
  191. $good->usable_stock = bcadd($good->usable_stock ,$row->stock_num);
  192. $stockup = $good->save();
  193. if($stockup==false) throw new \Exception('组合商品库存解除驳回失败');
  194. }
  195. $stock->usable_stock = bcadd($stock->usable_stock,$row->stock_num);
  196. $stock->total_stock = bcadd($stock->total_stock ,$row->stock_num);
  197. $reld=$stock->save();
  198. if($reld==false) throw new \Exception('组合商品库存解除驳回失败');
  199. }else{
  200. $bnlist =$this->combind->subStock($row->spuCode,$row->bnCode,$row->stock_num);
  201. if($bnlist==false)throw new \Exception('子商品BN库存信息更新失败');
  202. }
  203. }
  204. $row->commit();
  205. }catch (\Exception $exception){
  206. $row->rollback();
  207. return error_show(1004,$exception->getMessage());
  208. }
  209. return app_show(0,"数据更新成功");
  210. }
  211. }