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
8486df18
Commit
8486df18
authored
Oct 23, 2024
by
jianglong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
优化fttfcm报文注册
parent
5050b135
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
FttfcmDocset.java
...om/brilliance/isc/funds/fttfcm/document/FttfcmDocset.java
+2
-2
FttfcmDocumentRegister.java
...isc/funds/fttfcm/register/doc/FttfcmDocumentRegister.java
+6
-0
No files found.
isc-funds-business/src/main/java/com/brilliance/isc/funds/fttfcm/document/FttfcmDocset.java
View file @
8486df18
...
@@ -19,13 +19,13 @@ public class FttfcmDocset extends AbstractTransactionDocSet<FttfcmStoreBo> {
...
@@ -19,13 +19,13 @@ public class FttfcmDocset extends AbstractTransactionDocSet<FttfcmStoreBo> {
@PostConstruct
@PostConstruct
public
void
buildMember
()
{
public
void
buildMember
()
{
buildLetterProvider
(
"fttfcm"
,
"FTT3
00
1"
);
buildLetterProvider
(
"fttfcm"
,
"FTT3
201"
,
"FTT1991"
,
"FTT299
1"
);
//扫描Cortype支持,必须要执行
//扫描Cortype支持,必须要执行
scanDocCortypSupport
();
scanDocCortypSupport
();
}
}
public
Map
<
String
,
Object
>
buildExtraMapForLetter
(
FttfcmStoreBo
trnbo
,
DoceotVo
doceotVo
){
public
Map
<
String
,
Object
>
buildExtraMapForLetter
(
FttfcmStoreBo
trnbo
,
DoceotVo
doceotVo
){
if
(
MdaUtils
.
compareTo
(
doceotVo
.
getDocnam
(),
"FTT3
0
01"
)==
0
){
if
(
MdaUtils
.
compareTo
(
doceotVo
.
getDocnam
(),
"FTT3
2
01"
)==
0
){
return
buildFtt320l1
.
build
(
trnbo
,
doceotVo
);
return
buildFtt320l1
.
build
(
trnbo
,
doceotVo
);
}
else
{
}
else
{
return
new
HashMap
<>();
return
new
HashMap
<>();
...
...
isc-funds-business/src/main/java/com/brilliance/isc/funds/fttfcm/register/doc/FttfcmDocumentRegister.java
View file @
8486df18
...
@@ -63,12 +63,15 @@ public class FttfcmDocumentRegister implements IDocumentRegister {
...
@@ -63,12 +63,15 @@ public class FttfcmDocumentRegister implements IDocumentRegister {
{
{
case
"320"
:
case
"320"
:
trndocService
.
defDocEot
(
trndoc
,
"TRN"
,
"320"
,
"\\FTT320L1"
,
"LET"
,
0
,
troPtspta
.
getPts
().
getPtainr
(),
"\\FTDGRP\\REC"
,
"MT 320"
,
"TRO"
,
""
);
trndocService
.
defDocEot
(
trndoc
,
"TRN"
,
"320"
,
"\\FTT320L1"
,
"LET"
,
0
,
troPtspta
.
getPts
().
getPtainr
(),
"\\FTDGRP\\REC"
,
"MT 320"
,
"TRO"
,
""
);
trndocService
.
setDocSendFormat
(
trndoc
,
"TRN320"
,
"SWT"
,
"MT320"
);
break
;
break
;
case
"199"
:
case
"199"
:
trndocService
.
defDocEot
(
trndoc
,
"TRN"
,
"199"
,
"\\FTT199L1"
,
"LET"
,
0
,
troPtspta
.
getPts
().
getPtainr
(),
"\\FTDGRP\\REC"
,
"MT 199"
,
"TRO"
,
""
);
trndocService
.
defDocEot
(
trndoc
,
"TRN"
,
"199"
,
"\\FTT199L1"
,
"LET"
,
0
,
troPtspta
.
getPts
().
getPtainr
(),
"\\FTDGRP\\REC"
,
"MT 199"
,
"TRO"
,
""
);
trndocService
.
setDocSendFormat
(
trndoc
,
"TRN199"
,
"SWT"
,
"MT199"
);
break
;
break
;
case
"299"
:
case
"299"
:
trndocService
.
defDocEot
(
trndoc
,
"TRN"
,
"299"
,
"\\FTT299L1"
,
"LET"
,
0
,
troPtspta
.
getPts
().
getPtainr
(),
"\\FTDGRP\\REC"
,
"MT 299"
,
"TRO"
,
""
);
trndocService
.
defDocEot
(
trndoc
,
"TRN"
,
"299"
,
"\\FTT299L1"
,
"LET"
,
0
,
troPtspta
.
getPts
().
getPtainr
(),
"\\FTDGRP\\REC"
,
"MT 299"
,
"TRO"
,
""
);
trndocService
.
setDocSendFormat
(
trndoc
,
"TRN299"
,
"SWT"
,
"MT299"
);
break
;
break
;
}
}
}
}
...
@@ -78,12 +81,15 @@ public class FttfcmDocumentRegister implements IDocumentRegister {
...
@@ -78,12 +81,15 @@ public class FttfcmDocumentRegister implements IDocumentRegister {
{
{
case
"320"
:
case
"320"
:
trndocService
.
defDocEot
(
trndoc
,
"TRN"
,
"320"
,
"\\FTT320L1"
,
"LET"
,
0
,
triPtspta
.
getPts
().
getPtainr
(),
"\\FTDGRP\\REC"
,
"MT 320"
,
"TRI"
,
""
);
trndocService
.
defDocEot
(
trndoc
,
"TRN"
,
"320"
,
"\\FTT320L1"
,
"LET"
,
0
,
triPtspta
.
getPts
().
getPtainr
(),
"\\FTDGRP\\REC"
,
"MT 320"
,
"TRI"
,
""
);
trndocService
.
setDocSendFormat
(
trndoc
,
"TRN320"
,
"SWT"
,
"MT320"
);
break
;
break
;
case
"199"
:
case
"199"
:
trndocService
.
defDocEot
(
trndoc
,
"TRN"
,
"199"
,
"\\FTT199L1"
,
"LET"
,
0
,
triPtspta
.
getPts
().
getPtainr
(),
"\\FTDGRP\\REC"
,
"MT 199"
,
"TRI"
,
""
);
trndocService
.
defDocEot
(
trndoc
,
"TRN"
,
"199"
,
"\\FTT199L1"
,
"LET"
,
0
,
triPtspta
.
getPts
().
getPtainr
(),
"\\FTDGRP\\REC"
,
"MT 199"
,
"TRI"
,
""
);
trndocService
.
setDocSendFormat
(
trndoc
,
"TRN199"
,
"SWT"
,
"MT199"
);
break
;
break
;
case
"299"
:
case
"299"
:
trndocService
.
defDocEot
(
trndoc
,
"TRN"
,
"299"
,
"\\FTT299L1"
,
"LET"
,
0
,
triPtspta
.
getPts
().
getPtainr
(),
"\\FTDGRP\\REC"
,
"MT 299"
,
"TRI"
,
""
);
trndocService
.
defDocEot
(
trndoc
,
"TRN"
,
"299"
,
"\\FTT299L1"
,
"LET"
,
0
,
triPtspta
.
getPts
().
getPtainr
(),
"\\FTDGRP\\REC"
,
"MT 299"
,
"TRI"
,
""
);
trndocService
.
setDocSendFormat
(
trndoc
,
"TRN299"
,
"SWT"
,
"MT299"
);
break
;
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