Quellcode durchsuchen

项目工资分摊统计表

gogs vor 2 Monaten
Ursprung
Commit
3beb8c7afb
3 geänderte Dateien mit 116 neuen und 2 gelöschten Zeilen
  1. 15 0
      app/Http/Controllers/Api/StatisticController.php
  2. 99 2
      app/Service/StatisticService.php
  3. 2 0
      routes/api.php

+ 15 - 0
app/Http/Controllers/Api/StatisticController.php

@@ -36,4 +36,19 @@ class StatisticController extends BaseController
 
 
 
+    public function itemDaySalaryStatistic(Request $request)
+    {
+        $service = new StatisticService();
+        $user = $request->userData;
+        list($status,$data) = $service->itemDaySalaryStatistic($request->all(),$user);
+
+        if($status){
+            return $this->json_return(200,'',$data);
+        }else{
+            return $this->json_return(201,$data);
+        }
+    }
+
+
+
 }

+ 99 - 2
app/Service/StatisticService.php

@@ -67,6 +67,7 @@ class StatisticService extends Service
     {
         //项目编码、项目名称、天数、工资、日期
         list($status, $month_start, $month_end) = $this->commonRule($data);
+        if (!$status) return [false, $month_start];
         //确认所有项目、人员、人员工时
         $month_employee = DailyPwOrderDetails::Clear($user, $data);
         $month_employee_list = $month_employee->where("order_time", ">=", $month_start)->where("order_time", "<", $month_end)
@@ -130,8 +131,8 @@ class StatisticService extends Service
             } else {
                 $allocated_salary = 0;
             }
-            $item_month_list['allocated_salary'] += $allocated_salary;
-            $item_month_list['work_minutes'] += $total_min;
+            $item_month_list[$item_key]['allocated_salary'] += $allocated_salary;
+            $item_month_list[$item_key]['work_minutes'] += $total_min;
         }
 
         foreach ($item_month_list as $k=>$v){
@@ -149,8 +150,104 @@ class StatisticService extends Service
             return $item;
         })->all();
         return [true,$item_month_list];
+    }
+    public function itemDaySalaryStatistic($data, $user)
+    {
+        //项目编码、项目名称、人员名称、研发工时、研发工资、当月总工时、总计工资、年月
+        list($status, $month_start, $month_end) = $this->commonRule($data);
+        if (!$status) return [false, $month_start];
+        //确认所有项目、人员、人员工时
+        $month_employee = DailyPwOrderDetails::Clear($user, $data);
+        $month_employee_list = $month_employee->where("order_time", ">=", $month_start)->where("order_time", "<", $month_end)
+            ->where('del_time', 0)
+            ->select(
+                "item_id",
+                "employee_id",
+                // 将时间戳转为 Y-m-d 格式并起别名
+                DB::raw("FROM_UNIXTIME(order_time, '%Y-%m') as order_month"),
+                // 聚合求和
+                DB::raw("SUM(total_work_min) as total_work")
+            )
+            ->groupBy("order_month", "item_id", "employee_id")->toArray();
+        //查询所有人员工资
+        $monthly_ps_order_ids = MonthlyPsOrder::Clear($user, $data)->where('del_time', 0)->where("month", ">=", $month_start)->where("month", "<", $month_end)
+            ->pluck('id')->toArray();
+        $monthly_ps_order_key_list = MonthlyPsOrder::Clear($user, $data)->where('del_time', 0)->where("month", ">=", $month_start)->where("month", "<", $month_end)
+            ->pluck(DB::raw("FROM_UNIXTIME(month, '%Y-%m') as month"), 'id')->toArray();
+        $month_employee_salary = MonthlyPsOrderDetails::wherein('main_id', $monthly_ps_order_ids)
+            ->select("employee_id", "salary", "main_id")
+            ->get()->toArray();
+        //查询所有项目人员的工时比例
+        //汇总每个人每个月工资
+        $salary_map = [];
+        foreach ($month_employee_salary as $val) {
+            $month = $monthly_ps_order_key_list[$val['main_id']] ?? '';
+            if ($month) {
+                $salary_map[$val['employee_id'] . '_' . $month] = $val['salary'];
+            }
+        }
+        // 2. 计算每个员工在每个月的全月总工时
+        $employee_monthly_total_min = [];
+        foreach ($month_employee_list as $row) {
+            $key = $row['employee_id'] . '_' . $row['order_month'];
+            if (!isset($employee_monthly_total_min[$key])) {
+                $employee_monthly_total_min[$key] = 0;
+            }
+            $employee_monthly_total_min[$key] += $row['total_work'];
+        }
+
+        // 3. 计算分摊天数与工资
+        $item_month_list = [];
+        foreach ($month_employee_list as $item) {
+            $key = $item['employee_id'] . '_' . $item['order_month'];
+            $employee_key = $item['order_month'] . '_' . $item['item_id'] . '_' . $item['employee_id'];
+            $total_salary = $salary_map[$key] ?? 0;
+            $total_min = $employee_monthly_total_min[$key] ?? 0;
+            if(!isset($item_month_list[$employee_key])){
+                $item_month_list[$employee_key] = [
+                    "month" => $item['order_month'],
+                    "allocated_salary" => 0,
+                    "work_minutes" => 0,
+                    "total_min" => $total_min,
+                    "total_salary" => $total_salary,
+                ];
+            }
+
 
 
+            // B. 计算工资分摊:(项目工时 / 月总工时) * 月工资
+            if ($total_min > 0) {
+                $ratio = $item['total_work'] / $total_min;
+                $allocated_salary = round($ratio * $total_salary, 2);
+            } else {
+                $allocated_salary = 0;
+            }
+            $item_month_list[$employee_key]['allocated_salary'] += $allocated_salary;
+            $item_month_list[$employee_key]['work_minutes'] += $total_min;
+        }
+
+        foreach ($item_month_list as $k=>$v){
+            $item_month_list[$k]['days'] =  round($v['work_minutes']/8/60);
+            unset($item_month_list[$k]['work_minutes']);
+        }
+        $item_month_list = collect($item_month_list)->sortBy('month')->values()->all();
+        $items = collect($item_month_list)->pluck('item_id')->unique()->values()->all();
+        $item = Item::Clear($user, $data);
+        $item_title_key_list = $item->wherein('id', $items)->pluck("title", "id")->toArray();
+        $item_code_key_list = $item->wherein('id', $items)->pluck("code", "id")->toArray();
+
+        $employee_ids =  collect($item_month_list)->pluck('employee_id')->unique()->values()->all();
+
+        $employee = Employee::Clear($user, $data);
+        $employee_key_list = $employee->wherein('id', $employee_ids)->pluck("title", "id")->toArray();
+
+        $item_month_list = collect($item_month_list)->transform(function ($item) use ($item_title_key_list, $item_code_key_list) {
+            $item['item_title'] = $item_key_list[$item_title_key_list['item_id']] ?? "未知项目({$item['item_id']})";
+            $item['item_code'] = $item_code_key_list[$item['item_id']] ?? "未知项目({$item['item_id']})";
+            $item['employee_title'] = $employee_key_list[$item['employee_id']] ?? "未知人员({$item['employee_id']})";
+            return $item;
+        })->all();
+        return [true,$item_month_list];
     }
 
     private function commonRule($data)

+ 2 - 0
routes/api.php

@@ -187,6 +187,8 @@ Route::group(['middleware'=> ['checkLogin']],function ($route){
     $route->any('employeeDayHourStatistic', 'Api\StatisticsController@employeeDayHourStatistic');
     ///人员工资统计表(月维度)
     $route->any('employeeMonthSalaryStatistic', 'Api\StatisticsController@employeeMonthSalaryStatistic');
+    ///项目工资分摊统计表(日期)
+    $route->any('itemDaySalaryStatistic', 'Api\StatisticsController@itemDaySalaryStatistic');