Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vehicle-quality-review
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
王飞
vehicle-quality-review
Commits
41bf6e19
Commit
41bf6e19
authored
1 year ago
by
高滢
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev' of
http://gitlab.91isoft.com:90/wangfei/vehicle-quality-review
into gaoying
parents
8de2cbc3
dcd148f0
dev
gaixiankang
gaoying
master
songyuanshuo
wangdingyi
wangfei
19.0
18.0
17.0
16.0
15.0
14.0
13.0
12.0
11.0
10.0
9.0
8.0
7.0
6.0
5.0
4.0
3.0
2.0
1.0
2 merge requests
!211
dev - master
,
!104
Gaoying
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
110 additions
and
32 deletions
+110
-32
TaskMapper.java
...ity-review/src/main/java/com/ruoyi/mapper/TaskMapper.java
+4
-0
TaskService.java
...y-review/src/main/java/com/ruoyi/service/TaskService.java
+7
-0
TaskServiceImpl.java
...src/main/java/com/ruoyi/service/impl/TaskServiceImpl.java
+19
-7
TaskController.java
...ty-review/src/main/java/com/ruoyi/web/TaskController.java
+10
-1
TaskEditRequest.java
.../src/main/java/com/ruoyi/web/request/TaskEditRequest.java
+7
-0
TaskFindResponse.java
...rc/main/java/com/ruoyi/web/response/TaskFindResponse.java
+4
-0
TaskMapper.xml
quality-review/src/main/resources/mapper/TaskMapper.xml
+44
-10
TaskUserRelationMapper.xml
...view/src/main/resources/mapper/TaskUserRelationMapper.xml
+2
-1
application-prod-druid.yml
ruoyi-admin/src/main/resources/application-prod-druid.yml
+5
-5
application-prod.yml
ruoyi-admin/src/main/resources/application-prod.yml
+8
-8
No files found.
quality-review/src/main/java/com/ruoyi/mapper/TaskMapper.java
View file @
41bf6e19
...
...
@@ -2,6 +2,8 @@ package com.ruoyi.mapper;
import
com.baomidou.mybatisplus.core.mapper.BaseMapper
;
import
com.ruoyi.domain.Task
;
import
com.ruoyi.domain.TaskSampleRelation
;
import
com.ruoyi.domain.TaskUserRelation
;
import
com.ruoyi.web.request.TaskFindFinishRequest
;
import
com.ruoyi.web.request.TaskFindPendingRequest
;
import
com.ruoyi.web.request.TaskFindRequest
;
...
...
@@ -21,6 +23,8 @@ public interface TaskMapper extends BaseMapper<Task> {
List
<
Task
>
findFinish
(
TaskFindFinishRequest
request
);
List
<
Task
>
findUserFinish
(
@Param
(
"request"
)
TaskFindFinishRequest
request
,
@Param
(
"userId"
)
Long
userId
);
List
<
TaskFindResponse
>
findByUserId
(
@Param
(
"request"
)
TaskFindRequest
request
,
@Param
(
"userId"
)
Long
userId
);
Long
findByCarReviewTaskId
(
@Param
(
"carReviewId"
)
Long
carReviewId
);
...
...
This diff is collapsed.
Click to expand it.
quality-review/src/main/java/com/ruoyi/service/TaskService.java
View file @
41bf6e19
...
...
@@ -47,4 +47,11 @@ public interface TaskService extends IService<Task> {
List
<
TaskFindResponse
>
findCreate
(
TaskFindRequest
request
,
Long
userId
);
TaskGetInfoResponse
getInfo
(
TaskGetInfoRequest
request
);
/**
* 查询已办任务
* @param request
* @return
*/
List
<
Task
>
findUserFinish
(
TaskFindFinishRequest
request
,
Long
userId
);
}
This diff is collapsed.
Click to expand it.
quality-review/src/main/java/com/ruoyi/service/impl/TaskServiceImpl.java
View file @
41bf6e19
...
...
@@ -135,7 +135,7 @@ public class TaskServiceImpl extends ServiceImpl<TaskMapper, Task> implements Ta
// 保存关联的零部件样品信息
List
<
TaskSampleRelation
>
partRelations
=
request
.
getPartSample
();
if
(
relations
.
size
()
!=
0
&&
r
elations
!=
null
)
{
if
(
partRelations
.
size
()
!=
0
&&
partR
elations
!=
null
)
{
for
(
TaskSampleRelation
sampleRelation
:
partRelations
)
{
sampleRelation
.
setTaskId
(
task
.
getId
());
}
...
...
@@ -189,29 +189,35 @@ public class TaskServiceImpl extends ServiceImpl<TaskMapper, Task> implements Ta
taskService
.
updateById
(
task
);
// 构建并保存该任务所关联的审核组信息
List
<
TaskUserRelation
>
list
=
taskUserRelationService
.
selectQTeamMembers
(
request
.
getId
());
taskUserRelationService
.
removeBatchByIds
(
list
);
for
(
TaskUserRelation
auditor
:
auditors
)
{
auditor
.
setTaskId
(
task
.
getId
());
}
taskUserRelationService
.
updateBatchById
(
auditors
);
taskUserRelationService
.
saveBatch
(
auditors
);
// 保存关联的整车样品信息
List
<
TaskSampleRelation
>
relationList
=
taskSampleRelationService
.
selectByTaskId
(
request
.
getId
(),
TaskSampleRelation
.
COMPLETE_VEHICLE_SAMPLE
);
taskSampleRelationService
.
removeBatchByIds
(
relationList
);
List
<
TaskSampleRelation
>
relations
=
request
.
getSample
();
if
(
relations
.
size
()
!=
0
&&
relations
!=
null
)
{
for
(
TaskSampleRelation
sampleRelation
:
relations
)
{
sampleRelation
.
setTaskId
(
task
.
getId
());
}
taskSampleRelationService
.
updateBatchById
(
relations
);
taskSampleRelationService
.
saveBatch
(
relations
);
}
// 保存关联的零部件样品信息
List
<
TaskSampleRelation
>
partRelationList
=
taskSampleRelationService
.
selectByTaskId
(
request
.
getId
(),
TaskSampleRelation
.
PART_VEHICLE_SAMPLE
);
taskSampleRelationService
.
removeBatchByIds
(
partRelationList
);
List
<
TaskSampleRelation
>
partRelations
=
request
.
getPartSample
();
if
(
relations
.
size
()
!=
0
&&
r
elations
!=
null
)
{
for
(
TaskSampleRelation
s
ampleRelation
:
partRelations
)
{
s
ampleRelation
.
setTaskId
(
task
.
getId
());
if
(
partRelations
.
size
()
!=
0
&&
partR
elations
!=
null
)
{
for
(
TaskSampleRelation
partS
ampleRelation
:
partRelations
)
{
partS
ampleRelation
.
setTaskId
(
task
.
getId
());
}
taskSampleRelationService
.
updateBatchById
(
partRelations
);
taskSampleRelationService
.
saveBatch
(
partRelations
);
}
}
...
...
@@ -270,6 +276,12 @@ public class TaskServiceImpl extends ServiceImpl<TaskMapper, Task> implements Ta
return
response
;
}
@Override
public
List
<
Task
>
findUserFinish
(
TaskFindFinishRequest
request
,
Long
userId
)
{
return
taskMapper
.
findUserFinish
(
request
,
userId
);
}
public
Long
saveSystemReview
(
TaskCreateRequest
request
,
SysUser
initiator
,
Standard
standard
,
TaskUserRelation
leader
)
{
// 构建并保存任务信息
...
...
This diff is collapsed.
Click to expand it.
quality-review/src/main/java/com/ruoyi/web/TaskController.java
View file @
41bf6e19
...
...
@@ -90,7 +90,7 @@ public class TaskController extends BaseController {
return
getDataTable
(
taskService
.
findPending
(
request
));
}
@ApiOperation
(
"查询
完成的
任务"
)
@ApiOperation
(
"查询
已归档
任务"
)
@Trace
@Tags
({
@Tag
(
key
=
"param"
,
value
=
"arg[0]"
),
@Tag
(
key
=
"result"
,
value
=
"returnedObj"
)})
@RequestMapping
(
method
=
RequestMethod
.
POST
,
value
=
"/findFinish"
)
...
...
@@ -99,6 +99,15 @@ public class TaskController extends BaseController {
return
getDataTable
(
taskService
.
findFinish
(
request
));
}
@ApiOperation
(
"查询已办任务"
)
@Trace
@Tags
({
@Tag
(
key
=
"param"
,
value
=
"arg[0]"
),
@Tag
(
key
=
"result"
,
value
=
"returnedObj"
)})
@RequestMapping
(
method
=
RequestMethod
.
POST
,
value
=
"/findUserFinish"
)
public
TableDataInfo
<
Task
>
findUserFinish
(
@Validated
@RequestBody
TaskFindFinishRequest
request
)
{
startPage
(
request
);
return
getDataTable
(
taskService
.
findUserFinish
(
request
,
getUserId
()));
}
@ApiOperation
(
"编辑任务"
)
@Trace
@Tags
({
@Tag
(
key
=
"param"
,
value
=
"arg[0]"
),
@Tag
(
key
=
"result"
,
value
=
"returnedObj"
)})
...
...
This diff is collapsed.
Click to expand it.
quality-review/src/main/java/com/ruoyi/web/request/TaskEditRequest.java
View file @
41bf6e19
package
com
.
ruoyi
.
web
.
request
;
import
com.baomidou.mybatisplus.annotation.IdType
;
import
com.baomidou.mybatisplus.annotation.TableId
;
import
com.fasterxml.jackson.annotation.JsonFormat
;
import
com.ruoyi.domain.TaskSampleRelation
;
import
com.ruoyi.domain.TaskUserRelation
;
import
io.swagger.annotations.ApiModel
;
...
...
@@ -13,6 +16,10 @@ import java.util.List;
@Data
public
class
TaskEditRequest
{
@ApiModelProperty
(
"主键"
)
@JsonFormat
(
shape
=
JsonFormat
.
Shape
.
STRING
)
private
Long
id
;
@ApiModelProperty
(
"小组成员"
)
private
List
<
TaskUserRelation
>
auditors
;
...
...
This diff is collapsed.
Click to expand it.
quality-review/src/main/java/com/ruoyi/web/response/TaskFindResponse.java
View file @
41bf6e19
...
...
@@ -23,6 +23,10 @@ public class TaskFindResponse {
@JsonFormat
(
shape
=
JsonFormat
.
Shape
.
STRING
)
private
Long
carReviewTaskId
;
@ApiModelProperty
(
"标准名称(检验依据)"
)
private
String
name
;
@ApiModelProperty
(
"任务编号"
)
private
String
taskNo
;
...
...
This diff is collapsed.
Click to expand it.
quality-review/src/main/resources/mapper/TaskMapper.xml
View file @
41bf6e19
...
...
@@ -40,6 +40,7 @@
<id
property=
"id"
column=
"id"
jdbcType=
"BIGINT"
/>
<result
property=
"systemReviewTaskId"
column=
"system_review_task_id"
jdbcType=
"BIGINT"
/>
<result
property=
"carReviewTaskId"
column=
"car_review_task_id"
jdbcType=
"BIGINT"
/>
<result
property=
"name"
column=
"name"
jdbcType=
"VARCHAR"
/>
<result
property=
"taskNo"
column=
"task_no"
jdbcType=
"VARCHAR"
/>
<result
property=
"taskName"
column=
"task_name"
jdbcType=
"VARCHAR"
/>
<result
property=
"productModel"
column=
"product_model"
jdbcType=
"VARCHAR"
/>
...
...
@@ -81,7 +82,7 @@
</select>
<select
id=
"findPending"
parameterType=
"com.ruoyi.web.request.TaskFindPendingRequest"
resultMap=
"ResponseMap"
>
SELECT t.id, t.system_review_task_id, t.car_review_task_id,
t.task_no,t.task_name,t.task_status,
t.task_no,t.task_name,t.task_status,
t.run_status,t.name,
t.leader_id,t.leader,
t.task_begin_time,
t.product_model,
...
...
@@ -110,10 +111,10 @@
and t.product_model = #{productModel}
</if>
<if
test=
"inspectionItem != null and inspectionItem != ''"
>
AND
(
(
inspectionItem
= 'sraif' AND t.system_review_task_id IS NOT NULL)
AND(
(
#{inspectionItem}
= 'sraif' AND t.system_review_task_id IS NOT NULL)
OR
(
inspectionItem
= 'grfis' AND t.car_review_task_id IS NOT NULL)
(
#{inspectionItem}
= 'grfis' AND t.car_review_task_id IS NOT NULL)
)
</if>
</where>
...
...
@@ -121,7 +122,7 @@
</select>
<select
id=
"findFinish"
parameterType=
"com.ruoyi.web.request.TaskFindFinishRequest"
resultType=
"com.ruoyi.domain.Task"
>
SELECT t.id, t.system_review_task_id, t.car_review_task_id,
t.task_no,t.task_name,t.task_status,
t.task_no,t.task_name,t.task_status,
t.name,
t.product_model,
t.leader_id,t.leader,
t.task_begin_time,t.task_end_time
...
...
@@ -142,9 +143,9 @@
</if>
<if
test=
"inspectionItem != null and inspectionItem != ''"
>
AND (
(
inspectionItem
= 'sraif' AND t.system_review_task_id IS NOT NULL)
(
#{inspectionItem}
= 'sraif' AND t.system_review_task_id IS NOT NULL)
OR
(
inspectionItem
= 'grfis' AND t.car_review_task_id IS NOT NULL)
(
#{inspectionItem}
= 'grfis' AND t.car_review_task_id IS NOT NULL)
)
</if>
</where>
...
...
@@ -161,7 +162,7 @@
</select>
<select
id=
"findByUserId"
resultMap=
"ResponseMap"
>
SELECT t.id, t.system_review_task_id, t.car_review_task_id,
t.task_no,t.task_name,t.task_status,
t.task_no,t.task_name,t.task_status,
t.name,
t.product_model,
t.leader_id,t.leader,
t.task_begin_time,
...
...
@@ -192,9 +193,9 @@
</if>
<if
test=
"request.inspectionItem != null and request.inspectionItem != ''"
>
AND (
(
request.inspectionItem
= 'sraif' AND t.system_review_task_id IS NOT NULL)
(
#{request.inspectionItem}
= 'sraif' AND t.system_review_task_id IS NOT NULL)
OR
(
request.inspectionItem
= 'grfis' AND t.car_review_task_id IS NOT NULL)
(
#{request.inspectionItem}
= 'grfis' AND t.car_review_task_id IS NOT NULL)
)
</if>
<if
test=
"request.taskStatus != null and request.taskStatus != ''"
>
...
...
@@ -203,6 +204,39 @@
</where>
order by t.create_time desc
</select>
<select
id=
"findUserFinish"
parameterType=
"com.ruoyi.web.request.TaskFindFinishRequest"
resultType=
"com.ruoyi.domain.Task"
>
SELECT t.id, t.system_review_task_id, t.car_review_task_id,
t.task_no,t.task_name,t.task_status,t.name,
t.product_model,
t.leader_id,t.leader,
t.task_begin_time,t.task_end_time
FROM t_task t
<where>
t.id IN (
SELECT task_id FROM t_task_user_relation WHERE user_id = #{userId}
)
and t.task_status = 'FINISH'
<if
test=
"request.standardId != null and request.standardId != ''"
>
and t.standard_id = #{standardId}
</if>
<if
test=
"request.taskNo != null and request.taskNo != ''"
>
and t.task_no = #{taskNo}
</if>
<if
test=
"request.taskName != null and request.taskName != ''"
>
and t.task_name like concat('%',#{taskName},'%')
</if>
<if
test=
"request.productModel != null and request.productModel != ''"
>
and t.product_model = #{productModel}
</if>
<if
test=
"request.inspectionItem != null and request.inspectionItem != ''"
>
AND (
(#{request.inspectionItem} = 'sraif' AND t.system_review_task_id IS NOT NULL)
OR
(#{request.inspectionItem} = 'grfis' AND t.car_review_task_id IS NOT NULL)
)
</if>
</where>
</select>
</mapper>
This diff is collapsed.
Click to expand it.
quality-review/src/main/resources/mapper/TaskUserRelationMapper.xml
View file @
41bf6e19
...
...
@@ -9,10 +9,11 @@
<result
property=
"userId"
column=
"user_id"
jdbcType=
"BIGINT"
/>
<result
property=
"isLeader"
column=
"is_leader"
jdbcType=
"TINYINT"
/>
<result
property=
"name"
column=
"name"
jdbcType=
"VARCHAR"
/>
<result
property=
"deptName"
column=
"dept_name"
jdbcType=
"VARCHAR"
/>
</resultMap>
<sql
id=
"Base_Column_List"
>
select task_id,user_id,is_leader,name from t_task_user_relation
select task_id,user_id,is_leader,name
,dept_name
from t_task_user_relation
</sql>
<select
id=
"selectQTeamMembers"
parameterType=
"Long"
resultMap=
"BaseResultMap"
>
...
...
This diff is collapsed.
Click to expand it.
ruoyi-admin/src/main/resources/application-prod-druid.yml
View file @
41bf6e19
...
...
@@ -6,9 +6,9 @@ spring:
druid
:
# 主库数据源
master
:
url
:
jdbc:mysql://
10.12.48.76:22030
/vehicle-quality-review?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
username
:
root
password
:
1qaz@WSX
url
:
jdbc:mysql://
${MYSQL_IP}:${MYSQL_PORT}
/vehicle-quality-review?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
username
:
${MYSQL_USERNAME}
password
:
${MYSQL_PASSWORD}
# 从库数据源
slave
:
# 从数据源开关/默认关闭
...
...
@@ -47,8 +47,8 @@ spring:
allow
:
url-pattern
:
/druid/*
# 控制台管理用户名和密码
login-username
:
ruoyi
login-password
:
1qaz@WSX
login-username
:
${CONSOLE_LOGIN_USERNAME}
login-password
:
${CONSOLE_LOGIN_PASSWORD}
filter
:
stat
:
enabled
:
true
...
...
This diff is collapsed.
Click to expand it.
ruoyi-admin/src/main/resources/application-prod.yml
View file @
41bf6e19
...
...
@@ -9,7 +9,7 @@ ruoyi:
# 实例演示开关
demoEnabled
:
true
# 文件路径 示例( Windows配置D:/ruoyi/uploadPath,Linux配置 /home/ruoyi/uploadPath)
profile
:
/data/
docker_volume/2024/secureTest/application
/upload
profile
:
/data//upload
# 获取ip地址开关
addressEnabled
:
false
# 验证码类型 math 数字计算 char 字符验证
...
...
@@ -68,13 +68,13 @@ spring:
# redis 配置
redis
:
# 地址
host
:
10.12.48.77
host
:
${REDIS_IP}
# 端口,默认为6379
port
:
22031
port
:
${REDIS_PORT}
# 数据库索引
database
:
0
# 密码
password
:
1qaz@WSX
password
:
${REDIS_PWD}
# 连接超时时间
timeout
:
10s
lettuce
:
...
...
@@ -93,7 +93,7 @@ token:
# 令牌自定义标识
header
:
Authorization
# 令牌密钥
secret
:
abcdefghijklmnopqrstuvwxyz
secret
:
${TOKEN_SECRET}
# 令牌有效期(默认30分钟)
expireTime
:
30
...
...
@@ -144,7 +144,7 @@ xss:
urlPatterns
:
/system/*,/monitor/*,/tool/*
minio
:
url
:
http://10.12.48.79:22038
accessKey
:
lB7WhZYiQwLzhHPutRGn
secretKey
:
7XMWpLm6p4d20OFe9uXKifEyhF3cp4sTCowI2fhJ
url
:
${MINIO_URL}
accessKey
:
${MINIO_ACCESSKEY}
secretKey
:
${MINIO_SECRETKEY}
bucketName
:
vehicle-quality-review-oss
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment