GoodCombind.php 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <?php
  2. declare (strict_types = 1);
  3. namespace app\admin\model;
  4. use think\Model;
  5. /**
  6. * @mixin \think\Model
  7. */
  8. class GoodCombind extends Model
  9. {
  10. protected $createTime="createtime";
  11. protected $updateTime="updatetime";
  12. protected $append=["usable_stock"];
  13. public function getUsabelStockAttr($v,$row){
  14. return (new GoodStock())->withJoin(['wsminfo'] , 'left')
  15. ->where(['spuCode'=>$row['childCode'] , 'wsm_type'=>[2 , 5]])
  16. ->sum('usable_stock');
  17. }
  18. public function AddStock($spuCode='',$num="0"){
  19. $comblist = $this->where(['spuCode'=>$spuCode,'is_del'=>0])->select()->toArray();
  20. if(empty($comblist))throw new \Exception("未找到对应子商品信息");
  21. $GoodStock=new GoodStock();
  22. $returnBn=[];
  23. foreach ($comblist as $item){
  24. $row =$GoodStock->withJoin(["wsminfo"],"left")
  25. ->field('id,usable_stock')
  26. ->where(['spuCode' => $item['childCode'], 'warehouse_info.wsm_type'=>[2,5]])
  27. ->findOrEmpty();
  28. if($row->isEmpty()) throw new \Exception('未找到对应子商品信息');
  29. $stocknum =bcmul($num,$item["child_num"]);
  30. $up =GoodStockInfo::StockBnSub($row->id,intval($stocknum));
  31. if(empty($up)) throw new \Exception('未找到对应子商品BN库存信息');
  32. $returnBn=array_merge($returnBn,$up);
  33. }
  34. return $returnBn;
  35. }
  36. public function subStock($spuCode='',$bnCode='',$num='0'){
  37. $comblist = $this->where(['spuCode'=>$spuCode,'is_del'=>0])->select()->toArray();
  38. if(empty($comblist))throw new \Exception('未找到对应子商品信息');
  39. $goodinfo = new Good();
  40. $combind = new CombindBninfo();
  41. foreach ($comblist as $item){
  42. $stocknum =bcmul($num,$item['child_num']);
  43. $good = $goodinfo->where(["spuCode"=>$item['childCode']])->findOrEmpty();
  44. if($good->isEmpty()==false){
  45. $good->usable_stock = bcadd($good->usable_stock,$stocknum);
  46. $gdup=$good->save();
  47. if($gdup==false)throw new \Exception('子商品库存更新失败');
  48. }
  49. $up=$combind->subBN($spuCode,$bnCode,$stocknum);
  50. if($up==false)throw new \Exception('子商品库存更新失败');
  51. }
  52. return true;
  53. }
  54. }