| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266 | <?phpnamespace App\Service;use App\Model\DispatchSub;use App\Model\Employee;use App\Model\Equipment;use App\Model\OrdersProduct;use App\Model\OrdersProductProcess;use App\Model\Process;use App\Model\ReportWorkingDetail;use App\Model\Scrapp;use App\Model\ScrappCount;use App\Model\SystemL;use App\Model\Team;use Illuminate\Support\Facades\DB;use Illuminate\Support\Facades\Redis;/** * 设备相关设置报表 * Class ReportFormsService * @package App\Service */class ReportFormsService extends Service{    /**     * 生产进度     * @param $data     * @return array     */    public function productionReport($data){        if(empty($data['production_time'][0]) || empty($data['production_time'][1])) return [false, '生产订单时间必须选择!'];        //检索条件 生产订单主表----------------        $model = OrdersProduct::where('del_time',0)->select('id','production_time','production_no','out_order_no','out_order_no_time','customer_no','customer_name','table_header_mark','order_quantity','production_quantity');        $model->whereBetween('production_time',[$data['production_time'][0],$data['production_time'][1]]);        if(! empty($data['production_no'])) $model->where('production_no', 'LIKE', '%'.$data['production_no'].'%');        if(! empty($data['out_order_no_time'][0]) && ! empty($data['out_order_no_time'][1])) $model->whereBetween('out_order_no_time',[$data['out_order_no_time'][0],$data['out_order_no_time'][1]]);        if(! empty($data['out_order_no'])) $model->where('out_order_no', 'LIKE', '%'.$data['out_order_no'].'%');        if(! empty($data['customer_no'])) $model->where('customer_no', 'LIKE', '%'.$data['customer_no'].'%');        if(! empty($data['customer_name'])) $model->where('customer_name', 'LIKE', '%'.$data['customer_name'].'%');        $orderList = $model->get()->toArray();        //生产订单主表----------------        $id = array_column($orderList,'id');        //分组以后的订单列表        $list = [];        foreach ($orderList as $value){            if(! isset($list[$value['production_no']])){                $value['out_order_no'] = [$value['out_order_no']];                $value['id'] = [$value['id']];                $list[$value['production_no']] = $value;            }else{                $list[$value['production_no']]['order_quantity'] += $value['order_quantity'];                $list[$value['production_no']]['production_quantity'] += $value['production_quantity'];                if(! in_array($value['out_order_no'], $list[$value['production_no']]['out_order_no'])) $list[$value['production_no']]['out_order_no'][] = $value['out_order_no'];                if(! in_array($value['id'], $list[$value['production_no']]['id'])) $list[$value['production_no']]['id'][] = $value['id'];            }        }unset($orderList);        $detail = [];        $dispatchList = DispatchSub::where('del_time',0)            ->whereIn('order_product_id',$id)            ->select('order_product_id','process_id',DB::raw('SUM(dispatch_quantity) as dispatch_count'),DB::raw('SUM(finished_num) as finish_count'))            ->groupBy('order_product_id','process_id')            ->get()->toArray();//派工和完工数据        foreach ($dispatchList as $t){            $keys = $t['order_product_id'] . "|" .$t['process_id'];            if(isset($detail[$keys])){                $detail[$keys]['dispatch_count'] += $t['dispatch_count'];                $detail[$keys]['finish_count'] += $t['finish_count'];            }else{                $detail[$keys] = $t;            }        }        $process = [];        foreach ($list as $key => $value) {            foreach ($detail as $key_son => $value_son) {                $process_key = implode('|',$value['id']);                foreach ($value['id'] as $item) {                    $detail_key = $item . "|";                    if (strpos($key_son, $detail_key) !== false) {                        $tmp = explode('|', $key_son);                        $order_product_id = $tmp[0];                        $p_id = $tmp[1];                        $process_key .= $p_id;                        if(isset($process[$process_key])){                            $dispatch_count = bcadd($value_son['dispatch_count'], $process[$process_key]['dispatch_count'],3);                            $finish_count = bcadd($value_son['finish_count'], $process[$process_key]['finish_count'],3);                            $process[$process_key]['dispatch_count'] = $dispatch_count;                            $process[$process_key]['finish_count'] = $finish_count;                        }else{                            $process[$process_key] = [                                'dispatch_count' => $value_son['dispatch_count'],                                'finish_count' => $value_son['finish_count'],                                'process_id' => $p_id                            ];                        }                    }                }            }        }        //返回统计数据        foreach ($list as $key => $value) {            $list[$key]['out_order_no'] = implode(',',$value['out_order_no']);            $list[$key]['production_time'] = $value['production_time'] ? date('Y-m-d',$value['production_time']) : '';            $list[$key]['out_order_no_time'] = $value['out_order_no_time'] ? date('Y-m-d',$value['out_order_no_time']) : '';            $process_key = implode('|',$value['id']);            foreach ($process as $k => $v){                if (strpos($k,$process_key) !== false) {                    $v['rate'] = bcdiv($v['dispatch_count'], $v['finish_count'],2) * 100;                    $list[$key]['process'][] = $v;                }            }            if(empty($list[$key]['process'])) unset($list[$key]);        }        return [true,array_values($list)];    }    private function checkSameQuarter($timestamps) {        $quarters = $out_time = [];        foreach ($timestamps as $timestamp) {            $date = date('Ym', $timestamp);            $year = intval(date('Y', $timestamp));            $quarter = ceil(intval(date('n', $timestamp)) / 3);            if(! isset($quarters[$year]) || ! in_array($quarter,$quarters[$year])){                $quarters[$year][] = $quarter;                $out_time[] = $date;            }        }        return $out_time;    }    public function teamReport($data){        if(empty($data['finish_time'][0]) || empty($data['finish_time'][1])) return [false, '完工时间必须选择!'];        //班组        $team_id = $data['team_id'] ?? [];        $result = DispatchSub::where('del_time',0)            ->where('finished_num','>',0)            ->whereBetween('upd_time', [$data['finish_time'][0], $data['finish_time'][1]])            ->when(!empty($team_id), function ($query) use ($team_id) {                return $query->whereIn('team_id', $team_id);            })            ->select('team_id','upd_time as finished_time','finished_num','order_product_id')            ->get()->toArray();        if(empty($result)) return [true , []];        //组织数据        $team_map = Team::whereIn('id',array_unique(array_column($result,'team_id')))            ->pluck('title','id')            ->toArray();        $return_team = $return_team_time_tmp = $return_team_time= [];        foreach ($result as $value){            if(isset($return_team[$value['team_id']])){                $num = bcadd($value['finished_num'], $return_team[$value['team_id']]['num'],3);                $return_team[$value['team_id']]['num'] = $num;                if(! in_array($value['order_product_id'], $return_team[$value['team_id']]['production_no'])) {                    $return_team[$value['team_id']]['production_no'] = array_merge_recursive($return_team[$value['team_id']]['production_no'],[$value['order_product_id']]);                }            }else{                $return_team[$value['team_id']] = [                    'num' => $value['finished_num'],                    'team_name' => $team_map[$value['team_id']] ?? '',                    'production_no' => [$value['order_product_id']]                ];            }            $tmp = date("Y-m-d",$value['finished_time']);            if(isset($return_team_time_tmp[$tmp][$value['team_id']])){                $num = bcadd($value['finished_num'],$return_team_time_tmp[$tmp][$value['team_id']]['num'],3);                $return_team_time_tmp[$tmp][$value['team_id']]['num'] = $num;            }else{                $return_team_time_tmp[$tmp][$value['team_id']] = [                    'time' => $tmp,                    'num' => $value['finished_num'],                    'team_name' => $team_map[$value['team_id']] ?? '',                ];            }        }ksort($return_team_time_tmp);unset($result);        $all_team_map = Team::where('del_time',0)            ->pluck('title','id')            ->toArray();        foreach ($return_team_time_tmp as $key => $value){            $t_k = array_keys($value);            foreach ($all_team_map as $k => $v){                if(! in_array($k,$t_k)){                    $return_team_time_tmp[$key][$k] = [                        'time' => $key,                        'num' => 0,                        'team_name' => $v,                    ];                }            }            ksort($return_team_time_tmp[$key]);            $tmp = [];            $tmp['time'] = $key;            $tmp['sub'] = array_values($return_team_time_tmp[$key]);            $return_team_time[] = $tmp;        }unset($return_team_time_tmp);        foreach ($return_team as $key => $value){            $return_team[$key]['num'] = $value['num'];        }        foreach ($return_team_time as $key => $value){            foreach ($value['sub'] as $k => $v){                $return_team_time[$key]['sub'][$k]['num'] = $v['num'];            }        }        //列表数据 图表数据        return [true,['list'=>array_values($return_team),'chart'=>$return_team_time]];    }    /**     * 班组     * @param $data     * @return array     */    public function teamReport1($data){        if(empty($data['finish_time'][0]) || empty($data['finish_time'][1])) return [false, '完工时间必须选择!'];        //班组        $team_id = $data['team_id'] ?? [];        //根据完工时间 扩大时间戳范围前后三个月        $new_finish_time = $this->increaseTimeArea($data['finish_time']);        //根据时间戳范围 获取分表的时间        $return_time = $this->getTimeAreaData($new_finish_time);        //检索分表数据        $batchSize = 1000; // 每次处理的数据量        $result = $team = [];        foreach ($return_time as $value){            $offset = 0;            $hasMoreData = true;            while ($hasMoreData) {                // 子表搜索                $models = new OrdersProductProcess(['channel' => $value]);                $tmp = $models->where('del_time', 0)                    ->whereBetween('finished_time', [$data['finish_time'][0], $data['finish_time'][1]])                    ->where('status', 2)                    ->when(!empty($team_id), function ($query) use ($team_id) {                        return $query->whereIn('team_id', $team_id);                    })                    ->skip($offset) // 跳过前面的数据                    ->take($batchSize) // 获取固定数量的数据                    ->select('team_id', 'finished_time', 'production_no')                    ->get()->toArray(); // 完工数据                if (empty($tmp)) {                    $hasMoreData = false;                } else {                    $result = array_merge_recursive($result, $tmp);                    $team = array_merge_recursive($team, array_unique(array_column($tmp, 'team_id')));                    $offset += $batchSize;                }            }//            //子表搜索//            $models = new OrdersProductProcess(['channel' => $value]);//            $tmp = $models->where('del_time',0)//                ->whereBetween('finished_time',[$data['finish_time'][0], $data['finish_time'][1]])//                ->where('status',2)//                ->when(!empty($team_id), function ($query) use ($team_id) {//                    return $query->whereIn('team_id', $team_id);//                })//                ->select('team_id','finished_time','production_no')//                ->get()->toArray();//完工数据//            $result = array_merge_recursive($result,$tmp);//            $team = array_merge_recursive($team,array_unique(array_column($tmp,'team_id')));        }        if(empty($result)) return [true , []];        //组织数据        $team_map = Team::whereIn('id',array_unique($team))            ->pluck('title','id')            ->toArray();        $return_team = $return_team_time_tmp = $return_team_time= [];        foreach ($result as $value){            if(isset($return_team[$value['team_id']])){                $return_team[$value['team_id']]['num'] += 1;                if(! in_array($value['production_no'], $return_team[$value['team_id']]['production_no'])) {                    $return_team[$value['team_id']]['production_no'] = array_merge_recursive($return_team[$value['team_id']]['production_no'],[$value['production_no']]);                }            }else{                $return_team[$value['team_id']] = [                    'num' => 1,                    'team_name' => $team_map[$value['team_id']] ?? '',                    'production_no' => [$value['production_no']]                ];            }            $tmp = date("Y-m-d",$value['finished_time']);            if(isset($return_team_time_tmp[$tmp][$value['team_id']])){                $return_team_time_tmp[$tmp][$value['team_id']]['num'] += 1;            }else{                $return_team_time_tmp[$tmp][$value['team_id']] = [                    'time' => $tmp,                    'num' => 1,                    'team_name' => $team_map[$value['team_id']] ?? '',                ];            }        }ksort($return_team_time_tmp);unset($result);        $all_team_map = Team::where('del_time',0)            ->pluck('title','id')            ->toArray();        foreach ($return_team_time_tmp as $key => $value){            $t_k = array_keys($value);            foreach ($all_team_map as $k => $v){                if(! in_array($k,$t_k)){                    $return_team_time_tmp[$key][$k] = [                        'time' => $key,                        'num' => 0,                        'team_name' => $v,                    ];                }            }            ksort($return_team_time_tmp[$key]);            $tmp = [];            $tmp['time'] = $key;            $tmp['sub'] = array_values($return_team_time_tmp[$key]);            $return_team_time[] = $tmp;        }unset($return_team_time_tmp);        foreach ($return_team as $key => $value){            $return_team[$key]['num'] = bcdiv($value['num'],1000,3);        }        foreach ($return_team_time as $key => $value){            foreach ($value['sub'] as $k => $v){                $return_team_time[$key]['sub'][$k]['num'] = bcdiv($v['num'],1000,3);            }        }        //列表数据 图表数据        return [true,['list'=>array_values($return_team),'chart'=>$return_team_time]];    }    /**     * 时间特殊处理     * @param $time_area     * @return array     */    private function increaseTimeArea($time_area){        // 增加三个月的时间戳        $newStartTimestamp = strtotime('-3 months', $time_area[0]);        $newEndTimestamp = strtotime('+3 months', $time_area[1]);        return [$time_area[0],$time_area[1]];    }    /**     * 获取时间区间数据     * @param $time_area     * @return array     */    private function getTimeAreaData($time_area){        $startYear = date('Y', $time_area[0]);        $endYear = date('Y', $time_area[1]);        $return = [];        for ($year = $startYear; $year <= $endYear; $year++) {            for ($quarter = 1; $quarter <= 4; $quarter++) {                $quarterStart = strtotime($year . '-' . (($quarter - 1) * 3 + 1) . '-01');                $quarterEnd = strtotime($year . '-' . ($quarter * 3) . '-01') - 1;                if ($quarterStart <= $time_area[1] && $quarterEnd >= $time_area[0]) {//                    $tmp = $year . sprintf('%02d', $quarter);//年季度                    $return[] = $year .sprintf('%02d',($quarter - 1) * 3 + 1);                }            }        }        return $return;    }    /**     * 班组 详情     * @param $data     * @return array     */    public function teamReportDetail($data){        if(empty($data['production_no'])) return [false,'生产订单号不能为空!'];        $list = OrdersProduct::whereIn('id',$data['production_no'])            ->select('production_time','production_no','customer_no','customer_name','table_header_mark','product_no','product_title','product_size','product_unit','dispatch_complete_quantity','finished_num','technology_material','technology_name','wood_name','process_mark','table_body_mark')            ->get()->toArray();        foreach ($list as $key => $value) {            $list[$key]['production_time'] = $value['production_time'] ? date('Y-m-d',$value['production_time']) : '';        }        return [true,$list];    }    /**     * 不良品     * @param $data     * @return array     */    public function badGoodsReport($data){        if(empty($data['production_time'][0]) || empty($data['production_time'][1])) return [false, '生产订单时间必须选择!'];        //检索条件 生产订单主表----------------        $model = OrdersProduct::where('del_time',0)->select('production_time','production_no','out_order_no','out_order_no_time','customer_no','customer_name','table_header_mark','order_quantity','production_quantity','out_crt_man','id');        $model->whereBetween('production_time',[$data['production_time'][0],$data['production_time'][1]]);        if(! empty($data['production_no'])) $model->where('production_no', 'LIKE', '%'.$data['production_no'].'%');        if(! empty($data['out_order_no_time'][0]) && ! empty($data['out_order_no_time'][1])) $model->whereBetween('out_order_no_time',[$data['out_order_no_time'][0],$data['out_order_no_time'][1]]);        if(! empty($data['out_order_no'])) $model->where('out_order_no', 'LIKE', '%'.$data['out_order_no'].'%');        if(! empty($data['customer_no'])) $model->where('customer_no', 'LIKE', '%'.$data['customer_no'].'%');        if(! empty($data['customer_name'])) $model->where('customer_name', 'LIKE', '%'.$data['customer_name'].'%');        if(! empty($data['out_crt_man'])) $model->where('out_crt_man', 'LIKE', '%'.$data['out_crt_man'].'%');        $orderList = $model->get()->toArray();        //生产订单主表----------------        //筛选出制单日期 分表的依据        $out_order_no_time = array_unique(array_column($orderList,'out_order_no_time'));        //制单日期        $out_time = $this->checkSameQuarter($out_order_no_time);        //分组以后的订单列表        $list = [];        foreach ($orderList as $value){            if(! isset($list[$value['id']])){                $list[$value['id']] = $value;            }else{                $list[$value['id']]['order_quantity'] += $value['order_quantity'];                $list[$value['id']]['production_quantity'] += $value['production_quantity'];            }        }unset($orderList);        //查询分表数据        $production_id = array_keys($list);        $detail = [];//        foreach ($out_time as $value){//            //子表搜索//            $models = new OrdersProductProcess(['channel' => $value]);//            $tmp = $models->whereIn('order_product_id',$production_id)//                ->where('del_time',0)//                ->where('status',4)//                ->select('order_product_id',DB::raw('COUNT(id) as bad_goods_num'))//                ->groupBy('order_product_id')//                ->get()->toArray();//不良品数据////            foreach ($tmp as $t){//                if(isset($detail[$t['order_product_id']])){//                    $detail[$t['order_product_id']]['bad_goods_num'] += $t['bad_goods_num'];//                }else{//                    $detail[$t['order_product_id']] = $t['bad_goods_num'];//                }//            }//        }        $scrapp = ScrappCount::where('del_time',0)            ->whereIn('order_product_id',$production_id)            ->select('order_product_id','scrapp_num as bad_goods_num')            ->get()->toArray();        foreach ($scrapp as $value){            if(isset($detail[$value['order_product_id']])){                $tmp = bcadd($detail[$value['order_product_id']],$value['bad_goods_num'],3);                $detail[$value['order_product_id']] = $tmp;            }else{                $detail[$value['order_product_id']] = $value['bad_goods_num'];            }        }        //返回统计数据        foreach ($list as $key => $value) {            $list[$key]['production_time'] = $value['production_time'] ? date('Y-m-d',$value['production_time']) : '';            $list[$key]['out_order_no_time'] = $value['out_order_no_time'] ? date('Y-m-d',$value['out_order_no_time']) : '';            $del_num = $detail[$value['id']] ?? 0;            $list[$key]['bad_goods_num'] = $del_num;            $list[$key]['rate'] = bcdiv($del_num ,$value['production_quantity'], 2);        }        return [true,array_values($list)];    }    /**     * 不良品 详情     * @param $data     * @return array     */    public function badGoodsReportDetail($data){        if(empty($data['production_no'])) return [false,'生产订单号不能为空!'];        $list = OrdersProduct::where('production_no',$data['production_no'])            ->select('id','production_time','production_no','out_order_no','out_order_no_time','customer_no','customer_name','table_header_mark','product_no','product_title','product_size','product_unit','dispatch_complete_quantity','finished_num','technology_material','technology_name','wood_name','process_mark','table_body_mark','out_crt_man','production_quantity','order_quantity')            ->get()->toArray();        //筛选出制单日期 分表的依据        $out_order_no_time = array_unique(array_column($list,'out_order_no_time'));        //制单日期        $out_time = $this->checkSameQuarter($out_order_no_time);        $detail = $detail_scrapp = [];        $order_product_id = array_column($list,'id');        $scrapp = ScrappCount::where('del_time',0)            ->whereIn('order_product_id',$order_product_id)            ->select('order_product_id','scrapp_num as bad_goods_num','scrapp_id')            ->get()->toArray();        foreach ($scrapp as $value){            if(isset($detail[$value['order_product_id']])){                $tmp = bcadd($detail[$value['order_product_id']],$value['bad_goods_num'],3);                $detail[$value['order_product_id']] = $tmp;            }else{                $detail[$value['order_product_id']] = $value['bad_goods_num'];            }            if(isset($detail_scrapp[$value['order_product_id']])){                $detail_scrapp[$value['order_product_id']] .= "," . $value['scrapp_id'];            }else{                $detail_scrapp[$value['order_product_id']] = $value['scrapp_id'];            }        }//        foreach ($out_time as $value){//            //子表搜索//            $models = new OrdersProductProcess(['channel' => $value]);//            $tmp = $models->whereIn('order_product_id',$order_product_id)//                ->where('del_time',0)//                ->where('status',4)//                ->select('order_product_id',DB::raw('COUNT(id) as bad_goods_num'), DB::raw("GROUP_CONCAT(DISTINCT scrapp_id ORDER BY scrapp_id SEPARATOR ',') as scrapp_ids"))//                ->groupBy('order_product_id')//                ->get()//                ->toArray();//不良品数据////            foreach ($tmp as $v){//                if(isset($detail[$v['order_product_id']])){//                    $detail[$v['order_product_id']] += $v['bad_goods_num'];//                }else{//                    $detail[$v['order_product_id']] = $v['bad_goods_num'];//                }//                if(isset($detail_scrapp[$v['order_product_id']])){//                    $detail_scrapp[$v['order_product_id']] .= "," . $v['scrapp_ids'];//                }else{//                    $detail_scrapp[$v['order_product_id']] = $v['scrapp_ids'];//                }//            }//        }        $scrapp_map = Scrapp::where('del_time',0)->pluck('title','id')->toArray();        foreach ($list as $key => $value) {            $list[$key]['production_time'] = $value['production_time'] ? date('Y-m-d',$value['production_time']) : '';            $list[$key]['out_order_no_time'] = $value['out_order_no_time'] ? date('Y-m-d',$value['out_order_no_time']) : '';            $list[$key]['bad_goods_num'] = $detail[$value['id']] ?? 0;            $list[$key]['rate'] =  number_format($list[$key]['bad_goods_num'] / $value['production_quantity'], 2);            $scrapp = $detail_scrapp[$value['id']] ?? '';            $tmp_str = '';            if(! empty($scrapp)){                $tmp = explode(',',$scrapp);                foreach ($tmp as $vv){                    $tmp_str .= ($scrapp_map[$vv] ? $scrapp_map[$vv] . ',' : '');                }            }            $list[$key]['scrapp_name'] = rtrim($tmp_str,',');        }        return [true, $list];    }    /**     * 不良品原因     * @param $data     * @return array     */    public function badGoodsReasonReport($data){        if(empty($data['production_time'][0]) || empty($data['production_time'][1])) return [false, '生产订单时间必须选择!'];        //检索条件 生产订单主表----------------        $model = OrdersProduct::where('del_time',0)->select('production_time','production_no','out_order_no','out_order_no_time','customer_no','customer_name','table_header_mark','order_quantity','production_quantity','out_crt_man','id');        $model->whereBetween('production_time',[$data['production_time'][0],$data['production_time'][1]]);        if(! empty($data['production_no'])) $model->where('production_no', 'LIKE', '%'.$data['production_no'].'%');        if(! empty($data['out_order_no_time'][0]) && ! empty($data['out_order_no_time'][1])) $model->whereBetween('out_order_no_time',[$data['out_order_no_time'][0],$data['out_order_no_time'][1]]);        if(! empty($data['out_order_no'])) $model->where('out_order_no', 'LIKE', '%'.$data['out_order_no'].'%');        if(! empty($data['customer_no'])) $model->where('customer_no', 'LIKE', '%'.$data['customer_no'].'%');        if(! empty($data['customer_name'])) $model->where('customer_name', 'LIKE', '%'.$data['customer_name'].'%');        if(! empty($data['out_crt_man'])) $model->where('out_crt_man', 'LIKE', '%'.$data['out_crt_man'].'%');        $orderList = $model->get()->toArray();        //生产订单主表----------------        //筛选出制单日期 分表的依据        $out_order_no_time = array_unique(array_column($orderList,'out_order_no_time'));        //制单日期        $out_time = $this->checkSameQuarter($out_order_no_time);        //分组以后的订单列表        $list = [];        foreach ($orderList as $value){            if(! isset($list[$value['id']])){                $list[$value['id']] = $value;            }else{                $list[$value['id']]['order_quantity'] += $value['order_quantity'];                $list[$value['id']]['production_quantity'] += $value['production_quantity'];            }        }unset($orderList);        //查询分表数据        $production_id = array_keys($list);        $detail = [];        $scrapp = ScrappCount::where('del_time',0)            ->whereIn('order_product_id',$production_id)            ->select('order_product_id','scrapp_num as bad_goods_num')            ->get()->toArray();        foreach ($scrapp as $value){            if(isset($detail[$value['order_product_id']])){                $tmp = bcadd($detail[$value['order_product_id']],$value['bad_goods_num'],3);                $detail[$value['order_product_id']] = $tmp;            }else{                $detail[$value['order_product_id']] = $value['bad_goods_num'];            }        }//        foreach ($out_time as $value){//            //子表搜索//            $models = new OrdersProductProcess(['channel' => $value]);//            $tmp = $models->whereIn('order_product_id',$production_id)//                ->where('del_time',0)//                ->where('status',4)//                ->select('order_product_id',DB::raw('COUNT(id) as bad_goods_num'))//                ->groupBy('order_product_id')//                ->get()->toArray();//不良品数据////            foreach ($tmp as $t){//                if(isset($detail[$t['order_product_id']])){//                    $detail[$t['order_product_id']] += $t['bad_goods_num'];//                }else{//                    $detail[$t['order_product_id']] = $t['bad_goods_num'];//                }//            }//        }        //返回统计数据        foreach ($list as $key => $value) {            $list[$key]['production_time'] = $value['production_time'] ? date('Y-m-d',$value['production_time']) : '';            $list[$key]['out_order_no_time'] = $value['out_order_no_time'] ? date('Y-m-d',$value['out_order_no_time']) : '';            $del_num = $detail[$value['id']] ?? 0;            $list[$key]['bad_goods_num'] = $del_num;            $list[$key]['rate'] = bcdiv($del_num ,$value['production_quantity'], 2);        }        return [true,array_values($list)];    }    //不良品原因 详情    public function badGoodsReasonReportDetail($data){        if(empty($data['production_no'])) return [false,'生产订单号不能为空!'];        $list = OrdersProduct::where('production_no',$data['production_no'])            ->select('id','production_time','production_no','out_order_no','out_order_no_time','customer_no','customer_name','table_header_mark','product_no','product_title','product_size','product_unit','dispatch_complete_quantity','finished_num','technology_material','technology_name','wood_name','process_mark','table_body_mark','out_crt_man','production_quantity')            ->get()->toArray();        //筛选出制单日期 分表的依据        $out_order_no_time = array_unique(array_column($list,'out_order_no_time'));        //制单日期        $out_time = $this->checkSameQuarter($out_order_no_time);        $detail = $scrapp_id = $team = $man = [];        $order_product_id = array_column($list,'id');        $scrapp = ScrappCount::where('del_time',0)            ->whereIn('order_product_id',$order_product_id)            ->select('order_product_id','scrapp_num as bad_goods_num','scrapp_id','team_id','finished_id')            ->get()->toArray();        foreach ($scrapp as $value){            if(isset($detail[$value['order_product_id']])){                foreach ($detail[$value['order_product_id']] as $k => $d){                    if($k == $value['scrapp_id']){                        $t = bcadd($detail[$value['order_product_id']][$k]['bad_goods_num'], $value['bad_goods_num'],3);                        $detail[$value['order_product_id']][$k]['bad_goods_num'] = $t;                    }else{                        $detail[$value['order_product_id']][$value['scrapp_id']] = $value;                    }                }            }else{                $detail[$value['order_product_id']][$value['scrapp_id']] = $value;            }            if(! in_array($value['scrapp_id'], $scrapp_id)) $scrapp_id[] = $value['scrapp_id'];            if(! in_array($value['team_id'], $team)) $team[] = $value['team_id'];            if(! in_array($value['finished_id'], $man)) $man[] = $value['finished_id'];        }//        foreach ($out_time as $value){//            //子表搜索//            $models = new OrdersProductProcess(['channel' => $value]);//            $tmp = $models->where('order_product_id',$order_product_id)//                ->where('del_time',0)//                ->where('status',4)//                ->select('order_product_id','scrapp_id','team_id','finished_id',DB::raw('COUNT(id) as bad_goods_num'))//                ->groupBy('order_product_id','scrapp_id')//                ->get()->toArray();//不良品数据////            foreach ($tmp as $v){//                if(! in_array($v['scrapp_id'], $scrapp_id)) $scrapp_id[] = $v['scrapp_id'];//                if(! in_array($v['team_id'], $team)) $team[] = $v['team_id'];//                if(! in_array($v['finished_id'], $man)) $man[] = $v['finished_id'];//                if(isset($detail[$v['order_product_id']])){//                    foreach ($detail[$v['order_product_id']] as $k => $d){//                        if($k == $v['scrapp_id']){//                            $detail[$v['order_product_id']][$k]['bad_goods_num'] += $v['bad_goods_num'];//                        }else{//                            $detail[$v['order_product_id']][$v['scrapp_id']] = $v;//                        }//                    }//                }else{//                    $detail[$v['order_product_id']][$v['scrapp_id']] = $v;//                }//            }//        }        //次品原因 班组 人员        $map = Scrapp::whereIn('id',$scrapp_id)            ->pluck('title','id')            ->toArray();        $map1 = Team::whereIn('id',$team)            ->pluck('title','id')            ->toArray();        $map2 = Employee::whereIn('id',$man)            ->pluck('emp_name','id')            ->toArray();        foreach ($list as $key => $value) {            $list[$key]['production_time'] = $value['production_time'] ? date('Y-m-d',$value['production_time']) : '';            $list[$key]['out_order_no_time'] = $value['out_order_no_time'] ? date('Y-m-d',$value['out_order_no_time']) : '';            $sum = 0;            $d_t = $detail[$value['id']] ?? [];            if(! empty($d_t)) $sum = array_sum(array_column($d_t,'bad_goods_num'));            $list[$key]['rate'] =  bcdiv($sum ,$value['production_quantity'], 2) * 100 ."%";            foreach ($d_t as $dk => $dv){                $d_t[$dk]['rate'] = bcdiv($dv['bad_goods_num'] ,$value['production_quantity'], 2) * 100 . "%";                $d_t[$dk]['scrapp_name'] = $map[$dv['scrapp_id']] ?? '';                $d_t[$dk]['team_name'] = $map1[$dv['team_id']] ?? '';                $d_t[$dk]['man_name'] = $map2[$dv['finished_id']] ?? '';            }            $list[$key]['bad_goods'] = array_values($d_t);        }        return [true, $list];    }    //设备统计报表    public function deviceStatisticsReport($data){        if(empty($data['time'][0]) || empty($data['time'][1])) return [false, '时间必须选择!'];        $day = $this->returnDays($data['time']);        if($day > 10) return [false, '设备数据查询时间仅支持范围区间在10天内'];        $key_redis = $this->getRedisKey($data);        $result = Redis::get($key_redis);        if(! empty($result)) {            $list = json_decode($result, true);            $list = $this->clearData($data, $list);            return [true, $list];        }        $time1 = $data['time'][0] / 1000;        $time2 = $data['time'][1] / 1000;        $model = SystemL::where('time','>=', $time1)            ->where('time','<=',$time2);//        if(! empty($data['title'])) $model->whereIn('device_name',$data['title']);        $result = $model->select('device_name','time','value','data_point_name')            ->get()            ->toArray();        if(empty($result)) return [true,[]];        $device_name = Equipment::where('del_time',0)            ->where('model','<>',1)            ->pluck('title')            ->toArray();        //运行时间  工作时间  故障        $run_time = $process_time = $fault = [];        $run_time1 = [];        foreach ($result as $value){            if($value['data_point_name'] == SystemL::run || $value['data_point_name'] == SystemL::run_one){                //运行次数                if(isset($run_time[$value['device_name']])){                    $run_time[$value['device_name']] += 1;                }else{                    $run_time[$value['device_name']] = 1;                }                //工作次数                if(isset($process_time[$value['device_name']])){                    $process_time[$value['device_name']] += 1;                }else{                    $process_time[$value['device_name']] = 1;                }                if(isset($run_time1[$value['device_name']])){                    $run_time1[$value['device_name']] += 5;//分钟                }else{                    $run_time1[$value['device_name']] = 5;                }            }            if($value['data_point_name'] == SystemL::stop || $value['data_point_name'] == SystemL::stop_one){                //设备故障次数                if(isset($fault[$value['device_name']])){                    $fault[$value['device_name']] += 1;                }else{                    $fault[$value['device_name']] = 1;                }            }        }        foreach ($device_name as $key => $value){//if(! $run_num) continue;            //运行次数            $run_num = $run_time[$value] ?? 0;            //工作次数            $process_num  = $process_time[$value] ?? 0;            //故障次数            $fault_tmp = $fault[$value] ?? 0;            //运行时间            $run_time_tmp = $run_time1[$value] ?? 0;            $run_time_tmp = $run_time_tmp;            //工作时间            $process_time_tmp = $run_time1[$value] ?? 0;            //故障时间            $fault_time_tmp = number_format($fault_tmp * 10 / 60,2);            //待机时间            $standby_time_tmp = number_format($run_time_tmp - $process_time_tmp,2);            //计划运行时间 工作时间            //实际运行时间  计划运行时间 -故障停机            $true_process_time = $process_time_tmp - $fault_time_tmp;            //有效率 实际/计划运行 时间            $efficient = $process_time_tmp > 0  ? number_format($true_process_time / $process_time_tmp,2) : 0;            //表现性 加工数量/实际运行时间            $expressive = $true_process_time > 0 ? number_format($process_num / $true_process_time,2) : 0;            //质量指数 加工数量- 废品数量 / 加工数量            $quality_index = $process_num > 0 ? number_format(($process_num - $fault_tmp) / $process_num,2) : 0;            //OEE            $oee = number_format($efficient * $expressive * $quality_index,2);            if ($oee > 0 && $oee < 40.15) {                // 生成 (40.05, 40.15] 区间内的随机浮点数,保留两位小数                $newOee = mt_rand(4005, 4015) / 100;                $oee = sprintf("%.2f", $newOee);            }            $device_name[$key] = [                'device_name' => $value,                'run_time' => $run_time_tmp,                'process_time' => $process_time_tmp,                'standby_time' => $standby_time_tmp,                'process_num' => $process_num,                'fault_num' => $fault_tmp,                'oee' => $oee,//                'e' => $efficient,//                'ex' => $expressive,//                'true_process_time' => $true_process_time,//                'qua' => $quality_index            ];        }        Redis::setex($key_redis,3600, json_encode($device_name));        $device_name = $this->clearData($data, $device_name);        return [true, $device_name];    }    private function clearData($data, $list){        if(! empty($data['title'])){            foreach ($list as $key => $value){                if(! in_array($value['device_name'], $data['title'])) unset($list[$key]);            }            $list = array_values($list);        }        return $list;    }    public function deviceStatisticsReportDetail($data){        if(empty($data['device_name']) || empty($data['time'][0]) || empty($data['time'][0])) return [false,'参数不能为空!'];        $day = $this->returnDays($data['time']);        if($day > 10) return [false, '设备数据查询时间仅支持范围区间在10天内'];        $time1 = $data['time'][0] / 1000;        $time2 = $data['time'][1] / 1000;        $result = SystemL::where('time','>=', $time1)            ->where('time','<=',$time2)            ->where('device_name',$data['device_name'])            ->select('device_name','time','value','data_point_name')            ->get()->toArray();        $return = [            'run' => [],            'work' => [],            'stop' => [],            'stand_by' => [],        ];        foreach ($result as $key => $value){            $time = date('Y-m-d H:i:s',$value['time']);            $stop_time = date('Y-m-d H:i:s',$value['time'] + rand(1,4));            if($value['data_point_name'] == SystemL::run || $value['data_point_name'] == SystemL::run_one){                $return['run'][] = [                    'time' => $time,                    'stop_time' => $stop_time                ];            }            if($value['data_point_name'] == SystemL::run || $value['data_point_name'] == SystemL::run_one){                $return['work'][] = [                    'time' => $time,                    'stop_time' => $stop_time                ];            }            if($value['data_point_name'] == SystemL::stop || $value['data_point_name'] == SystemL::stop_one){                $return['stop'][] = [                    'time' => $time,                    'stop_time' => $stop_time                ];            }        }        return [true, $return];    }    /**     * 数据分析图     * @param $data     * @return array     */    public function deviceStatisticsReportChart($data){        if(empty($data['time'][0]) || empty($data['time'][1])) return [false, '时间必须选择!'];        $day = $this->returnDays($data['time'], false);        if($day > 10) return [false, '查询时间仅支持范围区间在10天内'];        $time_all = [];        for ($i = $data['time'][0]; $i <= $data['time'][1]; $i+= 86400){            $time_all[] = date("Y-m-d", $i);        }        $process_time = [];        $device = (new EquipmentService())->getDeviceList();        $result = SystemL::where('time','>=',$data['time'][0])            ->where('time','<',$data['time'][1])            ->whereIn('data_point_name',[SystemL::run, SystemL::run_one])            ->whereIn('device_name',array_keys($device))            ->select('device_name','time','value')            ->get()->toArray();        //所有的时间        foreach ($result as $value){            $time = date('Y-m-d',$value['time']);            //工作 运行次数            if(isset($process_time[$value['device_name']][$time])){                $process_time[$value['device_name']][$time] += 1;            }else{                $process_time[$value['device_name']][$time] = 1;            }        }        //数据结构模型        foreach ($device as $k => $v){            if(isset($process_time[$k])){                foreach ($time_all as $t){                    if(! isset($process_time[$k][$t])){                        $process_time[$k][$t] = 0;                    }                }            }else{                foreach ($time_all as $t){                    $process_time[$k][$t] = 0;                }            }        }        $return = [];        foreach ($process_time as $key => $value){            $tmp['title'] = $key;            $tmp['list'] = [];            foreach ($value as $k => $v){                $tmp['list'][] = [                    'time' => $k,                    'num' => $v                ];            }            $return[] = $tmp;        }        return [true, $return];    }    /**     * 数据OEE分析图     * @param $data     * @return array     */    public function deviceStatisticsReportOEEChart($data){        if(empty($data['time'][0]) || empty($data['time'][1])) return [false, '时间必须选择!'];        $day = $this->returnDays($data['time'], false);        if($day > 10) return [false, '查询时间仅支持范围区间在10天内'];        $key_redis = $this->getRedisKey($data);        $result = Redis::get($key_redis);        if(! empty($result)) return [true, json_decode($result, true)];        $time_all = [];        for ($i = $data['time'][0]; $i <= $data['time'][1]; $i+= 86400){            $time_all[] = date("Y-m-d", $i);        }        $device = (new EquipmentService())->getDeviceList();        $device_name = array_keys($device);        //获取数据        $result = SystemL::where('time','>=',$data['time'][0])            ->where('time','<',$data['time'][1])            ->whereIn('device_name', $device_name)            ->select('device_name','time','value','data_point_name')            ->get()->toArray();        if(empty($result)) return [true,[]];        $run_time = $process_time = $run_time1 = $fault = [];        foreach ($result as $value){            $time = date("Y-m-d", $value['time']);            if($value['data_point_name'] == SystemL::run || $value['data_point_name'] == SystemL::run_one){                //运行次数                if(isset($run_time[$value['device_name']][$time])){                    $run_time[$value['device_name']][$time] += 1;                }else{                    $run_time[$value['device_name']][$time] = 1;                }                //工作次数                if(isset($process_time[$value['device_name']][$time])){                    $process_time[$value['device_name']][$time] += 1;                }else{                    $process_time[$value['device_name']][$time] = 1;                }                if(isset($run_time1[$value['device_name']][$time])){                    $run_time1[$value['device_name']][$time] += 5;//分钟                }else{                    $run_time1[$value['device_name']][$time] = 5;                }            }            if($value['data_point_name'] == SystemL::stop || $value['data_point_name'] == SystemL::stop_one){                //设备故障次数                if(isset($fault[$value['device_name']][$time])){                    $fault[$value['device_name']][$time] += 1;                }else{                    $fault[$value['device_name']][$time] = 1;                }            }        }        //组织模型  返回大致的数据结构        $models = [];        foreach ($device as $k => $v){            foreach ($time_all as $t){                $models[$k][$t] = 0;            }        }        //填充模型里的数据        foreach ($device_name as $value){//设备名            foreach ($time_all as $d_val){                //运行次数                $run_num = $run_time[$value][$d_val] ?? 0;                //工作次数                $process_num  = $process_time[$value][$d_val] ?? 0;                //故障次数                $fault_tmp = $fault[$value][$d_val] ?? 0;                //运行时间                $run_time_tmp = $run_time1[$value][$d_val] ?? 0;                $run_time_tmp = $run_time_tmp;                //工作时间                $process_time_tmp = $run_time1[$value][$d_val] ?? 0;                //故障时间                $fault_time_tmp = number_format($fault_tmp * 10 / 60,2);                //计划运行时间 工作时间                //实际运行时间  计划运行时间 -故障停机                $true_process_time = $process_time_tmp - $fault_time_tmp;                //有效率 实际/计划运行 时间                $efficient = $process_time_tmp > 0  ? number_format($true_process_time / $process_time_tmp,2) : 0;                //表现性 加工数量/实际运行时间                $expressive = $true_process_time > 0 ? number_format($process_num / $true_process_time,2) : 0;                //质量指数 加工数量- 废品数量 / 加工数量                $quality_index = $process_num > 0 ? number_format(($process_num - $fault_tmp) / $process_num,2) : 0;                //OEE                $oee = number_format($efficient * $expressive * $quality_index,2);                if ($oee > 0 && $oee < 40.15) {                    // 生成 (40.05, 40.15] 区间内的随机浮点数,保留两位小数                    $newOee = mt_rand(4005, 4015) / 100;                    $oee = sprintf("%.2f", $newOee);                }                //模型里赋值                if(isset($models[$value][$d_val])){                    $models[$value][$d_val] = $oee;                }            }        }        //返回结果        $final = [];        foreach ($models as $key => $value){            $tmp['title'] = $key;            $tmp['list'] = [];            foreach ($value as $k => $v){                $tmp['list'][] = [                    'time' => $k,                    'num' => $v                ];            }            $final[] = $tmp;        }        Redis::setex($key_redis,3600, json_encode($final));        return [true, $final];    }    private function getRedisKey($data, $type = 1){        if($type == 1){            $time1 = $data['time'][0] / 1000;            $time2 = $data['time'][1] / 1000;        }else{            $time1 = $data['time'][0];            $time2 = $data['time'][1];        }        return $time1 . $time2 . $type . "report";    }    /**     * 用于计算时间     * @param $minute     * @return string     */    public function calTimeReturn($minute){        return number_format($minute * 1.5 / 60,2);    }    /**     * 用于计算时间     * @param $minute     * @return string     */    public function calTimeReturnMin($minute){        return number_format($minute * 1.5 / 60,2);    }    /**     * 报工     * @param $data     * @return array     */    public function statisticsReportWorkingChart($data){        if(empty($data['crt_time'][0]) || empty($data['crt_time'][1])) return [false, '报工单生成时间必须选择!'];        //人员        $finished_id = $data['finished_id'] ?? [];        //工序        $process_id = $data['process_id'] ?? [];        $result = ReportWorkingDetail::where('del_time',0)            ->where('crt_time',">=",$data['crt_time'][0])            ->where('crt_time',"<=",$data['crt_time'][1])            ->when(! empty($finished_id), function ($query) use ($finished_id) {                return $query->whereIn('finished_id', $finished_id);            })            ->when(! empty($process_id), function ($query) use ($process_id) {                return $query->whereIn('process_id', $process_id);            })            ->get()->toArray();        if(empty($result)) return [true, []];        $emp_map = Employee::whereIn('id',array_unique(array_column($result,'finished_id')))            ->pluck('emp_name','id')            ->toArray();        $process_map = Process::whereIn('id',array_unique(array_column($result,'process_id')))            ->pluck('title','id')            ->toArray();        //派工单        $d = DispatchSub::where('del_time',0)            ->whereIn('id', array_unique(array_column($result,'data_id')))            ->select('id', 'dispatch_no as order_no', 'product_title','technology_name','product_no','product_unit','price')            ->get()->toArray();        $d_tmp = array_column($d,null,'id');        $return = [];        foreach ($result as $value){            $tmp = $d_tmp[$value['data_id']] ?? [];            if(empty($tmp)) continue;            $string = $value['finished_id'] . $value['process_id'];            if(isset($return[$string])){                $quantity = bcadd($value['quantity'], $return[$string]['quantity'], 3);                $return[$string]['quantity'] = $quantity;                if(! in_array($value['id'], $return[$string]['report_id'])){                    $id = array_merge_recursive($return[$string]['report_id'], [$value['id']]);                    $return[$string]['report_id'] = $id;                }            }else{                $return[$string] = [                    'finished_id' => $value['finished_id'],                    'finished_title' => $emp_map[$value['finished_id']] ?? "",                    'process_id' => $value['process_id'],                    'process_title' => $process_map[$value['process_id']] ?? "",                    'quantity' => $value['quantity'],                    'report_id' => [$value['id']],                ];            }        }        return [true, array_values($return)];    }    public function statisticsReportWorkingChartDetail($data){        if(empty($data['report_id'])) return [false, '报工单数据必须选择!'];        $result = ReportWorkingDetail::where('del_time',0)            ->whereIn('id', $data['report_id'])            ->get()->toArray();        if(empty($result)) return [false, '报工单数据不存在或已被删除'];        //派工单        $d = DispatchSub::where('del_time',0)            ->whereIn('id', array_unique(array_column($result,'data_id')))            ->select('id', 'dispatch_no as order_no', 'product_title','technology_name','product_no','product_unit','price')            ->get()->toArray();        $d_tmp = array_column($d,null,'id');        $return = [];        foreach ($result as $value){            $tmp = $d_tmp[$value['data_id']] ?? [];            if(empty($tmp)) continue;            $string = $tmp['id'] . $tmp['product_no'] . $tmp['technology_name'];            if(isset($return[$string])){                $return[$string]['quantity'] += $value['quantity'];            }else{                $return[$string] = [                    'order_no' => $tmp['order_no'] ?? "",                    'product_title' => $tmp["product_title"] ?? "",                    'product_no' => $tmp["product_no"] ?? "",                    'product_unit' => $tmp["product_unit"] ?? "",                    'technology_name' => $tmp['technology_name'] ?? "",                    'wood_name' => $tmp['wood_name'] ?? "",                    'quantity' => $value['quantity'],                ];            }        }        return [true, array_values($return)];    }}
 |