| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442 |
- <?php
- namespace App;
- use Carbon\Carbon;
- use Illuminate\Database\Eloquent\Model;
- use App\Traits\ModelTimeFormat;
- use Illuminate\Database\Eloquent\SoftDeletes;
- use Illuminate\Support\Arr;
- use Illuminate\Support\Facades\Auth;
- use Illuminate\Support\Facades\Gate;
- class LaborReport extends Model
- {
- use ModelTimeFormat;
- use SoftDeletes;
- protected $fillable=[
- 'id','enter_number','user_workgroup_id','user_id','name','mobile_phone','identity_number','labor_company_id',
- 'check_in_at','verify_at','group_user_id','check_out_at','online_duration','working_duration','created_at','updated_at',
- 'user_duty_check_id','relax_time'
- ];
- protected $appends = [
- 'is_exportGroup','is_export', 'exit_at','enter_at','sequence', 'amountOfJoined','remark','thisRecordOnlineTime','thisRecordWorkingTime','thisRoundRecordWorkingTime',
- 'totalOnlineTime','verifyPerson','userDutyCheckVerifyUserId','isAdult','round_check_in_at','round_check_out_at','has_group_verify_right'
- ];
- protected $tempFields = [
- 'temEnteringRecord',
- 'sequence',
- 'amountOfJoined',
- ];
- static function tokenOfBroadcastEnterAndLeave(){
- return md5('tokenOfListAll'.Carbon::now()->format('Y-m-d'));
- }
- public function userWorkgroup(){
- return $this->hasOne('App\UserWorkgroup','id','user_workgroup_id');
- }
- public function laborCompany(){
- return $this->hasOne('App\LaborCompany','id','labor_company_id');
- }
- public function user(){
- return $this->hasOne('App\User','id','group_user_id');
- }
- public function userDutyCheck(){
- return $this->hasOne('App\UserDutyCheck','id','user_duty_check_id');
- }
- public function laborReportStatus(){
- return $this->hasMany('App\LaborReportStatus','labor_report_id','id');
- }
- public function getRoundCheckInAtAttribute(){
- if (!$this['check_in_at'])return null;
- $round_check_in_at=Carbon::parse($this['check_in_at'])->format('i');
- if ($round_check_in_at>=0&&$round_check_in_at<=5) return Carbon::parse($this['check_in_at'])->clone()->setMinutes(00)->setSeconds(00)->format('Y-m-d H:i:s');
- if ($round_check_in_at>5&&$round_check_in_at<=35) return Carbon::parse($this['check_in_at'])->clone()->setMinutes(30)->setSeconds(00)->format('Y-m-d H:i:s');
- //if ($round_check_in_at==30) return Carbon::parse($this['check_in_at'])->clone()->setMinutes(30)->setSeconds(00)->format('Y-m-d H:i:s');
- if ($round_check_in_at>35&&$round_check_in_at<=59) return Carbon::parse($this['check_in_at'])->clone()->addHour()->setMinutes(00)->setSeconds(00)->format('Y-m-d H:i:s');
- }
- public function getRoundCheckOutAtAttribute(){
- if (!$this['check_out_at'])return null;
- $round_check_out_at=Carbon::parse($this['check_out_at'])->format('i');
- if ($round_check_out_at>=0&&$round_check_out_at<25) return Carbon::parse($this['check_out_at'])->clone()->setMinutes(00)->setSeconds(00)->format('Y-m-d H:i:s');
- if ($round_check_out_at>=25&&$round_check_out_at<=55) return Carbon::parse($this['check_out_at'])->clone()->setMinutes(30)->setSeconds(00)->format('Y-m-d H:i:s');
- //if ($round_check_out_at==30) return Carbon::parse($this['check_out_at'])->clone()->setMinutes(30)->setSeconds(00)->format('Y-m-d H:i:s');
- if ($round_check_out_at>55&&$round_check_out_at<=59) return Carbon::parse($this['check_out_at'])->clone()->addHour()->setMinutes(00)->setSeconds(00)->format('Y-m-d H:i:s');
- }
- public function getRemarkAttribute(){
- return $this->hasOne('App\Sign','signable_id','id')
- ->where('field','remark')->where('signable_type','labor_reports')->value('mark');
- }
- public function getHasGroupVerifyRightAttribute(){
- if (!Gate::allows('人事管理-临时工报表')){return null; }
- if (Gate::allows('人事管理-临时工报表-管理全部组')){return true;}
- $user=Auth::user();
- $userWorkgroupIds=$user->getPermittingWorkgroupIds($allowAll=false);
- if (count($userWorkgroupIds)!=0) return in_array($this['user_workgroup_id'],$userWorkgroupIds);
- }
- public function setRemarkAttribute($remark,$id){
- return Sign::updateOrCreate(['signable_type'=>'labor_reports','signable_id'=>$id,'field'=>'remark'],['mark'=>$remark]);
- }
- public function getIsExportGroupAttribute(){
- return $this['check_out_at']? true:false;
- }
- public function getVerifyPersonAttribute(){
- if ($this['group_user_id']&&$this['group_user_id']==Auth::user()['id'])
- return Auth::user()['name'];
- }
- public function getUserDutyCheckVerifyUserIdAttribute(){
- return $this['userDutyCheck']['verify_user_id']?$this['userDutyCheck']['verify_user_id']:'';
- }
- //总在线时长
- public function getTotalOnlineTimeAttribute(){
- $laborReports=LaborReport::where('enter_number',$this['enter_number'])->get();
- $totalOnlineTime=$laborReports->reduce(function ($value,$laborReport){
- return ($value??0)+$laborReport['thisRecordOnlineTime'];
- });
- return $totalOnlineTime;
- }
- //总工作时长
- public function getTotalWorkingTimeAttribute(){
- $laborReports=LaborReport::where('enter_number',$this['enter_number'])->orderBy('id','asc')->get();
- $totalWorkingTime=$laborReports->reduce(function ($value,$laborReport){
- return ($value??0)+$laborReport['thisRecordWorkingTime'];
- });
- return $totalWorkingTime;
- }
- //本轮工作起始时间
- public function getThisRoundOnlineStartTimeAttribute(){
- $laborReports=LaborReport::where('enter_number',$this['enter_number'])->orderBy('id','asc')->get();
- foreach ($laborReports as $laborReport){
- if ($laborReport['enter_at']&&$laborReport['check_in_at'])
- return $laborReport['check_in_at'];
- }
- }
- //本轮工作结束时间
- public function getThisRoundOnlineEndTimeAttribute(){
- $laborReports=LaborReport::where('enter_number',$this['enter_number'])->get();
- foreach ($laborReports as $laborReport){
- if ($laborReport['exit_at']&&$laborReport['check_out_at'])
- return $laborReport['check_out_at'];
- }
- }
- //本次在线时长
- public function getThisRecordOnlineTimeAttribute(){
- if($this['enter_at']&&!$this['check_out_at']&&!$this['exit_at'])
- return round(Carbon::parse(Carbon::now())->diffInSeconds(Carbon::parse($this['enter_at']))/3600,2);
- if ($this['enter_at']&&$this['check_out_at']&&!$this['exit_at'])
- return round(Carbon::parse($this['check_out_at'])->diffInSeconds(Carbon::parse($this['enter_at']))/3600,2);
- if ($this['enter_at']&&$this['exit_at'])
- return round(Carbon::parse($this['exit_at'])->diffInSeconds(Carbon::parse($this['enter_at']))/3600,2);
- if ($this['check_in_at']&&!$this['enter_at']&&!$this['check_out_at']&&!$this['exit_at'])
- return round(Carbon::parse(Carbon::now())->diffInSeconds(Carbon::parse($this['check_in_at']))/3600,2);
- if ($this['check_in_at']&&!$this['enter_at']&&$this['check_out_at']&&!$this['exit_at'])
- return round(Carbon::parse($this['check_out_at'])->diffInSeconds(Carbon::parse($this['check_in_at']))/3600,2);
- if ($this['check_in_at']&&!$this['enter_at']&&$this['exit_at'])
- return round(Carbon::parse($this['exit_at'])->diffInSeconds(Carbon::parse($this['check_in_at']))/3600,2);
- }
- //本次工作时长
- public function getThisRecordWorkingTimeAttribute(){
- if ($this['check_in_at']&&!$this['check_out_at']&&!$this['relax_time']){
- $workingTime=round(Carbon::parse(Carbon::now())->diffInSeconds(Carbon::parse($this['check_in_at']))/3600,2);
- $checkInTime=Carbon::parse($this['check_in_at']);
- $checkOutTime=Carbon::parse(Carbon::now())->format('H');
- return $this->minusLunchTime($checkInTime,$checkOutTime,$workingTime);
- }
- if ($this['check_in_at']&&$this['check_out_at']&&!$this['relax_time']){
- $workingTime=round(Carbon::parse($this['check_out_at'])->diffInSeconds(Carbon::parse($this['check_in_at']))/3600,2);
- $checkInTime=Carbon::parse($this['check_in_at']);
- $checkOutTime=Carbon::parse($this['check_out_at'])->format('H');
- return $this->minusLunchTime($checkInTime,$checkOutTime,$workingTime);
- }
- if ($this['check_in_at']&&$this['check_out_at']&&$this['relax_time']){
- $workingTime=round(Carbon::parse($this['check_out_at'])->diffInSeconds(Carbon::parse($this['check_in_at']))/3600,2);
- $checkInTime=Carbon::parse($this['check_in_at']);
- $checkOutTime=Carbon::parse($this['check_out_at'])->format('H');
- return $this->minusLunchTime($checkInTime,$checkOutTime,$workingTime)-$this['relax_time']/60;
- }
- }
- //本次取整工作时长
- public function getThisRoundRecordWorkingTimeAttribute(){
- if ($this['round_check_in_at']&&!$this['round_check_out_at']&&!$this['relax_time']){
- $workingTime=round(Carbon::parse(Carbon::now())->diffInSeconds(Carbon::parse($this['round_check_in_at']))/3600,2);
- $checkInTime=Carbon::parse($this['round_check_in_at']);
- $checkOutTime=Carbon::parse(Carbon::now())->format('H');
- return $this->minusLunchTime($checkInTime,$checkOutTime,$workingTime);
- }
- if ($this['round_check_in_at']&&$this['round_check_out_at']&&!$this['relax_time']){
- $workingTime=round(Carbon::parse($this['round_check_out_at'])->diffInSeconds(Carbon::parse($this['round_check_in_at']))/3600,2);
- $checkInTime=Carbon::parse($this['round_check_in_at']);
- $checkOutTime=Carbon::parse($this['round_check_out_at'])->format('H');
- return $this->minusLunchTime($checkInTime,$checkOutTime,$workingTime);
- }
- if ($this['round_check_in_at']&&$this['round_check_out_at']&&$this['relax_time']){
- $workingTime=round(Carbon::parse($this['round_check_out_at'])->diffInSeconds(Carbon::parse($this['round_check_in_at']))/3600,2);
- $checkInTime=Carbon::parse($this['round_check_in_at']);
- $checkOutTime=Carbon::parse($this['round_check_out_at'])->format('H');
- return $this->minusLunchTime($checkInTime,$checkOutTime,$workingTime)-$this['relax_time']/60;
- }
- }
- //工作时长减午饭休息时间
- public function minusLunchTime($checkInTime,$checkOutTime,$hour){
- if ($checkInTime->lessThanOrEqualTo($checkInTime->clone()->setHours(11)->setMinutes(30))&&(int)$checkOutTime>=13){
- $hour=$hour-1;
- }
- return $hour;
- }
- //转场序号
- public function getSequenceAttribute()
- {
- if(Arr::has($this->tempFields,'sequence'))return $this->tempFields['sequence'];
- $laborReports=LaborReport::where('enter_number',$this['enter_number'])->orderBy('id','asc')->get();
- foreach($laborReports as $i=>$laborReport){
- if($laborReport['id']==$this['id']){
- $this->tempFields['sequence']=$i+1;
- return $this->tempFields['sequence'];
- }
- }
- }
- public function getAmountOfJoinedAttribute()
- {
- if(Arr::has($this->tempFields,'amountOfJoined'))return $this->tempFields['amountOfJoined'];
- $this->tempFields['amountOfJoined']=LaborReport::where('enter_number',$this['enter_number'])->orderBy('id','asc')->count();
- return $this->tempFields['amountOfJoined'];
- }
- //进场时间
- public function getEnterAtAttribute()
- {
- $laborReportStatus=LaborReportStatus::where('labor_report_id',$this['id'])->where('status','未审核')->orderBy('id','desc')->first();
- if (empty($laborReportStatus))return null;
- return Carbon::parse($laborReportStatus['created_at'])->format('Y-m-d H:i:s');
- }
- public function getEnteringRecordAttribute()
- {
- $laborReport=LaborReport::with(['laborReportStatus'=>function($query){
- return $query->whereIn('status',['已入场','未审核']);
- }])->where('user_id',$this['user_id'])->orderBy('id','desc')->first();
- if(empty($laborReport))return null;
- return $laborReport;
- }
- public function getExitAtAttribute()
- {
- $laborReportStatus=LaborReportStatus::where('labor_report_id',$this['id'])->where('status','已退场')->orderBy('id','desc')->first();
- if (empty($laborReportStatus))return null;
- return Carbon::parse($laborReportStatus['created_at'])->format('Y-m-d H:i:s');
- }
- //创建或获取进场编号
- public function makeOrGetEnteringNumber()
- {
- if($this['enteringRecord']&&$this['enteringRecord']['enter_number'])
- return $this['enteringRecord']['enter_number'];
- $enteringNumber=date("ymd").str_pad($this['id']>99999?$this['id']%99999:$this['id'],4,"0",STR_PAD_LEFT);
- $this['enter_number']=$enteringNumber;
- return $enteringNumber;
- }
- public function getIsExportAttribute(){
- $laborReportStatus=LaborReportStatus::where('labor_report_id',$this['id'])->orderBy('id','desc')->first();
- return $laborReportStatus['status']=='已退场'?true:false;
- }
- //出场更新临时工报表信息
- static function exitAndChangeLaborReport($laborReport,$userDutyCheck){
- $laborReportStatus=new LaborReportStatus([
- 'labor_report_id'=>$laborReport['id'],
- 'status'=>'已退场',
- ]);
- $laborReportStatus->save();
- $check_in_at=$laborReport->check_in_at??null;
- $exit_at=$userDutyCheck->checked_at;
- $online_duration=round(Carbon::parse($exit_at)->diffInSeconds(Carbon::parse($check_in_at))/3600,2);
- $laborReport->user_duty_check_id=$userDutyCheck->id;
- if ($laborReport->enter_at){
- $enter_at=$laborReport['enter_at'];
- $laborReport->online_duration=round(Carbon::parse($exit_at)->diffInSeconds(Carbon::parse($enter_at))/3600,2);
- }else{
- $laborReport->online_duration=$online_duration;
- }
- $laborReport->update();
- $laborReport->is_export=$laborReport->getIsExportAttribute();
- return $laborReport;
- }
- /**
- * 是否成年
- * @param 身份证号
- * @return int 0 成年,1未成年
- */
- public function getIsAdultAttribute(){
- $flag = 0;
- $tyear=intval(substr($this['identity_number'],6,4));
- $tmonth=intval(substr($this['identity_number'],10,2));
- $tday=intval(substr($this['identity_number'],12,2));
- if($tyear>date("Y")||$tyear<(date("Y")-100)){
- $flag=0;
- }elseif($tmonth<0||$tmonth>12){
- $flag=0;
- }elseif($tday<0||$tday>31){
- $flag=0;
- }else{
- $day_sum = self::full_year_day($tyear,$tmonth,16);
- if((time()-mktime(0,0,0,$tmonth,$tday,$tyear))>$day_sum*24*60*60){
- $flag=0;
- }else{
- $flag=1;
- }
- }
- return $flag;
- }
- /**
- * n周岁的天数
- * @param $tyear
- * @param $tmonth
- * @return int
- */
- public static function full_year_day($tyear,$tmonth,$type=16){
- $sum=365*$type;
- for($i=$tyear+1;$i<$tyear+$type;$i++)//考虑中间年份
- {
- if(self::is_leap_year($i))
- $sum++;
- }
- if(self::is_leap_year($tyear)&&$tmonth<=2)//考虑初末两年
- $sum++;
- if(self::is_leap_year($tyear+$type)&&$tmonth>=3){
- $sum++;
- }
- return $sum;
- }
- /**
- * @param $year
- * @return int 1是闰年,0不是闰年
- */
- public static function is_leap_year($year){
- if(($year%4==0&&$year%100!=0)||$year%400==0)
- return 1;
- else
- return 0;
- }
- //修改临时工报表审核时间
- // static function updateLaborReportVerify($laborReport,$userDutyCheck){
- // $date=date('Y-m-d H:i:s');
- // $laborReport['verify_at']=$date;
- // $laborReport['group_user_id']=$userDutyCheck->group_user_id;
- // $laborReport->update();
- // return;
- // }
- // //添加临时工报表数据
- // static function createLaborReportData($userDutyCheck){
- // $userDetail=UserDetail::find($userDutyCheck->user_id);
- // $name=$userDetail['full_name'];
- // $mobile_phone=$userDetail['mobile_phone'];
- // $identity_number=$userDetail['identity_number'];
- // $labor_company_id=UserLabor::where('user_id',$userDutyCheck->user_id)->value('labor_company_id');
- // $labor_company=LaborCompany::where('id',$labor_company_id)->value('name');
- // if ($userDutyCheck->type=='登入'){
- // $check_in_at=$userDutyCheck['checked_at'];
- // }
- // $date=date('Y-m-d H:i:s');
- // $laborReport=new LaborReport([
- // 'enter_number'=>Uuid::uuid1(),
- // 'user_workgroup_id'=>$userDutyCheck->workgroup_id,
- // 'user_id'=>$userDutyCheck->user_id,
- // 'name'=>$name,
- // 'mobile_phone'=>$mobile_phone,
- // 'identity_number'=>$identity_number,
- // 'labor_company'=>$labor_company,
- // 'check_in_at'=>$check_in_at,
- // 'verify_at'=>$date,
- // 'group_user_id'=>$userDutyCheck->group_user_id,
- // ]);
- // $laborReport->save();
- // $number_id=$laborReport->id;
- // $enter_number=$userDutyCheck->workgroup_id.date ("ymd").str_pad($number_id>99999?$number_id%99999:$number_id,4,"0",STR_PAD_LEFT);
- // $laborReport->enter_number=$enter_number;
- // $laborReport->update();
- // return $laborReport;
- // }
- // //修改临时工报表数据
- // static function updateLaborReportData($laborReport,$userDutyCheck){
- // //正常打卡情况
- // if($userDutyCheck->type=='登出'){
- // $laborReport->check_out_at=$userDutyCheck->checked_at;
- // $checkInDate=Carbon::parse($laborReport['check_in_at']);
- // $checkOutDate=Carbon::parse($userDutyCheck->checked_at);
- // $hour=($checkOutDate->diffInSeconds($checkInDate))/3600; //在线时长
- // $laborReport['online_duration']=$hour;
- // $laborReport['working_duration']=$hour;
- // $laborReport->update();
- // }
- // $date=Carbon::parse($laborReport['check_in_at'])->format('Y-m-d');
- // $userDutyCheckOld=UserDutyCheck::where('user_id',$userDutyCheck->user_id)->orderBy('checked_at','DESC')->limit(10)->first();
- // //补卡情况
- // if ($userDutyCheck->type=='登入'&&$userDutyCheckOld->checked_at>$userDutyCheck->checked_at&&$userDutyCheck->checked_at<$date." 11:00".":00"){
- // $laborReport['check_in_at']=$userDutyCheck['checked_at'];
- // $checkInDate=Carbon::parse($laborReport['check_in_at']);
- // if ($laborReport->check_out_at){
- // $checkOutDate=Carbon::parse($laborReport->check_out_at);
- // $hour=($checkOutDate->diffInSeconds($checkInDate))/3600; //在线时长
- // $laborReport['online_duration']=$hour;
- // }
- // $laborReport->update();
- // }
- // if ($userDutyCheck->type=='登入'&&$userDutyCheckOld->checked_at<$userDutyCheck->checked_at){
- // $userDutyCheck->save();
- // $laborReport['working_duration']=$laborReport['online_duration'];
- // $laborReport->update();
- // }
- // if ($userDutyCheck->type=='登出'&&$userDutyCheckOld->checked_at<$userDutyCheck->checked_at){
- // $laborReport->check_out_at=$userDutyCheck->checked_at;
- // $checkInDate=Carbon::parse($laborReport['check_in_at']);
- // $checkOutDate=Carbon::parse($userDutyCheck->checked_at);
- // $hour=($checkOutDate->diffInSeconds($checkInDate))/3600; //在线时长
- // $laborReport['online_duration']=$hour;
- // $laborReport['working_duration']=$hour;
- // $laborReport->update();
- // }
- //
- // if ($laborReport&&$laborReport->check_out_at){
- // $userDutyCheckStart=UserDutyCheck::where('user_id',$laborReport->user_id)->where('workgroup_id',$laborReport->user_workgroup_id)->where('checked_at','>=',$date." 11:00".":00")
- // ->where('checked_at','<=',$date." 14:00:00")->where('type','登出')->first();
- // $userDutyCheckEnd=UserDutyCheck::where('user_id',$laborReport->user_id)->where('workgroup_id',$laborReport->user_workgroup_id)->where('checked_at','>=',$date." 11:00".":00")
- // ->where('checked_at','<=',$date." 14:00:00")->where('type','登入')->first();
- // $beginTime=Carbon::parse($userDutyCheckStart['checked_at']);
- // $endTime=Carbon::parse($userDutyCheckEnd['checked_at']);
- // $lunchHour=($endTime->diffInSeconds($beginTime))/3600;
- // if($userDutyCheck->type=='登入'&&$userDutyCheck->checked_at<=$date." 14:00:00"){
- // $laborReport['working_duration']=$laborReport['online_duration'];
- // }else if($userDutyCheck->type=='登出'&&$userDutyCheck->checked_at<=$date." 14:00:00"){
- // $laborReport['working_duration']=$laborReport['online_duration'];
- // }else{
- // $laborReport['working_duration']=$laborReport['online_duration']-$lunchHour;
- // }
- // $laborReport->update();
- // }
- // return;
- // }
- }
|