説明なし
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

ProductSpecValue.php 7.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 陈风任 <491085389@qq.com>
  11. * Date: 2019-7-9
  12. */
  13. namespace app\user\model;
  14. use think\Model;
  15. use think\Config;
  16. use think\Db;
  17. /**
  18. * 产品规格值ID,价格,库存表
  19. */
  20. class ProductSpecValue extends Model
  21. {
  22. //初始化
  23. protected function initialize()
  24. {
  25. // 需要调用`Model`的`initialize`方法
  26. parent::initialize();
  27. }
  28. /**
  29. * 还原普通订单库存
  30. * @param null $order_id
  31. * @param null $users_id
  32. * @return bool
  33. * @throws \think\db\exception\DataNotFoundException
  34. * @throws \think\db\exception\ModelNotFoundException
  35. * @throws \think\exception\DbException
  36. */
  37. public function SaveProducSpecValueStock($order_id = null, $users_id = null)
  38. {
  39. if (empty($order_id)) return false;
  40. $ProductSpecValue = [];
  41. $Where = [
  42. 'users_id' => $users_id,
  43. 'lang' => get_home_lang(),
  44. ];
  45. if (is_array($order_id)) {
  46. $order_id = get_arr_column($order_id, 'order_id');
  47. $Where['order_id'] = ['IN',$order_id];
  48. }else{
  49. $Where['order_id'] = $order_id;
  50. }
  51. $OrderDetails = Db::name('shop_order_details')->where($Where)->field('product_id,num,data')->select();
  52. if (!empty($OrderDetails)) {
  53. $ProductIdWhere = $SpecValueIdWhere = $Array_new = $ArcUpData =[];
  54. foreach ($OrderDetails as $key => $value) {
  55. $value['data'] = unserialize($value['data']);
  56. if (!empty($value['data']['spec_value_id'])){
  57. //多规格
  58. $spec_value_id = htmlspecialchars_decode($value['data']['spec_value_id']);
  59. array_push($SpecValueIdWhere, $spec_value_id);
  60. array_push($ProductIdWhere, $value['product_id']);
  61. $Array_new[] = [
  62. 'spec_value_id' => $spec_value_id,
  63. 'spec_stock' => $value['num'],
  64. ];
  65. }else{
  66. //单规格
  67. $ArcUpData[] = [
  68. 'aid' => $value['product_id'],
  69. 'stock_count' => Db::raw('stock_count+' . ($value['num'])),
  70. 'sales_num' => Db::raw('sales_num-' . ($value['num'])),
  71. 'sales_all' => Db::raw('sales_all-' . ($value['num'])),
  72. ];
  73. }
  74. }
  75. $ValueWhere = [
  76. 'aid' => ['IN',$ProductIdWhere],
  77. 'lang' => get_home_lang(),
  78. 'spec_value_id' => ['IN',$SpecValueIdWhere],
  79. ];
  80. $ProductSpecValue = Db::name('product_spec_value')->where($ValueWhere)->field('value_id,spec_value_id')->select();
  81. foreach ($ProductSpecValue as $key => $value) {
  82. foreach ($Array_new as $kk => $vv) {
  83. if ($value['spec_value_id'] == $vv['spec_value_id']) {
  84. $ProductSpecValue[$key]['spec_stock'] = Db::raw('spec_stock+'.($vv['spec_stock']));
  85. $ProductSpecValue[$key]['spec_sales_num'] = Db::raw('spec_sales_num-'.($vv['spec_stock']));
  86. }
  87. }
  88. }
  89. $this->saveAll($ProductSpecValue);
  90. //还原规格库存
  91. if (!empty($ArcUpData)){
  92. $ArchivesModel = new \app\user\model\Archives();
  93. $ArchivesModel->saveAll($ArcUpData);
  94. Db::name('archives')->where(['sales_num'=>['lt',0]])->update(['sales_num'=>0, 'update_time'=>getTime()]);
  95. Db::name('archives')->where(['sales_all'=>['lt',0]])->update(['sales_all'=>0, 'update_time'=>getTime()]);
  96. }
  97. }
  98. }
  99. /**
  100. * 还原秒杀订单库存
  101. * 2020/12/18 大黄
  102. */
  103. public function SaveSharpStock($order_id = null, $users_id = null,$order_info = [])
  104. {
  105. if (empty($order_id)) return false;
  106. $ProductSpecValue = [];
  107. $Where = [
  108. 'users_id' => $users_id,
  109. 'lang' => get_home_lang(),
  110. ];
  111. if (is_array($order_id)) {
  112. $order_id = get_arr_column($order_id, 'order_id');
  113. $Where['order_id'] = ['IN',$order_id];
  114. }else{
  115. $Where['order_id'] = $order_id;
  116. }
  117. $OrderDetails = Db::name('shop_order_details')->where($Where)->field('product_id,num,data')->select();
  118. if (!empty($OrderDetails)) {
  119. $ProductIdWhere = $SpecValueIdWhere = $Array_new =[];
  120. foreach ($OrderDetails as $key => $value) {
  121. //先查询商品是多规格还是单规格
  122. $is_sku = Db::name('sharp_goods')->where('aid',$value['product_id'])->value('is_sku');
  123. if (empty($is_sku)){
  124. //单规格直接还原sharp_goods数量
  125. $SharpGoodsupdate['seckill_stock'] = Db::raw('seckill_stock+'.($value['num']));
  126. $SharpGoodsupdate['sales'] = Db::raw('sales-'.($value['num']));
  127. Db::name('sharp_goods')->where('aid',$value['aid'])->update($SharpGoodsupdate);
  128. return true;
  129. }
  130. $value['data'] = unserialize($value['data']);
  131. $spec_value_id = htmlspecialchars_decode($value['data']['spec_value_id']);
  132. array_push($SpecValueIdWhere, $spec_value_id);
  133. array_push($ProductIdWhere, $value['product_id']);
  134. $Array_new[] = [
  135. 'spec_value_id' => $spec_value_id,
  136. 'seckill_stock' => $value['num'],
  137. ];
  138. }
  139. $ValueWhere = [
  140. 'aid' => ['IN',$ProductIdWhere],
  141. 'lang' => get_home_lang(),
  142. 'spec_value_id' => ['IN',$SpecValueIdWhere],
  143. ];
  144. $ProductSpecValue = Db::name('product_spec_value')->where($ValueWhere)->field('value_id,spec_value_id,aid')->select();
  145. foreach ($ProductSpecValue as $key => $value) {
  146. foreach ($Array_new as $kk => $vv) {
  147. if ($value['spec_value_id'] == $vv['spec_value_id']) {
  148. $ProductSpecValue[$key]['seckill_stock'] = Db::raw('seckill_stock+'.($vv['seckill_stock']));
  149. $ProductSpecValue[$key]['seckill_sales_num'] = Db::raw('seckill_sales_num-'.($vv['seckill_stock']));
  150. //还原sharp_goods数量
  151. $SharpGoodsupdate['seckill_stock'] = Db::raw('seckill_stock+'.($vv['seckill_stock']));
  152. $SharpGoodsupdate['sales'] = Db::raw('sales-'.($vv['seckill_stock']));
  153. Db::name('sharp_goods')->where('aid',$value['aid'])->update($SharpGoodsupdate);
  154. }
  155. }
  156. }
  157. $this->saveAll($ProductSpecValue);
  158. }
  159. }
  160. }