暫無描述

DayGrandSalerTotal.php 7.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. <?php
  2. namespace App\Console\Commands;
  3. use Illuminate\Console\Command;
  4. use DB;
  5. use App\CustTotal;
  6. use App\CustDetail;
  7. use App\Order;
  8. class DayGrandSalerTotal extends Command {
  9. protected $signature = 'DayGrandSalerTotal';
  10. /**
  11. * The console command description.
  12. *
  13. * @var string
  14. */
  15. protected $description = '分销售每日汇总投放,成本,毛利等数据';
  16. public function handle()
  17. {
  18. $this->DayGrandSalerTotal();
  19. }
  20. public function DayGrandSalerTotal(){
  21. $_start = '2019-09-04';
  22. $_end = date('Y-m-d');
  23. $idate = date('Y-m-d', strtotime('-1 day'));
  24. //查看是否已有数据
  25. $if_e = DB::table('day_grand_saler_total')->where('idate', $idate)->first();
  26. if(!empty($if_e)){
  27. echo "\n日期:".$idate." 已存在";
  28. return false;
  29. }
  30. $team_ids = $this->getTeams();
  31. //获取各个团队销售id
  32. $salerIds = $this->getTeamSalers($team_ids);
  33. foreach($salerIds as $team_id=>$saler_ids){
  34. //团队总投入
  35. $team_throw_cost = CustTotal::where('is_del',0)->where('team_id',$team_id)->where('dtime','<',$_end)->where('dtime','>=',$_start)->sum('total_cost');
  36. //团队销售历史总加粉
  37. $wx_fan_total = CustDetail::whereIn('admin_id', $saler_ids)->where('is_del', 0)->where('dtime','<',$_end)->where('dtime','>=',$_start)->sum('fan_add');
  38. foreach($saler_ids as $admin_id){
  39. $data = array();
  40. $data['idate'] = $idate;
  41. $data['admin_id'] = $admin_id;
  42. $data['team_id'] = $team_id;
  43. //总加粉
  44. $data['fan_count'] = CustDetail::where('is_del',0)->where('admin_id', $admin_id)->where('dtime','<',$_end)->where('dtime','>=',$_start)->sum('fan_add');
  45. //预估总投入
  46. $data['throw_cost'] = $wx_fan_total>0 ? round($data['fan_count']/$wx_fan_total * $team_throw_cost, 2) : 0;
  47. //订单信息
  48. $order = Order::select(DB::raw('sum(cost) as goods_cost, sum(freight_cost) as freight_cost, sum(aftersale_fee) as aftersale_cost, count(1) as order_count, sum(receivedAmount) as order_amount, count(distinct(receiverMobile)) as cust_count, sum(refund_price) as refund_fee'))->where('is_del',0)->where('admin_id', $admin_id)->where('createTime','<',$_end)->where('createTime','>=',$_start)->first();
  49. $data['goods_cost'] = $order->goods_cost;
  50. $data['freight_cost'] = $order->freight_cost;
  51. $data['aftersale_cost'] = $order->aftersale_cost;
  52. $data['refund_fee'] = $order->refund_fee;
  53. $data['order_count'] = $order->order_count;
  54. $data['order_amount'] = $order->order_amount;
  55. $data['cust_count'] = $order->cust_count;
  56. //毛利 = 总销售额-总商品成本-总运费-总售后
  57. $data['profit'] = $order->order_amount - $order->goods_cost - $order->freight_cost - $order->aftersale_cost - $data['throw_cost'] + $order->refund_fee;
  58. //总新粉单数
  59. $new_order = Order::select(DB::raw('count(1) as order_count'))->leftJoin('customers as cu','cu.phone', '=', 'order.receiverMobile')->whereRaw('left(order.createTime, 10) = cu.fanTime')->where('order.is_del', 0)->where('order.admin_id', $admin_id)->where('order.createTime','<',$_end)->where('order.createTime','>=',$_start)->first();
  60. $data['new_order_count'] = $new_order->order_count;
  61. //总老粉单数
  62. $data['old_order_count'] = $data['order_count'] - $data['new_order_count'];
  63. //总复购订单
  64. $data['fugou_order_count'] = $data['order_count'] - $data['cust_count'];
  65. //7 - 60 roi汇总
  66. $date = date('Y-m-d', strtotime('-7 day'));
  67. $data['cost7'] = DB::table('roi_saler_total')->where('type', 1)->where('admin_id', $admin_id)->where('ad_time', '<', $date)->sum('cost');
  68. $data['order_count7'] = DB::table('roi_saler_total')->where('type', 1)->where('admin_id', $admin_id)->where('ad_time', '<', $date)->sum('order_count');
  69. $data['order_amount7'] = DB::table('roi_saler_total')->where('type', 1)->where('admin_id', $admin_id)->where('ad_time', '<', $date)->sum('order_amount');
  70. $date = date('Y-m-d', strtotime('-15 day'));
  71. $data['cost15'] = DB::table('roi_saler_total')->where('type', 2)->where('admin_id', $admin_id)->where('ad_time', '<', $date)->sum('cost');
  72. $data['order_count15'] = DB::table('roi_saler_total')->where('type', 2)->where('admin_id', $admin_id)->where('ad_time', '<', $date)->sum('order_count');
  73. $data['order_amount15'] = DB::table('roi_saler_total')->where('type', 2)->where('admin_id', $admin_id)->where('ad_time', '<', $date)->sum('order_amount');
  74. $date = date('Y-m-d', strtotime('-30 day'));
  75. $data['cost30'] = DB::table('roi_saler_total')->where('type', 3)->where('admin_id', $admin_id)->where('ad_time', '<', $date)->sum('cost');
  76. $data['order_count30'] = DB::table('roi_saler_total')->where('type', 3)->where('admin_id', $admin_id)->where('ad_time', '<', $date)->sum('order_count');
  77. $data['order_amount30'] = DB::table('roi_saler_total')->where('type', 3)->where('admin_id', $admin_id)->where('ad_time', '<', $date)->sum('order_amount');
  78. $date = date('Y-m-d', strtotime('-45 day'));
  79. $data['cost45'] = DB::table('roi_saler_total')->where('type', 4)->where('admin_id', $admin_id)->where('ad_time', '<', $date)->sum('cost');
  80. $data['order_count45'] = DB::table('roi_saler_total')->where('type', 4)->where('admin_id', $admin_id)->where('ad_time', '<', $date)->sum('order_count');
  81. $data['order_amount45'] = DB::table('roi_saler_total')->where('type', 4)->where('admin_id', $admin_id)->where('ad_time', '<', $date)->sum('order_amount');
  82. $date = date('Y-m-d', strtotime('-60 day'));
  83. $data['cost60'] = DB::table('roi_saler_total')->where('type', 5)->where('admin_id', $admin_id)->where('ad_time', '<', $date)->sum('cost');
  84. $data['order_count60'] = DB::table('roi_saler_total')->where('type', 5)->where('admin_id', $admin_id)->where('ad_time', '<', $date)->sum('order_count');
  85. $data['order_amount60'] = DB::table('roi_saler_total')->where('type', 5)->where('admin_id', $admin_id)->where('ad_time', '<', $date)->sum('order_amount');
  86. $res = DB::table('day_grand_saler_total')->insert($data);
  87. echo "\n日期:".$idate." 团队:".$team_id." 销售:".$admin_id." 插入结果:".$res;
  88. }
  89. }
  90. }
  91. public function getTeamSalers($team_ids){
  92. $data = array();
  93. foreach($team_ids as $team_id){
  94. $data[$team_id] = DB::table('admin')->where('team_id', $team_id)->lists('id');
  95. }
  96. return $data;
  97. }
  98. public function getTeams(){
  99. $data = DB::table('teams')->where('type', 1)->lists('id');
  100. return $data;
  101. }
  102. }