1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
import Api from "~/service/Api"
import Pts from "../Common/Pts"
import Pub from "../Public"
export default class Lttdck {
constructor() {
this.data = {
ledgrp: {
rec: {
ownref: "", // L/C Reference .ledgrp.rec.ownref
nam: "", // Name .ledgrp.rec.nam
},
},
bttp: {
ledget: {
sdamod: {
seainf: "", // .bttp.ledget.sdamod.seainf
},
},
ltdget: {
sdamod: {
seainf: "", // .bttp.ltdget.sdamod.seainf
dadsnd: "", // Drag Drop Sender .bttp.ltdget.sdamod.dadsnd
},
},
recget: {
sdamod: {
dadsnd: "", // Drag Drop Sender .bttp.recget.sdamod.dadsnd
seainf: "", // .bttp.recget.sdamod.seainf
},
},
aammod: {
addamtflg: "", // Add. Amount .bttp.aammod.addamtflg
},
prbp: {
ptsget: {
sdamod: {
seainf: "", // .bttp.prbp.ptsget.sdamod.seainf
dadsnd: "", // Drag Drop Sender .bttp.prbp.ptsget.sdamod.dadsnd
},
},
},
docgrdmbe1: {
docdsclab: "", // Label of document description .bttp.docgrdmbe1.docdsclab
docgrd: "",
},
docgrdmbe2: {
docdsclab: "", // Label of document description .bttp.docgrdmbe2.docdsclab
docgrd: "",
},
futhndflg: "", // further handling .bttp.futhndflg
},
ltdgrp: {
rec: {
inr:"",//ltdgrp.rec.inr
ownref: "", // Transfer Reference .ltdgrp.rec.ownref
nam: "", // Name .ltdgrp.rec.nam
avbby: "", // Available by .ltdgrp.rec.avbby
opndat: "", // Date Issued/Form .ltdgrp.rec.opndat
lcrtyp: "", // Date Issued/Form .ltdgrp.rec.lcrtyp
expdat: "", // Date / Place of Expiry .ltdgrp.rec.expdat
expplc: "", // Date / Place of Expiry .ltdgrp.rec.expplc
shpdat: "", // Shipment Date .ltdgrp.rec.shpdat
utlnbr: "", // Number of Utilizations .ltdgrp.rec.utlnbr
docsubflg: "", // Documents to be Substituted .ltdgrp.rec.docsubflg
},
cbs: {
nom1: {
cur: "", // L/C Amount .ltdgrp.cbs.nom1.cur
amt: "", // Balance .ltdgrp.cbs.nom1.amt
},
opn1: {
cur: "", // Open Amount .ltdgrp.cbs.opn1.cur
amt: "", // Balance .ltdgrp.cbs.opn1.amt
},
},
avbnam: "", // Available with .ltdgrp.avbnam
},
btdgrp: {
be1: {
pts: new Pts().data,
},
be2: {
pts: new Pts().data,
},
prb: {
pts: new Pts().data,
namelc: "", // 名称 .btdgrp.prb.namelc
adrelc: "", // 地址 .btdgrp.prb.adrelc
dbfadrblkcn: "", // Chinese address .btdgrp.prb.dbfadrblkcn
},
rec: {
ownref: "", // Document Set Ref. .btdgrp.rec.ownref
nam: "", // Description .btdgrp.rec.nam
doctypcod: "", // Document Type .btdgrp.rec.doctypcod
rcvdatbe2: "", // Received on (2nd Ben) .btdgrp.rec.rcvdatbe2
orddatbe2: "", // Order Date 2nd Beneficiary .btdgrp.rec.orddatbe2
matdat: "", // Maturity Date .btdgrp.rec.matdat
shpdat: "", // Date of Shipment .btdgrp.rec.shpdat
dscinsflg: "", // Enter Docs, Discrep. and Instructions .btdgrp.rec.dscinsflg
docprbrol: "", // Presented by .btdgrp.rec.docprbrol
docsta: "", // Document Set Status .btdgrp.rec.docsta
},
cbs: {
max: {
cur: "", // Document Amount .btdgrp.cbs.max.cur
amt: "", // Document Amount .btdgrp.cbs.max.amt
},
opn2: {
cur: "", // 附加金额 .btdgrp.cbs.opn2.cur
},
max2: {
amt: "", // 附加金额 .btdgrp.cbs.max2.amt
},
},
blk: {
matper: "", // Maturity Period .btdgrp.blk.matper
intdis: "", // Internal Discrepancies .btdgrp.blk.intdis
comcon: "", // Comments and Conclusions .btdgrp.blk.comcon
setinsbt: "", // Settlement Instructions transaction field .btdgrp.blk.setinsbt
docdis: "", // Discrepancies .btdgrp.blk.docdis
docdisflg: "", // discrepancies modified .btdgrp.blk.docdisflg
prsdocbe1:"", //加表格字段////path字段
prsdocbe2:"", //加表格字段////path字段
},
},
pageId: "", // ctx的key
trnmod: new Pub().data.Trnmod,
setmod: new Pub().data.Setmod,
liaall: new Pub().data.Liaall,
mtabut: new Pub().data.Mtabut,
}
}
}