Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
H
hp-smart
Overview
Overview
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
platform
hp-smart
Commits
4d05f5fd
Commit
4d05f5fd
authored
Jul 09, 2024
by
wuwenlong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
产品模版bugfix
parent
134e5ec2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
5 deletions
+22
-5
ServiceHPPZ015A.java
...java/com/baosight/hpjx/hp/pz/service/ServiceHPPZ015A.java
+5
-5
HPPZTools.java
src/main/java/com/baosight/hpjx/hp/pz/tools/HPPZTools.java
+17
-0
No files found.
src/main/java/com/baosight/hpjx/hp/pz/service/ServiceHPPZ015A.java
View file @
4d05f5fd
...
...
@@ -50,11 +50,11 @@ public class ServiceHPPZ015A extends ServiceBase {
CommonMethod
.
initBlock
(
inInfo
,
Arrays
.
asList
(
DdynamicEnum
.
INVENT_NAME_BLOCK_ID
,
DdynamicEnum
.
CODESET_CODE_BLOCK_ID
),
map
,
false
);
Map
queryMap
=
EiInfoUtils
.
getFirstRow
(
inInfo
);
String
id
=
MapUtils
.
getString
(
queryMap
,
"projId"
);
HPSC001
hpsc001
=
HPSCTools
.
HpSc001
.
getId
(
id
);
HPPZ015A
hppz015A
=
new
HPPZ015A
();
hppz015A
.
setProjCode
(
hpsc001
.
getProjCode
());
//
Map queryMap = EiInfoUtils.getFirstRow(inInfo);
//
String id = MapUtils.getString(queryMap, "projId");
// HPPZ015 hppz015 = HPPZTools.HpPz015
.getId(id);
//
HPPZ015A hppz015A = new HPPZ015A();
// hppz015A.setProjCode(hppz015
.getProjCode());
inInfo
.
addBlock
(
EiConstant
.
resultBlock
).
addBlockMeta
(
new
HPPZ015A
().
eiMetadata
);
}
catch
(
Exception
e
)
{
LogUtils
.
setDetailMsg
(
inInfo
,
e
,
"初始化失败"
);
...
...
src/main/java/com/baosight/hpjx/hp/pz/tools/HPPZTools.java
View file @
4d05f5fd
...
...
@@ -699,6 +699,23 @@ public class HPPZTools {
AssertUtils
.
isEmpty
(
results
,
String
.
format
(
"部件编码[%s]信息不存在"
,
prdtCode
));
return
results
.
get
(
0
);
}
/**
* 查询
*
* @param id
* @return
*/
public
static
HPPZ015
getId
(
String
id
)
{
AssertUtils
.
isEmpty
(
id
,
"项目编码不能为空"
);
String
companyCode
=
UserSessionUtils
.
getCompanyCode
();
Map
queryMap
=
new
HashMap
();
queryMap
.
put
(
"id"
,
id
);
queryMap
.
put
(
"companyCode"
,
companyCode
);
List
<
HPPZ015
>
results
=
DaoBase
.
getInstance
().
query
(
HPPZ015
.
QUERY
,
queryMap
);
AssertUtils
.
isNull
(
results
.
get
(
0
).
getProjCode
(),
String
.
format
(
"项目名[%s]信息不存在"
,
id
));
return
results
.
get
(
0
);
}
}
/**
...
...
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