赛亿提成统计系统

Index.php 5.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. <?php
  2. namespace app\index\controller;
  3. use daswork\Controller;
  4. use daswork\lib\Config;
  5. use app\index\model\MonthPicker;
  6. use app\index\model\Commission;
  7. use app\index\model\Company;
  8. use app\index\model\Summary;
  9. use app\index\model\Sales;
  10. class Index extends Controller
  11. {
  12. public $maonth_picker;
  13. public $commission;
  14. protected $summary;
  15. public function __construct()
  16. {
  17. parent::__construct();
  18. $this->maonth_picker = new MonthPicker();
  19. $this->commission = new Commission();
  20. $this->summary = new Summary();
  21. }
  22. public function index()
  23. {
  24. $slect_time = isset($_GET['select_time']) ? $_GET['select_time'] : '';
  25. if ($slect_time != '') {
  26. $this->maonth_picker->cur_month = $slect_time;
  27. }
  28. $this->assign('maonth_picker', $this->maonth_picker);
  29. $sql = "select sel.name,su.id as su_id,su.month,su.other_expenses,su.overdraft,su.remark,sel.department from seller sel left join summary su on sel.name = su.name and su.month='".$this->maonth_picker->cur_month."';";
  30. $data = $this->summary->select($sql);
  31. // 后勤刘郑总月度
  32. $total_profit_all = 0;
  33. $tepi_all = 0;
  34. $hq_c_rate = 0.05;
  35. $hq_t_rate = 0.002;
  36. $total_profit_dp1 = 0;
  37. $total_profit_dp2 = 0;
  38. $tepi_dp1 = 0;
  39. $tepi_dp2 = 0;
  40. $dp_c_rate = 0.014;
  41. $dp_t_rate = 0.0014;
  42. $all_money = 0;
  43. for ($i=0; $i < count($data); $i++) {
  44. $row = &$data[$i];
  45. $row['id'] = $i+1;
  46. $name = $row['name'];
  47. $row['total_profit'] = $this->commission->totalProfit($name, $this->maonth_picker->cur_month);
  48. $row['c_rate'] = 0.25;
  49. $row['c_money'] = ($row['total_profit'] - $row['other_expenses']) * $row['c_rate'];
  50. $row['tepi'] = $this->commission->tepi($name, $this->maonth_picker->cur_month);
  51. $row['t_rate'] = 1;
  52. $row['t_money'] = $row['tepi'] * $row['t_rate'];
  53. $row['s_money'] = $row['c_money'] + $row['t_money'] + $row['overdraft'];
  54. $total_profit_all += $row['total_profit'];
  55. $tepi_all += $row['tepi'];
  56. // if ($row['name']=='刘莹') {
  57. // $ling2['geren'] = $value['s_money'];
  58. // }
  59. // if ($value['name']=='郑鑫') {
  60. // $ling1['geren'] = $value['s_money'];
  61. // }
  62. if ($row['department']=='一部') {
  63. $total_profit_dp1 += $row['total_profit'];
  64. $tepi_dp1 += $row['tepi'];
  65. } else {
  66. $total_profit_dp2 += $row['total_profit'];
  67. $tepi_dp2 += $row['tepi'];
  68. }
  69. $all_money += $row['s_money'];
  70. }
  71. // 后勤
  72. $data[$i+1]['id'] = $i+1;
  73. $data[$i+1]['name'] = '后勤人员';
  74. $data[$i+1]['su_id'] = '';
  75. $data[$i+1]['month'] = $this->maonth_picker->cur_month;
  76. $data[$i+1]['other_expenses'] = 0;
  77. $data[$i+1]['overdraft'] = 0;
  78. $data[$i+1]['remark'] = '';
  79. $data[$i+1]['department'] = '';
  80. $data[$i+1]['total_profit'] = $total_profit_all;
  81. $data[$i+1]['c_rate'] = $hq_c_rate;
  82. $data[$i+1]['c_money'] = $total_profit_all * $hq_c_rate;
  83. $data[$i+1]['tepi'] = $tepi_all;
  84. $data[$i+1]['t_rate'] = $hq_t_rate;
  85. $data[$i+1]['t_money'] = $tepi_all * $hq_t_rate;
  86. $data[$i+1]['s_money'] = $data[$i+1]['c_money'] + $data[$i+1]['t_money'];
  87. $all_money += $data[$i+1]['s_money'];
  88. // 郑总月度提成
  89. $data[$i+2]['id'] = $i+2;
  90. $data[$i+2]['name'] = '郑总月度';
  91. $data[$i+2]['su_id'] = '';
  92. $data[$i+2]['month'] = $this->maonth_picker->cur_month;
  93. $data[$i+2]['other_expenses'] = 0;
  94. $data[$i+2]['overdraft'] = 0;
  95. $data[$i+2]['remark'] = '';
  96. $data[$i+2]['department'] = '';
  97. $data[$i+2]['total_profit'] = $total_profit_dp1;
  98. $data[$i+2]['c_rate'] = $dp_c_rate;
  99. $data[$i+2]['c_money'] = $total_profit_dp1 * $dp_c_rate;
  100. $data[$i+2]['tepi'] = $tepi_dp1;
  101. $data[$i+2]['t_rate'] = $dp_t_rate;
  102. $data[$i+2]['t_money'] = $tepi_dp1 * $dp_t_rate;
  103. $data[$i+2]['s_money'] = $data[$i+2]['c_money'] + $data[$i+2]['t_money'];
  104. $all_money += $data[$i+2]['s_money'];
  105. // 刘总月度提成
  106. $data[$i+3]['id'] = $i+3;
  107. $data[$i+3]['name'] = '刘总月度';
  108. $data[$i+3]['su_id'] = '';
  109. $data[$i+3]['month'] = $this->maonth_picker->cur_month;
  110. $data[$i+3]['other_expenses'] = 0;
  111. $data[$i+3]['overdraft'] = 0;
  112. $data[$i+3]['remark'] = '';
  113. $data[$i+3]['department'] = '';
  114. $data[$i+3]['total_profit'] = $total_profit_dp2;
  115. $data[$i+3]['c_rate'] = $dp_c_rate;
  116. $data[$i+3]['c_money'] = $total_profit_dp2 * $dp_c_rate;
  117. $data[$i+3]['tepi'] = $tepi_dp2;
  118. $data[$i+3]['t_rate'] = $dp_t_rate;
  119. $data[$i+3]['t_money'] = $tepi_dp2 *$dp_t_rate;
  120. $data[$i+3]['s_money'] = $row['c_money'] + $row['t_money'];
  121. $all_money += $data[$i+3]['s_money'];
  122. // 合计
  123. $total = [];
  124. $total['other_expenses'] = 0;
  125. $total['total_profit'] = $total_profit_all;
  126. $total['c_rate'] = 0.25;
  127. $total['c_money'] = ($total_profit_all - $total['other_expenses']) * 0.25;
  128. $total['tepi'] = $tepi_all;
  129. $total['t_rate'] = 1.00;
  130. $total['t_money'] = $tepi_all * 1.00;
  131. $total['s_money'] = $all_money;
  132. // var_dump($data);
  133. // exit;
  134. $this->assign('data', $data);
  135. $this->assign('total', $total);
  136. $this->fetch();
  137. }
  138. public function salesData()
  139. {
  140. $sales = new Sales();
  141. echo json_encode(['code' => 0, 'data'=>$sales->salesData]);
  142. }
  143. }