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
import Utils from "~/utils"
/**
* Letdrv Check规则
*/
let checkObj = {
"liaall.misamt": null,
"liaall.limmod.limpts.oth.pts.extkey": null,
"liaall.limmod.ownref": null,
"bedgrp.apl.pts.nam": null,
"bedgrp.oth.namelc": null,
"liaall.limmod.ecifno": null,
"bedgrp.prb.pts.nam": null,
"bedgrp.rec.invtyp": null,
"bedgrp.oth.adrelc": null,
"bedgrp.prb.namelc": null,
"bedgrp.blk.comcon": null,
"liaall.limmod.limpts.oth.pts.nam": null,
"bedgrp.blk.setinsbe": null,
"setmod.dspflg": null,
"bedgrp.rec.matdat": null,
"bedgrp.blk.docdis": null,
"bedgrp.srm.djuref": null,
"bedgrp.srm.djutyp": null,
"bedgrp.prb.adrelc": null,
"liaall.limmod.limpts.wrk.pts.nam": null,
"liaall.limmod.limpts.wrk.pts.extkey": null,
"bedgrp.blk.intdis": null,
"bedgrp.prb.pts.extkey": null,
"bedgrp.rec.doctypcod": null,
"mtabut.coninf.conexedat": null,
"bedgrp.rec.docprbrol": null,
"bedgrp.oth.pts.adrblk": null,
"liaall.limmod.limpts.nonrevflg1": null,
"bedgrp.prb.pts.adrblk": null,
"bedgrp.rec.rcvdat": null,
"bedgrp.oth.pts.extkey": null,
"setmod.docamt": null,
"bedgrp.srm.djudat": null,
"bedgrp.srm.djuusr": null,
"bedgrp.prb.pts.ref": null,
"bedgrp.cbs.max.amt": null,
"bedgrp.rec.orddat": null,
"bedgrp.iss.pts.nam": null,
}
for (const key in checkObj) {
if (Object.hasOwnProperty.call(checkObj, key)) {
checkObj[key] = checkObj[key] ? checkObj[key] : Utils.reflectCheck(key)
}
}
export default checkObj