Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
I
isc-funds
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-funds
Commits
4b48cf1e
Commit
4b48cf1e
authored
Oct 14, 2024
by
xiaotong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
FXTLOP逻辑调整
parent
ebe49ca4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 additions
and
87 deletions
+1
-87
FxtlopTransactionServiceImpl.java
...sc/funds/fxtlop/service/FxtlopTransactionServiceImpl.java
+0
-87
FxtlopServiceImpl.java
...ance/isc/funds/fxtlop/service/impl/FxtlopServiceImpl.java
+1
-0
No files found.
isc-funds-business/src/main/java/com/brilliance/isc/funds/fxtlop/service/FxtlopTransactionServiceImpl.java
deleted
100644 → 0
View file @
ebe49ca4
package
com
.
brilliance
.
isc
.
funds
.
fxtlop
.
service
;
import
com.brilliance.isc.common.contants.CommonContants
;
import
com.brilliance.isc.common.transaction.AbstractTransactionService
;
import
com.brilliance.isc.common.vo.BizAmdInfoVo
;
import
com.brilliance.isc.common.vo.BizInfoVo
;
import
com.brilliance.isc.funds.bo.funds.FxtlopStoreBo
;
import
com.brilliance.isc.funds.fxtlop.check.FxtlopValidator
;
import
org.springframework.stereotype.Service
;
import
javax.annotation.PostConstruct
;
import
javax.annotation.Resource
;
import
java.util.Map
;
/**
* @program: isc-funds
* @ClassName: FxtlopTransactionServiceImpl
* @description: 结售汇平盘登记 Fxtlop 业务处理
* @author: wangweidong
* @create: 2024-10-08 16:35
*/
@Service
(
"fxtlop.transaction"
)
public
class
FxtlopTransactionServiceImpl
extends
AbstractTransactionService
<
FxtlopStoreBo
>
{
@Resource
private
FxtlopValidator
fxtlopValidator
;
@PostConstruct
public
void
regisertService
()
{
serviceRegisterMaps
.
put
(
CommonContants
.
SETMOD_SERVICE
,
"Y"
);
serviceRegisterMaps
.
put
(
CommonContants
.
TRNDOC_SERVICE
,
"Y"
);
serviceRegisterMaps
.
put
(
CommonContants
.
GLEMOD_SERVICE
,
"Y"
);
serviceRegisterMaps
.
put
(
CommonContants
.
TRNDIA_SERVICE
,
"Y"
);
serviceRegisterMaps
.
put
(
CommonContants
.
TRNMOD_SERVICE
,
"Y"
);
serviceRegisterMaps
.
put
(
CommonContants
.
UMDMOD_SERVICE
,
"N"
);
serviceRegisterMaps
.
put
(
CommonContants
.
LIMMOD_SERVICE
,
"Y"
);
serviceRegisterMaps
.
put
(
CommonContants
.
BOPSET_RMB_SERVICE
,
"Y"
);
serviceRegisterMaps
.
put
(
CommonContants
.
BOPSET_SZSB_BOPREM_SERVICE
,
"Y"
);
serviceRegisterMaps
.
put
(
CommonContants
.
BOPSET_CFABOP_SERVICE
,
"Y"
);
serviceRegisterMaps
.
put
(
CommonContants
.
FANXIQIAN_SERVICE
,
"Y"
);
}
@Override
protected
void
txnSave
(
FxtlopStoreBo
transactionVo
)
{
ruleMtabutSavN500
(
transactionVo
);
}
public
void
ruleMtabutSavN500
(
FxtlopStoreBo
bo
)
{
}
@Override
protected
Map
<
String
,
String
>
txnCheck
(
FxtlopStoreBo
transactionVo
)
{
return
fxtlopValidator
.
validate
(
transactionVo
);
}
@Override
protected
BizInfoVo
buildBizInfo
(
FxtlopStoreBo
transactionVo
)
{
return
null
;
}
@Override
protected
BizAmdInfoVo
buildBizAmdInfo
(
FxtlopStoreBo
transactionVo
)
{
return
null
;
}
@Override
public
FxtlopStoreBo
init
(
FxtlopStoreBo
fxtlopStoreBo
)
{
fxtlopStoreBo
.
reset
();
return
fxtlopStoreBo
;
}
@Override
public
void
beforeSave
(
FxtlopStoreBo
transactionVo
)
{
transactionVo
.
reset
();
}
@Override
protected
void
updateBizInfoVo
(
BizInfoVo
bizInfoVo
,
FxtlopStoreBo
transactionVo
)
{
}
}
isc-funds-business/src/main/java/com/brilliance/isc/funds/fxtlop/service/impl/FxtlopServiceImpl.java
View file @
4b48cf1e
...
@@ -43,5 +43,6 @@ public class FxtlopServiceImpl implements FxtlopService {
...
@@ -43,5 +43,6 @@ public class FxtlopServiceImpl implements FxtlopService {
}
}
String
extkey
=
SettleContext
.
getUserSession
().
getUsr
().
getExtkey
();
String
extkey
=
SettleContext
.
getUserSession
().
getUsr
().
getExtkey
();
fxtlopStoreBo
.
getFxdgrp
().
getRec
().
setUsr
(
extkey
);
fxtlopStoreBo
.
getFxdgrp
().
getRec
().
setUsr
(
extkey
);
fxtlopStoreBo
.
getFxtp
().
setFrgchk
(
"X"
);
}
}
}
}
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