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
import Api from "~/service/Api"
import Pts from "../Common/Pts"
import Pub from "../Public"
export default class Bftcan {
constructor() {
this.data = {
strinf: "", // 描述 .strinf
bfdgrp: {
rec: {
ownref: "", // 单据编号 .bfdgrp.rec.ownref
nam: "", // Externally Displayed Name to Identify the Contract .bfdgrp.rec.nam
doctypcod: "", // 单据类型 .bfdgrp.rec.doctypcod
matdat: "", // Maturity Date .bfdgrp.rec.matdat
orddat: "", // 到期日 .bfdgrp.rec.orddat
rcvdat: "", // 到单日期 .bfdgrp.rec.rcvdat
predat: "", // Presentation Date .bfdgrp.rec.predat
docsta: "", // 单据状态 .bfdgrp.rec.docsta
},
cbs: {
max: {
cur: "", // 单据金额 .bfdgrp.cbs.max.cur
amt: "", // 单据金额 .bfdgrp.cbs.max.amt
},
opn1: {
cur: "", // 单据余额 .bfdgrp.cbs.opn1.cur
amt: "", // Balance .bfdgrp.cbs.opn1.amt
},
opn2: {
amt: "", // Balance .bfdgrp.cbs.opn2.amt
},
},
ben: {
pts: new Pts().data,
},
iss: {
pts: new Pts().data,
},
apl: {
pts: new Pts().data,
},
},
bftp0: {
recget: {
sdamod: {
seainf: "", // .bftp0.recget.sdamod.seainf
dadsnd: "", // Drag Drop Sender .bftp0.recget.sdamod.dadsnd
},
},
dedget: {
sdamod: {
seainf: "", // .bftp0.dedget.sdamod.seainf
dadsnd: "", // Drag Drop Sender .bftp0.dedget.sdamod.dadsnd
},
},
matp: {
mattxtlab: "", // Label for MATTXT .bftp0.matp.mattxtlab
},
},
dedgrp: {
rec: {
ownref: "", // 参考号 .dedgrp.rec.ownref
kzref: "", // 信用证编号 .dedgrp.rec.kzref
},
cbs: {
opn1: {
cur: "", // Currency .dedgrp.cbs.opn1.cur
amt: "", // Balance .dedgrp.cbs.opn1.amt
},
},
},
sndmsg: "", // Send Message .sndmsg
rebkpflg: "", // Booking Procedure .rebkpflg
mtabut: {
coninf: {
oitinf: {
labinftxt: "", // Label for INFTXT .mtabut.coninf.oitinf.labinftxt
oit: {
inftxt: "", // Infotext .mtabut.coninf.oitinf.oit.inftxt
inflev: "", // Infotext Level .mtabut.coninf.oitinf.oit.inflev
},
},
oitset: {
labinftxt: "", // Label for INFTXT .mtabut.coninf.oitset.labinftxt
oit: {
inftxt: "", // Infotext .mtabut.coninf.oitset.oit.inftxt
inflev: "", // Infotext Level .mtabut.coninf.oitset.oit.inflev
},
},
conexedat: "", // 执行日期 .mtabut.coninf.conexedat
usr: {
extkey: "", // User ID .mtabut.coninf.usr.extkey
},
},
},
pageId: "", // ctx的key
setmod: new Pub().data.Setmod,
trnmod: new Pub().data.Trnmod,
liaall: new Pub().data.Liaall,
}
}
}