Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation
This project
Loading...
Sign in
李苗
/
Vion-DevOps
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit 24057cc6
authored
Aug 21, 2024
by
HlQ
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
[add] 备件申请钉钉消息通知添加设备序列号字段
[fix] 解决设备列表查询为空的问题
1 parent
6f9b3715
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
20 additions
and
5 deletions
src/main/java/vion/controller/DeviceController.java
src/main/java/vion/service/impl/IDeviceServiceImpl.java
src/main/java/vion/service/impl/RepairRecServiceImpl.java
src/main/java/vion/service/impl/SparePartServiceImpl.java
src/main/java/vion/controller/DeviceController.java
View file @
24057cc
...
@@ -3,6 +3,7 @@ package vion.controller;
...
@@ -3,6 +3,7 @@ package vion.controller;
import
cn.dev33.satoken.annotation.SaCheckPermission
;
import
cn.dev33.satoken.annotation.SaCheckPermission
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
lombok.RequiredArgsConstructor
;
import
lombok.RequiredArgsConstructor
;
import
org.dromara.hutool.core.lang.Assert
;
import
org.springframework.web.bind.annotation.*
;
import
org.springframework.web.bind.annotation.*
;
import
vion.dto.DeviceDTO
;
import
vion.dto.DeviceDTO
;
import
vion.service.IDeviceService
;
import
vion.service.IDeviceService
;
...
@@ -23,6 +24,7 @@ public class DeviceController {
...
@@ -23,6 +24,7 @@ public class DeviceController {
@GetMapping
@GetMapping
@SaCheckPermission
(
value
=
"device:list"
,
orRole
=
"admin"
)
@SaCheckPermission
(
value
=
"device:list"
,
orRole
=
"admin"
)
public
Page
<
DeviceVO
>
list
(
DeviceDTO
dto
)
{
public
Page
<
DeviceVO
>
list
(
DeviceDTO
dto
)
{
Assert
.
notNull
(
dto
.
getStatus
(),
"status 不能为空!"
);
return
deviceService
.
list
(
dto
);
return
deviceService
.
list
(
dto
);
}
}
...
...
src/main/java/vion/service/impl/IDeviceServiceImpl.java
View file @
24057cc
...
@@ -6,6 +6,7 @@ import com.github.yulichang.wrapper.MPJLambdaWrapper;
...
@@ -6,6 +6,7 @@ import com.github.yulichang.wrapper.MPJLambdaWrapper;
import
io.github.linpeilie.Converter
;
import
io.github.linpeilie.Converter
;
import
lombok.RequiredArgsConstructor
;
import
lombok.RequiredArgsConstructor
;
import
org.dromara.hutool.core.collection.CollUtil
;
import
org.dromara.hutool.core.collection.CollUtil
;
import
org.dromara.hutool.core.text.StrUtil
;
import
org.dromara.hutool.core.util.ObjUtil
;
import
org.dromara.hutool.core.util.ObjUtil
;
import
org.springframework.stereotype.Service
;
import
org.springframework.stereotype.Service
;
import
org.springframework.transaction.annotation.Transactional
;
import
org.springframework.transaction.annotation.Transactional
;
...
@@ -37,7 +38,7 @@ public class IDeviceServiceImpl extends MPJBaseServiceImpl<DeviceMapper, Device>
...
@@ -37,7 +38,7 @@ public class IDeviceServiceImpl extends MPJBaseServiceImpl<DeviceMapper, Device>
.
selectAll
(
Device
.
class
)
.
selectAll
(
Device
.
class
)
.
selectAs
(
Contract:
:
getName
,
DeviceVO:
:
getContractName
)
.
selectAs
(
Contract:
:
getName
,
DeviceVO:
:
getContractName
)
.
leftJoin
(
Contract
.
class
,
Contract:
:
getContractNo
,
Device:
:
getContractNo
)
.
leftJoin
(
Contract
.
class
,
Contract:
:
getContractNo
,
Device:
:
getContractNo
)
.
like
(
Contract:
:
getName
,
dto
.
getContractName
())
.
like
(
StrUtil
.
isNotBlank
(
dto
.
getContractName
()),
Contract:
:
getName
,
dto
.
getContractName
())
.
orderByDesc
(
Device:
:
getRecDate
);
.
orderByDesc
(
Device:
:
getRecDate
);
return
this
.
selectJoinListPage
(
Page
.
of
(
dto
.
getPageNum
(),
dto
.
getPageSize
()),
DeviceVO
.
class
,
wrapper
);
return
this
.
selectJoinListPage
(
Page
.
of
(
dto
.
getPageNum
(),
dto
.
getPageSize
()),
DeviceVO
.
class
,
wrapper
);
}
}
...
...
src/main/java/vion/service/impl/RepairRecServiceImpl.java
View file @
24057cc
...
@@ -133,7 +133,7 @@ public class RepairRecServiceImpl extends MPJBaseServiceImpl<RepairRecMapper, Re
...
@@ -133,7 +133,7 @@ public class RepairRecServiceImpl extends MPJBaseServiceImpl<RepairRecMapper, Re
.
set
(
"userid_list"
,
userid
);
.
set
(
"userid_list"
,
userid
);
var
msg
=
JSONUtil
.
ofObj
();
var
msg
=
JSONUtil
.
ofObj
();
var
content
=
JSONUtil
.
ofObj
().
set
(
"title"
,
"
备件
已发货"
);
var
content
=
JSONUtil
.
ofObj
().
set
(
"title"
,
"
返修设备
已发货"
);
String
text
=
StrUtil
.
format
(
"""
String
text
=
StrUtil
.
format
(
"""
### 返修设备已发货
### 返修设备已发货
### 项目名称:{}
### 项目名称:{}
...
...
src/main/java/vion/service/impl/SparePartServiceImpl.java
View file @
24057cc
...
@@ -32,6 +32,7 @@ import java.io.IOException;
...
@@ -32,6 +32,7 @@ import java.io.IOException;
import
java.util.Arrays
;
import
java.util.Arrays
;
import
java.util.Date
;
import
java.util.Date
;
import
java.util.List
;
import
java.util.List
;
import
java.util.stream.Collectors
;
/**
/**
* @author HlQ
* @author HlQ
...
@@ -120,7 +121,16 @@ public class SparePartServiceImpl extends MPJBaseServiceImpl<SparePartMapper, Sp
...
@@ -120,7 +121,16 @@ public class SparePartServiceImpl extends MPJBaseServiceImpl<SparePartMapper, Sp
@Override
@Override
public
Boolean
notify
(
Long
id
,
String
userid
)
{
public
Boolean
notify
(
Long
id
,
String
userid
)
{
var
sparePart
=
this
.
getById
(
id
);
MPJLambdaWrapper
<
SparePart
>
wrapper
=
new
MPJLambdaWrapper
<
SparePart
>()
.
selectAll
(
SparePart
.
class
)
.
selectCollection
(
RRepairDevice
.
class
,
SparePartVO:
:
getRepairDeviceList
)
.
leftJoin
(
RRepairDevice
.
class
,
on
->
on
.
eq
(
RRepairDevice:
:
getRId
,
SparePart:
:
getId
).
eq
(
RRepairDevice:
:
getRType
,
1
))
.
eq
(
SparePart:
:
getId
,
id
);
var
sparePartVO
=
this
.
selectJoinOne
(
SparePartVO
.
class
,
wrapper
);
var
deviceNoStr
=
Opt
.
ofEmptyAble
(
sparePartVO
.
getRepairDeviceList
())
.
map
(
l
->
l
.
stream
().
map
(
RRepairDevice:
:
getDeviceNo
).
collect
(
Collectors
.
joining
(
","
)))
.
orElse
(
"暂无"
);
var
jsonObj
=
JSONUtil
.
ofObj
()
var
jsonObj
=
JSONUtil
.
ofObj
()
.
set
(
"agent_id"
,
2358374016L
)
.
set
(
"agent_id"
,
2358374016L
)
...
@@ -132,10 +142,12 @@ public class SparePartServiceImpl extends MPJBaseServiceImpl<SparePartMapper, Sp
...
@@ -132,10 +142,12 @@ public class SparePartServiceImpl extends MPJBaseServiceImpl<SparePartMapper, Sp
### 备件已发货
### 备件已发货
### 项目名称:{}
### 项目名称:{}
### 快递单号:{}
### 快递单号:{}
### 借出设备序列号:{}
### 发货日期:{}
### 发货日期:{}
### 发送时间:{}
### 发送时间:{}
"""
,
sparePart
.
getProjectName
(),
Opt
.
ofBlankAble
(
sparePart
.
getTrackingNumber
()).
orElse
(
"暂无"
),
"""
,
sparePartVO
.
getProjectName
(),
Opt
.
ofBlankAble
(
sparePartVO
.
getTrackingNumber
()).
orElse
(
"暂无"
),
Opt
.
ofBlankAble
(
DateUtil
.
formatDate
(
sparePart
.
getShipDate
())).
orElse
(
"暂无"
),
DateUtil
.
now
());
deviceNoStr
,
Opt
.
ofBlankAble
(
DateUtil
.
formatDate
(
sparePartVO
.
getShipDate
())).
orElse
(
"暂无"
),
DateUtil
.
now
());
content
.
set
(
"text"
,
text
);
content
.
set
(
"text"
,
text
);
msg
.
set
(
"msgtype"
,
"markdown"
).
set
(
"markdown"
,
content
);
msg
.
set
(
"msgtype"
,
"markdown"
).
set
(
"markdown"
,
content
);
...
...
Write
Preview
Markdown
is supported
Attach a file
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 post a comment