Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
I
isc-common
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
isc-v3.1-tmp
isc-common
Commits
b86a29e1
Commit
b86a29e1
authored
Oct 23, 2024
by
huangshunlin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
清算模块跳过east7759,补充setDefDsp函数(HLJ版本)
parent
c7a15bcc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
2 deletions
+17
-2
SetmodServiceImpl.java
...nce/isc/common/setmod/service/impl/SetmodServiceImpl.java
+16
-2
TrnmodServiceImpl.java
...nce/isc/common/trnmod/service/impl/TrnmodServiceImpl.java
+1
-0
No files found.
isc-common-service-setmod/src/main/java/com/brilliance/isc/common/setmod/service/impl/SetmodServiceImpl.java
View file @
b86a29e1
...
...
@@ -182,7 +182,6 @@ public class SetmodServiceImpl implements SetmodService {
private
SetstaMapper
setstaMapper
;
/**
* source:setmod.0021.script
*/
...
...
@@ -1720,6 +1719,16 @@ public class SetmodServiceImpl implements SetmodService {
// i.e. those that need a separate module and panels
// So no PAY, TRF, BAT,...
// cur, curtyp,amt,flg used in old function : DefSetDsp
if
(
StringUtils
.
isNotEmpty
(
setmodVo
.
getTrnismParstm
()))
{
String
[]
arr
=
setmodVo
.
getTrnismParstm
().
split
(
TAB
);
if
(
MdaUtils
.
compareTo
(
amt
,
0
)
>
0
&&
"D"
.
equals
(
arr
[
1
]))
{
return
arr
[
2
];
}
else
if
(
MdaUtils
.
compareTo
(
amt
,
0
)
<
0
&&
"C"
.
equals
(
arr
[
1
]))
{
return
arr
[
2
];
}
else
{
setmodVo
.
setTrnismParstm
(
NULLSTR
);
}
}
IStream
dsps
=
new
StreamImpl
();
Streams
.
streamClear
(
dsps
);
Streams
.
streamInsert
(
dsps
,
0
,
"LO"
);
...
...
@@ -2813,7 +2822,12 @@ public class SetmodServiceImpl implements SetmodService {
}
@Override
public
void
setglgAllValDat
(
SetmodVo
setmodVo
,
Date
argValdat
,
String
argFlag
){
public
void
setDefDsp
(
SetmodVo
setmodVo
,
String
rol
,
String
dcflag
,
String
dspLst
)
{
setmodVo
.
setTrnismParstm
(
rol
+
TAB
+
dcflag
+
TAB
+
dspLst
);
}
@Override
public
void
setglgAllValDat
(
SetmodVo
setmodVo
,
Date
argValdat
,
String
argFlag
)
{
setmodVo
.
getSetglg
().
setAllvaldat
(
argValdat
);
setmodVo
.
getSetglg
().
setAllvaldatflg
(
argFlag
);
}
...
...
isc-common-service-trnmod/src/main/java/com/brilliance/isc/common/trnmod/service/impl/TrnmodServiceImpl.java
View file @
b86a29e1
...
...
@@ -2984,6 +2984,7 @@ public class TrnmodServiceImpl implements TrnmodService {
case
"JSD"
:
case
"MCD"
:
case
"FXD"
:
case
"CRD"
:
break
;
case
"FTD"
:
break
;
...
...
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