Check.js 2.24 KB
Newer Older
1 2 3 4 5 6 7
import Utils from "~/utils"

/**
* Gitcrq Check规则
*/
let checkObj = {
    "liaall.misamt"                      :null,
panziyi committed
8 9 10 11 12 13
    "liaall.limmod.limpts.oth.pts.extkey"                      :null,
    "gcdgrp.prb.adrelc"                      :null,
    "liaall.limmod.ownref"                      :null,
    "gcdgrp.blk.addamtinf"                      :null,
    "liaall.limmod.ecifno"                      :null,
    "gcdgrp.oth.namelc"                      :null,
14
    "gcdgrp.rec.newexpdat"                      :null,
panziyi committed
15
    "gcdgrp.int.pts.nam"                      :null,
16
    "gcdgrp.rec.docprbrol"                      :null,
panziyi committed
17 18
    "gcdgrp.awi.pts.extkey"                      :null,
    "gcdgrp.rec.payrol"                      :null,
19 20 21 22
    "gcdgrp.oth.adrelc"                      :null,
    "gcdgrp.rec.clmdat"                      :null,
    "liaall.limmod.limpts.oth.pts.nam"                      :null,
    "setmod.dspflg"                      :null,
panziyi committed
23 24
    "gcdgrp.prb.pts.extkey"                      :null,
    "gcdgrp.rec.ownref"                      :null,
25 26 27 28 29
    "gcdgrp.prb.namelc"                      :null,
    "gcdgrp.prb.pts.adrblk"                      :null,
    "liaall.limmod.limpts.wrk.pts.nam"                      :null,
    "liaall.limmod.limpts.wrk.pts.extkey"                      :null,
    "gcdgrp.apl.pts.nam"                      :null,
panziyi committed
30
    "payday"                      :null,
31 32 33
    "mtabut.coninf.conexedat"                      :null,
    "outlen.acttyp"                      :null,
    "liaall.limmod.limpts.nonrevflg1"                      :null,
panziyi committed
34
    "gcdgrp.blk.presentdet"                      :null,
35 36
    "outlen.szflg"                      :null,
    "setmod.docamt"                      :null,
panziyi committed
37
    "gcdgrp.oth.pts.extkey"                      :null,
38
    "gcdgrp.cbs.max2.amt"                      :null,
panziyi committed
39 40
    "gcdgrp.int.pts.extkey"                      :null,
    "gcdgrp.awi.pts.nam"                      :null,
41
    "gcdgrp.oth.pts.adrblk"                      :null,
panziyi committed
42
    "clmtxts20"                      :null,
43 44 45 46 47 48 49 50 51 52
    "gcdgrp.cbs.max.amt"                      :null,
}

for (const key in checkObj) {
    if (Object.hasOwnProperty.call(checkObj, key)) {
        checkObj[key] = checkObj[key] ? checkObj[key] : Utils.reflectCheck(key)
    }
}
export default checkObj