| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511 |
- <?php
- namespace App\Service;
- use App\Model\Device;
- use App\Model\Employee;
- use App\Model\Item;
- use App\Model\RuleSet;
- use App\Model\RuleSetDetails;
- use Illuminate\Support\Facades\DB;
- class RuleSetService extends Service
- {
- public function ruleSetEdit($data,$user){
- list($status,$msg) = $this->ruleSetRule($data, $user, false);
- if(!$status) return [$status,$msg];
- try {
- DB::beginTransaction();
- $model = RuleSet::where('id',$data['id'])->first();
- // $model->code = $data['code'] ?? '';
- // $model->month = $data['month'] ?? 0;
- // $model->save();
- $time = time();
- RuleSetDetails::where('del_time',0)
- ->where('main_id', $model->id)
- ->update(['del_time' => $time]);
- $this->saveDetail($model->id, $time, $data);
- DB::commit();
- }catch (\Exception $exception){
- DB::rollBack();
- return [false,$exception->getMessage()];
- }
- return [true, ''];
- }
- public function ruleSetAdd($data,$user){
- list($status,$msg) = $this->ruleSetRule($data, $user);
- if(!$status) return [$status,$msg];
- try {
- DB::beginTransaction();
- $model = new RuleSet();
- $model->code = $data['code'] ?? '';
- $model->month = $data['month'] ?? 0;
- $model->crt_id = $user['id'];
- $model->top_depart_id = $data['top_depart_id'];
- $model->save();
- $this->saveDetail($model->id, time(), $data);
- DB::commit();
- }catch (\Exception $exception){
- DB::rollBack();
- return [false,$exception->getMessage()];
- }
- return [true, ''];
- }
- private function saveDetail($id, $time, $data){
- if(! empty($data['man_list'])){
- $unit = [];
- foreach ($data['man_list'] as $value){
- $unit[] = [
- 'main_id' => $id,
- 'item_id' => $value['item_id'],
- 'type' => $value['type'],
- 'data_id' => $value['data_id'],
- 'rate' => $value['rate'],
- 'crt_time' => $time,
- 'top_depart_id' => $value['top_depart_id'],
- ];
- }
- if(! empty($unit)) RuleSetDetails::insert($unit);
- }
- if(! empty($data['device_list'])){
- $receipt = [];
- foreach ($data['device_list'] as $value){
- $receipt[] = [
- 'main_id' => $id,
- 'item_id' => $value['item_id'],
- 'type' => $value['type'],
- 'data_id' => $value['data_id'],
- 'rate' => $value['rate'],
- 'crt_time' => $time,
- 'top_depart_id' => $value['top_depart_id'],
- ];
- }
- if(! empty($receipt)) RuleSetDetails::insert($receipt);
- }
- }
- private function getDetail($id){
- $data = RuleSetDetails::where('del_time',0)
- ->where('main_id', $id)
- ->get()->toArray();
- $id = $id2 = $item_id = [];
- foreach ($data as $value){
- if($value['type'] == RuleSetDetails::type_one) {
- $id[] = $value['data_id'];
- }else{
- $id2[] = $value['data_id'];
- }
- if(! in_array($value['item_id'], $item_id)) $item_id[] = $value['item_id'];
- }
- $map = Employee::whereIn('id', $id)->select('title','id','number')->get()->toArray();
- $map = array_column($map,null,'id');
- $map2 = Device::whereIn('id', $id2)->select('code','id','title')->get()->toArray();
- $map2 = array_column($map2,null,'id');
- $map3 = Item::whereIn('id', $item_id)->select('title','id','code')->get()->toArray();
- $map3 = array_column($map3,null,'id');
- $unit = $receipt = [];
- foreach ($data as $value){
- $item = $map3[$value['item_id']] ?? [];
- if($value['type'] == RuleSetDetails::type_one) {
- $tmp = $map[$value['data_id']] ?? [];
- $unit[] = [
- 'type' => $value['type'],
- 'rate' => $value['rate'],
- 'data_id' => $value['data_id'],
- 'data_title' => $tmp['title'],
- 'data_code' => $tmp['number'],
- 'item_id' => $value['item_id'],
- 'item_title' => $item['title'] ?? "",
- 'item_code' => $item['code'] ?? "",
- ];
- }else{
- $tmp = $map2[$value['data_id']] ?? [];
- $receipt[] = [
- 'type' => $value['type'],
- 'rate' => $value['rate'],
- 'data_id' => $value['data_id'],
- 'data_title' => $tmp['title'] ?? "",
- 'data_code' => $tmp['code'] ?? "",
- 'item_id' => $value['item_id'],
- 'item_title' => $item['title'] ?? "",
- 'item_code' => $item['code'] ?? "",
- ];
- }
- }
- $detail = [
- 'man_list' => $unit,
- 'device_list' => $receipt,
- ];
- foreach ($detail as $key => $value) {
- if (empty($value)) {
- $detail[$key] = (object)[]; // 转成 stdClass 对象
- }
- }
- return $detail;
- }
- public function ruleSetDel($data){
- if($this->isEmpty($data,'id')) return [false,'请选择数据!'];
- try {
- DB::beginTransaction();
- $time = time();
- RuleSet::where('del_time',0)
- ->whereIn('id',$data['id'])
- ->update(['del_time' => $time]);
- RuleSetDetails::where('del_time',0)
- ->whereIn('main_id', $data['id'])
- ->update(['del_time' => $time]);
- DB::commit();
- }catch (\Exception $exception){
- DB::rollBack();
- return [false,$exception->getMessage()];
- }
- return [true, ''];
- }
- public function ruleSetDetail($data, $user){
- if($this->isEmpty($data,'id')) return [false,'请选择数据!'];
- $customer = RuleSet::where('del_time',0)
- ->where('id',$data['id'])
- ->first();
- if(empty($customer)) return [false,'规则配置单不存在或已被删除'];
- $customer = $customer->toArray();
- $customer['month'] = ! empty($customer['month']) ? date("Y-m", $customer['month']) : "";
- $customer['crt_name'] = Employee::where('id',$customer['crt_id'])->value('title');
- $customer['crt_time'] = $customer['crt_time'] ? date("Y-m-d H:i:s",$customer['crt_time']): '';
- $details = $this->getDetail($data['id']);
- $customer = array_merge($customer, $details);
- return [true, $customer];
- }
- public function ruleSetCommon($data,$user, $field = []){
- if(empty($field)) $field = RuleSet::$field;
- $model = RuleSet::Clear($user,$data);
- $model = $model->where('del_time',0)
- ->select($field)
- ->orderby('id', 'desc');
- if(! empty($data['code'])) $model->where('code', 'LIKE', '%'.$data['code'].'%');
- if(! empty($data['id'])) $model->whereIn('id', $data['id']);
- if(! empty($data['crt_time'][0]) && ! empty($data['crt_time'][1])) {
- $return = $this->changeDateToTimeStampAboutRange($data['crt_time']);
- $model->where('crt_time','>=',$return[0]);
- $model->where('crt_time','<=',$return[1]);
- }
- return $model;
- }
- public function ruleSetList($data,$user){
- $model = $this->ruleSetCommon($data, $user);
- $list = $this->limit($model,'',$data);
- $list = $this->fillData($list);
- return [true, $list];
- }
- public function ruleSetRule(&$data, $user, $is_add = true){
- $data['top_depart_id'] = $user['top_depart_id'];
- if(empty($data['month'])) return [false, '月份不能为空'];
- $data['month'] = $this->changeDateToDate($data['month']);
- // --- 1. 人员列表校验 ---
- if(empty($data['man_list'])) return [false, '人员不能为空'];
- $manRates = []; // 用于累加每个人员的比例
- foreach ($data['man_list'] as $key => $value){
- if(empty($value['type'])) return [false, '类型不能为空'];
- if(empty($value['data_id'])) return [false, '人员不能为空'];
- if(empty($value['item_id'])) return [false, '项目不能为空'];
- $res = $this->checkNumber($value['rate'], 2, 'non-negative');
- if(! $res['valid']) return [false, '人员工时分摊比例:' . $res['error']];
- $data['man_list'][$key]['top_depart_id'] = $data['top_depart_id'];
- // 累加比例 (以 data_id 为 key)
- $manId = $value['data_id'];
- $manRates[$manId] = ($manRates[$manId] ?? 0) + $value['rate'];
- }
- // 校验每个人员的比例之和是否为 100
- foreach ($manRates as $mId => $total) {
- if (abs($total - 100) > 0.0001) {
- return [false, "ID为[{$mId}]的人员分摊比例合计为{$total}%,必须等于100%"];
- }
- }
- // --- 2. 设备列表校验 ---
- if(empty($data['device_list'])) return [false, '设备不能为空'];
- $deviceRates = []; // 用于累加每个设备的比例
- foreach ($data['device_list'] as $key => $value){
- if(empty($value['type'])) return [false, '类型不能为空'];
- if(empty($value['data_id'])) return [false, '设备ID不能为空'];
- if(empty($value['item_id'])) return [false, '项目不能为空'];
- $res = $this->checkNumber($value['rate'], 2, 'non-negative');
- if(! $res['valid']) return [false, '设备工时分摊比例:' . $res['error']];
- $data['device_list'][$key]['top_depart_id'] = $data['top_depart_id'];
- // 累加比例
- $devId = $value['data_id'];
- $deviceRates[$devId] = ($deviceRates[$devId] ?? 0) + $value['rate'];
- }
- // 校验每个设备的比例之和是否为 100
- foreach ($deviceRates as $dId => $total) {
- if (abs($total - 100) > 0.0001) {
- return [false, "ID为[{$dId}]的设备分摊比例合计为{$total}%,必须等于100%"];
- }
- }
- // --- 3. 重复单据校验 ---
- if($is_add){
- $bool = RuleSet::where('month',$data['month'])
- ->where('top_depart_id', $data['top_depart_id'])
- ->where('del_time',0)
- ->exists();
- }else{
- if(empty($data['id'])) return [false,'ID不能为空'];
- $bool = RuleSet::where('month',$data['month'])
- ->where('top_depart_id', $data['top_depart_id'])
- ->where('id','<>',$data['id'])
- ->where('del_time',0)
- ->exists();
- }
- if($bool) return [false, date("Y-m", $data['month']) . '的规则配置单已存在'];
- return [true, ''];
- }
- public function fillData($data){
- if(empty($data['data'])) return $data;
- $emp = (new EmployeeService())->getEmployeeMap(array_unique(array_column($data['data'],'crt_id')));
- foreach ($data['data'] as $key => $value){
- $data['data'][$key]['crt_time'] = $value['crt_time'] ? date('Y-m-d H:i:s',$value['crt_time']) : '';
- $data['data'][$key]['month'] = $value['month'] ? date('Y-m',$value['month']) : '';
- $data['data'][$key]['crt_name'] = $emp[$value['crt_id']] ?? '';
- }
- return $data;
- }
- public function fillDataForExport($data, $column, &$return)
- {
- if (empty($data)) return;
- $mainIds = array_column($data, 'id');
- // 1. 获取详情映射 [main_id => [ [code_2=>..., title=>..., item_code=>...], ... ]]
- $detailsMap = $this->getDetailsMap($mainIds);
- foreach ($data as $main) {
- $mainId = $main['id'];
- $details = $detailsMap[$mainId] ?? [];
- // 2. 提取并格式化主表共有信息
- $mainInfo = [
- 'code' => $main['code'],
- 'month' => !empty($main['month']) ? date('Y-m', $main['month']) : '',
- ];
- if (empty($details)) {
- // 如果单据没有明细,则只导出一行主表信息(确保数据完整)
- $tempRow = [];
- foreach ($column as $col) {
- $tempRow[] = $mainInfo[$col] ?? '';
- }
- $return[] = $tempRow;
- } else {
- // 3. 核心平铺逻辑:每一行详情都带上主表单号
- foreach ($details as $sub) {
- // 合并主表数据和详情数据
- $fullRowData = array_merge($mainInfo, $sub);
- $tempRow = [];
- // 严格按照导出 Excel 的列顺序填充数据
- foreach ($column as $col) {
- $tempRow[] = $fullRowData[$col] ?? '';
- }
- $return[] = $tempRow;
- }
- }
- }
- }
- public function getDetailsMap($mainIds)
- {
- $details = RuleSetDetails::where('del_time', 0)
- ->whereIn('main_id', $mainIds)
- ->get();
- if ($details->isEmpty()) return [];
- // 1. 提取所有需要关联的 ID
- $empIds = $details->where('type', RuleSetDetails::type_one)->pluck('data_id')->unique();
- $devIds = $details->where('type', RuleSetDetails::type_two)->pluck('data_id')->unique();
- $itemIds = $details->pluck('item_id')->unique();
- // 2. 批量获取档案 Map
- $empMap = Employee::whereIn('id', $empIds)->get()->keyBy('id');
- $devMap = Device::whereIn('id', $devIds)->get()->keyBy('id');
- $itemMap = Item::whereIn('id', $itemIds)->get()->keyBy('id');
- $typeNames = RuleSetDetails::$type_name;
- $res = [];
- foreach ($details as $item) {
- $detailRow = [];
- // 类型名称(明细类型列)
- $detailRow['type_title'] = $typeNames[$item->type] ?? '';
- // 处理人员或设备的编码与名称(影子列)
- if ($item->type == RuleSetDetails::type_one) {
- $emp = $empMap[$item->data_id] ?? null;
- $detailRow['code_2'] = $emp ? $emp->number : ''; // 明细编码
- $detailRow['title'] = $emp ? $emp->title : ''; // 明细名称
- } else {
- $dev = $devMap[$item->data_id] ?? null;
- $detailRow['code_2'] = $dev ? $dev->code : ''; // 明细编码
- $detailRow['title'] = $dev ? $dev->title : ''; // 明细名称
- }
- // 处理项目编码与名称
- $project = $itemMap[$item->item_id] ?? null;
- $detailRow['item_code'] = $project ? $project->code : '';
- $detailRow['item_title'] = $project ? $project->title : '';
- // 比例
- $detailRow['rate'] = $item->rate;
- // 归档到对应的单据下
- $res[$item->main_id][] = $detailRow;
- }
- return $res;
- }
- public function ruleSetCreate($data, $user){
- $data['top_depart_id'] = $user['top_depart_id'];
- if(empty($data['month'])) return [false, '月份不能为空'];
- // 1. 获取当月 1 号 00:00:00 的时间戳
- $monthStart = $this->changeDateToDate($data['month']);
- $data['month'] = $monthStart;
- // 2. 计算当月结束时间(下个月 1 号减 1 秒)
- $monthEnd = strtotime('+1 month', $monthStart) - 1;
- // 3. 查找在该月份有效期内的项目 (项目开始 <= 月末 且 项目结束 >= 月初)
- $itemIds = DB::table('item')
- ->where('top_depart_id', $data['top_depart_id'])
- ->where('del_time', 0)
- ->where('start_time', '<=', $monthEnd)
- ->where('end_time', '>=', $monthStart)
- ->pluck('id')
- ->toArray();
- if (empty($itemIds)) return [false, "该月份下无项目信息"];
- // 4. 获取这些项目下绑定的所有人员和设备
- $details = DB::table('item_details')
- ->whereIn('item_id', $itemIds)
- ->where('top_depart_id', $data['top_depart_id'])
- ->where('del_time', 0)
- ->get();
- $manMap = []; // [人员ID => [项目ID1, 项目ID2...]]
- $deviceMap = []; // [设备ID => [项目ID1, 项目ID2...]]
- foreach ($details as $row) {
- if ($row->type == RuleSetDetails::type_one) {
- $manMap[$row->data_id][] = $row->item_id;
- } elseif ($row->type == RuleSetDetails::type_two) {
- $deviceMap[$row->data_id][] = $row->item_id;
- }
- }
- // 5. 生成随机比例分配 (复用之前定义的分配函数)
- $man_list = $this->distributeRates($manMap, RuleSetDetails::type_one);
- $device_list = $this->distributeRates($deviceMap, RuleSetDetails::type_two);
- return [true, [
- 'month' => date('Y-m', $monthStart),
- 'man_list' => $man_list,
- 'device_list' => $device_list
- ]];
- }
- /**
- * 核心算法:按对象随机分配整数比例,确保总和 100
- */
- private function distributeRates($map, $type)
- {
- $result = [];
- foreach ($map as $dataId => $items) {
- $count = count($items);
- $rates = [];
- if ($count === 1) {
- $rates = [100];
- } else {
- $sum = 0;
- $temp = [];
- for ($i = 0; $i < $count; $i++) {
- $rand = rand(10, 100);
- $temp[] = $rand;
- $sum += $rand;
- }
- $currentTotal = 0;
- foreach ($temp as $i => $weight) {
- if ($i === $count - 1) {
- $rates[] = 100 - $currentTotal;
- } else {
- $val = (int)round(($weight / $sum) * 100);
- $val = $val <= 0 ? 1 : $val; // 确保不为 0
- $rates[] = $val;
- $currentTotal += $val;
- }
- }
- }
- foreach ($items as $index => $itemId) {
- $result[] = [
- 'type' => $type,
- 'data_id' => $dataId,
- 'item_id' => $itemId,
- 'rate' => $rates[$index]
- ];
- }
- }
- return $result;
- }
- }
|