Check.js 3.11 KB
Newer Older
jxl committed
1 2 3 4 5 6 7 8 9
import Utils from "~/utils"

/**
* Botset Check规则
*/
let checkObj = {
    "liaall.misamt"                      :null,
    "bodgrp.rec.matpertyp"                      :null,
    "botp.recget.sdamod.dadsnd"                      :null,
jxl committed
10 11
    "bodgrp.dre.adrelc"                      :null,
    "cnybop.outflg"                      :null,
jxl committed
12
    "bodgrp.dre.pts.nam"                      :null,
jxl committed
13
    "liaall.limmod.limpts.oth.pts.nam"                      :null,
jxl committed
14
    "setmod.dspflg"                      :null,
jxl committed
15
    "bodgrp.col.pts.adrblk"                      :null,
jxl committed
16
    "bodgrp.blk.dftins"                      :null,
jxl committed
17 18
    "liaall.limmod.limpts.wrk.pts.nam"                      :null,
    "cnybop.cnyflg"                      :null,
jxl committed
19 20
    "bodgrp.blk.delins"                      :null,
    "bodgrp.rec.focflg"                      :null,
jxl committed
21 22 23 24 25 26 27
    "bodgrp.drr.adrelc"                      :null,
    "bodgrp.dre.namelc"                      :null,
    "liaall.limmod.wrkp.ptsget.sdamod.dadsnd"                      :null,
    "lendoc.account"                      :null,
    "bodgrp.dre.pts.adrblk"                      :null,
    "bodgrp.drr.pts.extkey"                      :null,
    "liaall.limmod.limpts.oth.pts.extkey"                      :null,
jxl committed
28
    "bodgrp.rec.matperbeg"                      :null,
jxl committed
29
    "liaall.limmod.ownref"                      :null,
jxl committed
30
    "bodgrp.blk.proins"                      :null,
jxl committed
31 32 33 34 35 36 37 38 39
    "liaall.limmod.ecifno"                      :null,
    "bodgrp.drr.pts.adrblk"                      :null,
    "bopmod.szflg"                      :null,
    "liaall.limmod.othp.ptsget.sdamod.dadsnd"                      :null,
    "cnybop.traflg"                      :null,
    "botp.colp.ptsget.sdamod.dadsnd"                      :null,
    "bodgrp.col.adrelc"                      :null,
    "botp.drrp.ptsget.sdamod.dadsnd"                      :null,
    "bodgrp.col.pts.extkey"                      :null,
jxl committed
40 41 42
    "liaall.tenstm"                      :null,
    "setmod.redamt"                      :null,
    "bodgrp.drr.pts.nam"                      :null,
jxl committed
43 44
    "liaall.limmod.limpts.wrk.pts.extkey"                      :null,
    "bopmod.basflg"                      :null,
jxl committed
45
    "mtabut.coninf.conexedat"                      :null,
jxl committed
46 47 48 49
    "bodgrp.col.namelc"                      :null,
    "liaall.limmod.limpts.nonrevflg1"                      :null,
    "cnybop.libflg"                      :null,
    "botp.drep.ptsget.sdamod.dadsnd"                      :null,
jxl committed
50
    "bodgrp.blk.colins"                      :null,
jxl committed
51
    "bopmod.ownextkey"                      :null,
jxl committed
52
    "setmod.docamt"                      :null,
jxl committed
53
    "bodgrp.drr.namelc"                      :null,
jxl committed
54
    "bodgrp.col.pts.nam"                      :null,
jxl committed
55
    "bopmod.acttyp"                      :null,
jxl committed
56
    "bodgrp.blk.othins"                      :null,
jxl committed
57
    "bodgrp.dre.pts.extkey"                      :null,
jxl committed
58
    "mtabut.clsflg"                      :null,
jxl committed
59
    "cnybop.vouflg"                      :null,
jxl committed
60 61 62 63 64 65 66 67 68
}

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