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
import Txform from '~/components/business/commonModel/txform';
import Txflog from '~/components/business/commonModel/txflog';
import Txpaym from '~/components/business/commonModel/txpaym';
export default class Dbwtxf {
constructor() {
this.data = {
//查询条件
//开始日期
begdat: '',
//结束日期
enddat: '',
//业务状态
bsnsts: '',
//国际收支申报号
itnlincmpaydclrtnno: '',
//无国际收支申报号付汇
payflg: '',
//金融机构标识码
decnum: '',
//付汇币种
cur: '',
//trn表的objtyp
objtyp: '',
//trn表的objinr
objinr: '',
//收款人国别
countcode: '',
//统一社会信用代码
idcode: '',
//组织机构代码
juscod: '',
//汇款人名称
nam1: '',
//付汇金额
amt: '',
//页面展示字段
//序号
no: '',
//国结业务状态
gjsta: '',
//国结业务所属机构
branchinr: '',
//国结业务编号
ownref: '',
// Txfsellst 表字段
//Internal Unique ID
inr: '',
//受理银行机构代码
acptinstcd: '',
//付汇业务上链状态
bizstate: '',
bizstatelabel: '',
//机构名称或个人姓名
pymtbnknm: '',
//纳税人识别号
taxpyidnfno: '',
//付汇业务状态
paymentstate: '',
paymentstatelabel: '',
//备案表编号
rcrdno: '',
//付汇业务编号
bsnsrlno: '',
//操作时间
updatetime: '',
//查询流水号
msgid: '',
//每页条数
num1: '',
//当前页
pgnum: '',
//总页数
talpgnum: '',
//总条数
talnum: '',
pageSize: PageSize,
pageNum: 1,
total: 0,
reglst: [],
txfmod: {
txform: new Txform().data,
txflog: new Txflog().data,
txpaym: new Txpaym().data,
reglst: [],
oldreglst: [],
txfflg: "", //税务备案表核验
dataverfcd: "", //验证码
txfrst: "", //备案表一腧性匹配结果
explan: "", //说明
hyflg: "", //核验标志
acpflg: "", //业务受理标志
tmpacpflg: "", //䶧时业务受理标志
tmpbsnsrlno: "", //䶧时付汇业务编号
ywbh: "", //业务编号
uptrninr: "", //TRNINR
addflg: "", //ADDFLG
juscode: "", //JUSCODE
avlamt: "", //备案表剩余可用金额USD
relref: "", //业务编号
relamt: "", //USD业务金额
txfpdfl1blk: "", //XMLPanel txfpdfl1的内置block
buildParams: {},
}
}
}
}