156 lines
5.5 KiB
PHP
156 lines
5.5 KiB
PHP
<?php
|
||
// +----------------------------------------------------------------------
|
||
// | likeadmin快速开发前后端分离管理后台(PHP版)
|
||
// +----------------------------------------------------------------------
|
||
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
|
||
// | 开源版本可自由商用,可去除界面版权logo
|
||
// | gitee下载:https://gitee.com/likeshop_gitee/likeadmin
|
||
// | github下载:https://github.com/likeshop-github/likeadmin
|
||
// | 访问官网:https://www.likeadmin.cn
|
||
// | likeadmin团队 版权所有 拥有最终解释权
|
||
// +----------------------------------------------------------------------
|
||
// | author: likeadminTeam
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace app\adminapi\logic\project;
|
||
|
||
use app\common\model\project\Project;
|
||
use app\common\model\project\ProjectAttendanceDetail;
|
||
use app\common\model\project\ProjectAttendanceRecord;
|
||
use app\common\logic\BaseLogic;
|
||
use app\common\model\project\ProjectPersonnel;
|
||
use think\facade\Db;
|
||
|
||
|
||
/**
|
||
* 考勤记录逻辑
|
||
* Class ProjectAttendanceRecordLogic
|
||
* @package app\adminapi\logic\project
|
||
*/
|
||
class ProjectAttendanceRecordLogic extends BaseLogic
|
||
{
|
||
|
||
|
||
/**
|
||
* @notes 添加考勤记录
|
||
* @param array $params
|
||
* @return bool
|
||
* @author likeadmin
|
||
* @date 2023/12/26 09:44
|
||
*/
|
||
public static function add(array $params): bool
|
||
{
|
||
Db::startTrans();
|
||
try {
|
||
$attendance_detail = $params['attendance_detail'];//json_decode($params['attendance_detail'],true);
|
||
$attendance_code = data_unique_code('项目考勤记录');
|
||
$ProjectAttendanceRecordRes = ProjectAttendanceRecord::create([
|
||
'project_id' => $params['project_id'],
|
||
'attendance_code' => $attendance_code,
|
||
'attendance_date' => strtotime($params['attendance_date']),
|
||
'remark' => $params['remark'],
|
||
'file' => $params['file']? json_encode($params['file']) : null,
|
||
]);
|
||
foreach($attendance_detail as $v){
|
||
ProjectAttendanceDetail::create([
|
||
'attendance_code' => $attendance_code,
|
||
'attendance_id' => $ProjectAttendanceRecordRes->id,
|
||
'project_id' => $params['project_id'],
|
||
'person_id' => $v['person_id'],
|
||
'attendance_date' => strtotime($params['attendance_date']),
|
||
'work_start_time' => strtotime($v['work_start_time']),
|
||
'work_end_time' => strtotime($v['work_end_time']),
|
||
'work_record_num' => $v['work_record_num'],
|
||
'daily_salary' => $v['daily_salary'],
|
||
'daily_living' => $v['daily_living'],
|
||
'daily_subsidy' => $v['daily_subsidy'],
|
||
'daily_other' => $v['daily_other'],
|
||
'daily_income' => $v['daily_income'],
|
||
'remark' => $v['work_num']??'',
|
||
]);
|
||
}
|
||
Db::commit();
|
||
return true;
|
||
} catch (\Exception $e) {
|
||
Db::rollback();
|
||
self::setError($e->getMessage());
|
||
return false;
|
||
}
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 编辑考勤记录
|
||
* @param array $params
|
||
* @return bool
|
||
* @author likeadmin
|
||
* @date 2023/12/26 09:44
|
||
*/
|
||
public static function edit(array $params): bool
|
||
{
|
||
Db::startTrans();
|
||
try {
|
||
ProjectAttendanceRecord::where('id', $params['id'])->update([
|
||
'attendance_date' => strtotime($params['attendance_date']),
|
||
'remark' => $params['remark'],
|
||
]);
|
||
Db::commit();
|
||
return true;
|
||
} catch (\Exception $e) {
|
||
Db::rollback();
|
||
self::setError($e->getMessage());
|
||
return false;
|
||
}
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 删除考勤记录
|
||
* @param array $params
|
||
* @return bool
|
||
* @author likeadmin
|
||
* @date 2023/12/26 09:44
|
||
*/
|
||
public static function delete(array $params): bool
|
||
{
|
||
Db::startTrans();
|
||
try {
|
||
$detailIds = ProjectAttendanceDetail::where('attendance_id',$params['id'])->column('id');
|
||
ProjectAttendanceDetail::destroy($detailIds);
|
||
ProjectAttendanceRecord::destroy($params['id']);
|
||
Db::commit();
|
||
return true;
|
||
} catch (\Exception $e) {
|
||
Db::rollback();
|
||
self::setError($e->getMessage());
|
||
return false;
|
||
}
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 获取考勤记录详情
|
||
* @param $params
|
||
* @return array
|
||
* @author likeadmin
|
||
* @date 2023/12/26 09:44
|
||
*/
|
||
public static function detail($params): array
|
||
{
|
||
$data = ProjectAttendanceRecord::field(['id','attendance_code','project_id', 'attendance_date','remark', 'file'])->findOrEmpty($params['id'])->toArray();
|
||
$project = Project::field('name,project_code')->where('id',$data['project_id'])->findOrEmpty();
|
||
$data['project_name'] = $project['name'];
|
||
$data['project_code'] = $project['project_code'];
|
||
$data['attendance_num'] = ProjectAttendanceDetail::field('id')->where('attendance_id',$data['id'])->count();
|
||
$data['attendance_detail'] = ProjectAttendanceDetail::field(['id', 'person_id', 'work_start_time', 'work_end_time', 'work_record_num', 'daily_salary', 'daily_living', 'daily_subsidy', 'daily_other', 'daily_income', 'remark'])->where('attendance_id',$data['id'])
|
||
->select()->each(function($item){
|
||
$person = ProjectPersonnel::field('name,idcard,work_type')->where('id',$item['person_id'])->findOrEmpty();
|
||
$item['name'] = $person['name'];
|
||
$item['idcard'] = $person['idcard'];
|
||
$item['work_type_text'] = $person->work_type_text;
|
||
return $item;
|
||
})
|
||
->toArray();
|
||
return $data;
|
||
}
|
||
} |