Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
swifteditor
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
daixuan
swifteditor
Commits
50bc45a1
Commit
50bc45a1
authored
Oct 24, 2021
by
jianglong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复Mt760缺少22K,22Y,31S场bug
parent
2f88e1c7
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
225 additions
and
1 deletions
+225
-1
T22K.js
src/swift/Tags/T22K.js
+101
-0
T22Y.js
src/swift/Tags/T22Y.js
+57
-0
T31S.js
src/swift/Tags/T31S.js
+60
-0
index.js
src/swift/Tags/index.js
+7
-1
No files found.
src/swift/Tags/T22K.js
0 → 100644
View file @
50bc45a1
import
React
,{
Component
}
from
'react'
import
{
Form
,
Input
,
DatePicker
,
Row
,
Col
,
Button
,
Icon
,
Select
}
from
'antd'
;
import
{
InputSize
,
Currency
,
FormatAmount
,
mt300_24D
,
mt320_24D
}
from
"./Utils"
const
FormItem
=
Form
.
Item
;
const
Option
=
Select
.
Option
const
typ
=
[
{
code
:
"APAY"
,
name
:
"Advance payment "
},
{
code
:
"BILL"
,
name
:
"Bill of lading "
},
{
code
:
"CUST"
,
name
:
"Customs "
},
{
code
:
"DPAY"
,
name
:
"Direct pay "
},
{
code
:
"INSU"
,
name
:
"Insurance "
},
{
code
:
"JUDI"
,
name
:
"Judicial "
},
{
code
:
"LEAS"
,
name
:
"Lease "
},
{
code
:
"OTHR"
,
name
:
"Any other local undertaking type which must be specified in narrative "
},
{
code
:
"PAYM"
,
name
:
"Payment "
},
{
code
:
"PERF"
,
name
:
"Performance "
},
{
code
:
"RETN"
,
name
:
"Retention "
},
{
code
:
"SHIP"
,
name
:
"Shipping "
},
{
code
:
"TEND"
,
name
:
"Tender or bid "
},
{
code
:
"WARR"
,
name
:
"Warranty/maintenance "
},
]
export
default
class
T22K
extends
Component
{
name
=
'22K'
desp
=
"Type of Undertaking"
pattern
=
"4!c[/35x]"
tno
=
-
1
keys
=
[
1
,
2
]
onChange
=
(
index
,
value
)
=>
{
let
obj
=
{};
if
(
!
value
)
value
=
""
let
objtemp
=
this
.
props
.
value
objtemp
=
objtemp
&&
objtemp
.
length
?
objtemp
[
0
]
:
{}
objtemp
[
"s"
+
index
]
=
value
;
this
.
keys
.
forEach
(
i
=>
{
obj
[
's'
+
i
]
=
objtemp
[
's'
+
i
]
});
let
mval
=
`
${
obj
.
s1
}
`
if
(
obj
.
s2
)
mval
=
mval
+
'/'
+
obj
.
s2
this
.
props
.
onValue
([
obj
,
mval
])
}
render
()
{
let
value
=
this
.
props
.
value
let
mval
=
value
&&
value
.
length
?
value
[
1
]
:
''
let
errmsg
=
value
&&
value
.
length
==
3
?
value
[
2
]:{}
value
=
value
&&
value
.
length
?
value
[
0
]
:
{}
return
(
<
Row
>
<
Col
style
=
{{
"minWidth"
:
'150px'
}}
span
=
{
12
}
>
<
FormItem
label
=
"Code"
required
=
{
this
.
props
.
status
==
'M'
||
mval
?
'required'
:
null
}
help
=
{
errmsg
.
s1
}
validateStatus
=
{
errmsg
.
s1
?
'error'
:
null
}
>
<
Select
allowClear
=
{
true
}
value
=
{
value
.
s1
}
placeholder
=
"Code"
style
=
{{
width
:
"100%"
}}
onChange
=
{
val
=>
this
.
onChange
(
1
,
val
)}
>
{
typ
.
map
(
item
=>
<
Option
key
=
{
item
.
code
.
trim
()}
value
=
{
item
.
code
.
trim
()}
>
{
item
.
code
.
trim
()
+
'-'
+
item
.
name
.
trim
()}
<
/Option>
)
}
<
/Select
>
<
/FormItem
>
<
/Col
>
<
Col
style
=
{{
"minWidth"
:
'350px'
}}
span
=
{
3
}
>
<
FormItem
label
=
"Narrative"
required
=
{
this
.
props
.
status
==
'M'
||
mval
?
'required'
:
null
}
help
=
{
errmsg
.
s2
}
validateStatus
=
{
errmsg
.
s2
?
'error'
:
null
}
>
<
Input
addonBefore
=
"/"
value
=
{
value
.
s2
}
onChange
=
{
e
=>
this
.
onChange
(
2
,
e
.
target
.
value
)}
maxLength
=
{
35
}
style
=
{{
imeMode
:
'disabled'
}}
placeholder
=
"Narrative"
/>
<
/FormItem
>
<
/Col
>
<
/Row>
)
}
}
\ No newline at end of file
src/swift/Tags/T22Y.js
0 → 100644
View file @
50bc45a1
import
React
,{
Component
}
from
'react'
import
{
Form
,
Input
,
DatePicker
,
Row
,
Col
,
Button
,
Icon
,
Select
}
from
'antd'
;
import
{
InputSize
,
Currency
,
FormatAmount
}
from
"./Utils"
const
FormItem
=
Form
.
Item
;
const
Option
=
Select
.
Option
export
default
class
T22Y
extends
Component
{
name
=
'22Y'
desp
=
"Standard Wording Required"
pattern
=
""
tno
=
-
1
onChange
=
(
val
)
=>
{
this
.
props
.
onValue
([{
s1
:
val
},
val
])
}
render
()
{
let
value
=
this
.
props
.
value
let
mval
=
value
&&
value
.
length
?
value
[
1
]
:
''
let
errmsg
=
value
&&
value
.
length
==
3
?
value
[
2
]:{}
value
=
value
&&
value
.
length
?
value
[
0
]
:
{}
return
(
<
Row
>
<
Col
span
=
{
10
}
>
<
FormItem
help
=
{
errmsg
.
s1
}
validateStatus
=
{
errmsg
.
s1
?
'error'
:
null
}
>
<
Select
size
=
{
InputSize
}
placeholder
=
{
this
.
props
.
desp
}
showSearch
allowClear
=
{
true
}
optionFilterProp
=
"children"
notFoundContent
=
"Wrong Code"
style
=
{{
width
:
"100%"
}}
value
=
{
value
.
s1
}
onChange
=
{
val
=>
this
.
onChange
(
val
)}
>
{
<
Option
key
=
{
"STND"
}
value
=
{
"STND"
}
>
{
"STND-Standard wording of issuer required"
}
<
/Option
>
}
<
/Select
>
<
/FormItem
>
<
/Col
>
<
/Row>
)
}
}
\ No newline at end of file
src/swift/Tags/T31S.js
0 → 100644
View file @
50bc45a1
import
React
,{
Component
}
from
'react'
import
{
Form
,
Input
,
DatePicker
,
Row
,
Col
,
Button
,
Icon
,
Select
}
from
'antd'
;
import
{
InputSize
,
Currency
,
FormatAmount
}
from
"./Utils"
const
FormItem
=
Form
.
Item
;
const
Option
=
Select
.
Option
export
default
class
T31S
extends
Component
{
name
=
'31S'
desp
=
"Date"
pattern
=
""
tno
=
-
1
keys
=
[
1
]
onChange
=
(
index
,
value
)
=>
{
let
obj
=
{};
if
(
!
value
)
value
=
""
let
objtemp
=
this
.
props
.
value
objtemp
=
objtemp
&&
objtemp
.
length
?
objtemp
[
0
]
:
{}
objtemp
[
"s"
+
index
]
=
value
;
this
.
keys
.
forEach
(
i
=>
{
obj
[
's'
+
i
]
=
objtemp
[
's'
+
i
]
});
let
mval
=
`
${
obj
.
s1
}
`
.
replace
(
'/'
,
''
)
this
.
props
.
onValue
([
obj
,
mval
])
}
render
()
{
let
value
=
this
.
props
.
value
let
mval
=
value
&&
value
.
length
?
value
[
1
]
:
''
let
errmsg
=
value
&&
value
.
length
==
3
?
value
[
2
]:{}
value
=
value
&&
value
.
length
?
value
[
0
]
:
{}
return
(
<
Row
>
<
Col
style
=
{{
"minWidth"
:
'100px'
}}
span
=
{
5
}
>
<
FormItem
validateStatus
=
{
errmsg
.
s1
?
'error'
:
null
}
help
=
{
errmsg
.
s1
}
>
<
DatePicker
size
=
{
InputSize
}
defaultValue
=
""
format
=
"yyMMdd"
value
=
{
value
.
s1
}
onChange
=
{(
date
,
dateString
)
=>
this
.
onChange
(
1
,
dateString
)}
/
>
<
/FormItem
>
<
/Col
>
<
/Row>
)
}
}
\ No newline at end of file
src/swift/Tags/index.js
View file @
50bc45a1
...
...
@@ -337,7 +337,9 @@ import T97E from './T97E'
import
T70C
from
'./T70C'
import
T16R
from
'./T16R'
import
T16S
from
'./T16S'
import
T22K
from
'./T22K'
import
T22Y
from
'./T22Y'
import
T31S
from
'./T31S'
...
...
@@ -686,6 +688,9 @@ export default function(tag,props,onValue){
case
"T70C"
:
return
<
T70C
{...
props
}
onValue
=
{
onValue
}
/>
;
case
"T16S"
:
return
<
T16S
{...
props
}
onValue
=
{
onValue
}
/>
;
case
"T16R"
:
return
<
T16R
{...
props
}
onValue
=
{
onValue
}
/>
;
case
"T22K"
:
return
<
T22K
{...
props
}
onValue
=
{
onValue
}
/>
;
case
"T22Y"
:
return
<
T22Y
{...
props
}
onValue
=
{
onValue
}
/>
;
case
"T31S"
:
return
<
T31S
{...
props
}
onValue
=
{
onValue
}
/>
;
}
}
\ No newline at end of file
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