Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-boot-biz
Project
Project
Details
Activity
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
项目统一框架
amos-boot-biz
Commits
095b2ace
Commit
095b2ace
authored
Aug 16, 2024
by
邢磊
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*)增加标题
parent
9819f9a2
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
14 additions
and
2 deletions
+14
-2
AlertCalledServiceImpl.java
...ule/elevator/biz/service/impl/AlertCalledServiceImpl.java
+1
-0
emergencyInformation.json
...333-biz/src/main/resources/json/emergencyInformation.json
+1
-1
JgUseRegistrationManageServiceImpl.java
.../biz/service/impl/JgUseRegistrationManageServiceImpl.java
+1
-0
JyjcInspectionApplicationServiceImpl.java
...iz/service/impl/JyjcInspectionApplicationServiceImpl.java
+1
-0
DPSubController.java
...boot/module/statistcs/biz/controller/DPSubController.java
+3
-0
DPSubServiceImpl.java
...t/module/statistcs/biz/service/impl/DPSubServiceImpl.java
+7
-1
No files found.
amos-boot-system-tzs/amos-boot-module-96333/amos-boot-module-96333-biz/src/main/java/com/yeejoin/amos/boot/module/elevator/biz/service/impl/AlertCalledServiceImpl.java
View file @
095b2ace
...
...
@@ -1284,6 +1284,7 @@ public class AlertCalledServiceImpl extends BaseService<AlertCalledDto,AlertCall
datas
.
put
(
"datas"
,
records
);
datas
.
put
(
"title"
,
"处置记录"
);
datas
.
put
(
"renderType"
,
"timeline"
);
keyinfoData
.
put
(
"title"
,
objectMap
.
get
(
"useUnitName"
));
keyinfoData
.
put
(
"keyParams"
,
jsonData
);
keyinfoData
.
put
(
"infoRecords"
,
datas
);
keyinfoData
.
put
(
"qrcode"
,
qrcode
);
...
...
amos-boot-system-tzs/amos-boot-module-96333/amos-boot-module-96333-biz/src/main/resources/json/emergencyInformation.json
View file @
095b2ace
...
...
@@ -36,7 +36,7 @@
},
{
"key"
:
"useUnitName"
,
"label"
:
"
单位名称
"
,
"label"
:
"
使用单位
"
,
"type"
:
"text"
},
{
...
...
amos-boot-system-tzs/amos-boot-module-jg/amos-boot-module-jg-biz/src/main/java/com/yeejoin/amos/boot/module/jg/biz/service/impl/JgUseRegistrationManageServiceImpl.java
View file @
095b2ace
...
...
@@ -648,6 +648,7 @@ public class JgUseRegistrationManageServiceImpl extends BaseService<JgUseRegistr
map
.
put
(
"datas"
,
collect
);
map
.
put
(
"title"
,
"使用登记证流水"
);
map
.
put
(
"renderType"
,
"timeline"
);
result
.
put
(
"title"
,
objectMap
.
get
(
"useUnitName"
));
result
.
put
(
"keyParams"
,
jsonData
);
result
.
put
(
"infoRecords"
,
map
);
return
result
;
...
...
amos-boot-system-tzs/amos-boot-module-jyjc/amos-boot-module-jyjc-biz/src/main/java/com/yeejoin/amos/boot/module/jyjc/biz/service/impl/JyjcInspectionApplicationServiceImpl.java
View file @
095b2ace
...
...
@@ -630,6 +630,7 @@ public class JyjcInspectionApplicationServiceImpl extends BaseService<JyjcInspec
datas
.
put
(
"datas"
,
records
);
datas
.
put
(
"title"
,
"审批进度"
);
datas
.
put
(
"renderType"
,
"timeline"
);
resultMap
.
put
(
"title"
,
map
.
get
(
"applicationUnitName"
));
resultMap
.
put
(
"infoRecords"
,
datas
);
resultMap
.
put
(
"keyParams"
,
jsonData
);
return
resultMap
;
...
...
amos-boot-system-tzs/amos-boot-module-statistics/amos-boot-module-statistics-biz/src/main/java/com/yeejoin/amos/boot/module/statistcs/biz/controller/DPSubController.java
View file @
095b2ace
...
...
@@ -39,6 +39,9 @@ public class DPSubController {
public
ResponseModel
<
JSONObject
>
commonQuery
(
@PathVariable
String
template
,
@RequestBody
Map
<
String
,
Object
>
param
)
{
if
(
template
.
equals
(
"company"
))
{
// 企业
Assert
.
notNull
(
param
.
get
(
"useUnitCode"
),
"企业统一信用代码不能为空"
);
if
(
ValidationUtil
.
isEmpty
(
param
.
get
(
"useUnit"
))){
param
.
put
(
"useUnit"
,
param
.
get
(
"unitName"
));
}
}
else
if
(
template
.
equals
(
"reportEqu"
))
{
// 监督检验
Assert
.
notNull
(
param
.
get
(
"sequenceNbr"
),
"sequenceNbr不能为空"
);
}
else
if
(
template
.
equals
(
"equip"
))
{
//设备
...
...
amos-boot-system-tzs/amos-boot-module-statistics/amos-boot-module-statistics-biz/src/main/java/com/yeejoin/amos/boot/module/statistcs/biz/service/impl/DPSubServiceImpl.java
View file @
095b2ace
...
...
@@ -511,7 +511,13 @@ public class DPSubServiceImpl {
}
String
problemTime
=
result
.
getString
(
"problemTime"
);
String
problemStatus
=
result
.
getString
(
"problemStatus"
);
if
(
ValidationUtil
.
isEmpty
(
problemTime
)){
try
{
problemTime
=
DateUtil
.
formatDate
(
new
Date
(),
DateUtil
.
Y_M_D_HMS
);
}
catch
(
Exception
e
)
{
e
.
printStackTrace
();
}
}
String
color
=
null
;
if
(!
ValidationUtil
.
isEmpty
(
problemTime
))
{
try
{
...
...
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