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

/**
* Brtdcr Check规则
*/
let checkObj = {
    "liaall.misamt"                      :null,
    "liaall.limmod.limpts.oth.pts.extkey"                      :null,
    "liaall.limmod.ownref"                      :null,
10
    "brdgrp.acb.namelc"                      :null,
liuxin committed
11 12 13
    "liaall.limmod.ecifno"                      :null,
    "brdgrp.prb.adrelc"                      :null,
    "brdgrp.blk.docdis"                      :null,
14
    "brdgrp.acb.adrelc"                      :null,
liuxin committed
15 16 17 18 19 20 21
    "brtp.oth.pts.extkey"                      :null,
    "brdgrp.prb.pts.adrblk"                      :null,
    "brdgrp.prb.namelc"                      :null,
    "liaall.limmod.limpts.oth.pts.nam"                      :null,
    "brdgrp.blk.disdoc"                      :null,
    "setmod.dspflg"                      :null,
    "brtp.oth.pts.adrblk"                      :null,
22
    "brdgrp.acb.pts.extkey"                      :null,
liuxin committed
23 24 25 26
    "brdgrp.rec.orddat"                      :null,
    "brdgrp.prb.pts.nam"                      :null,
    "brdgrp.ben.pts.nam"                      :null,
    "liaall.limmod.limpts.wrk.pts.nam"                      :null,
27
    "brdgrp.acb.pts.adrblk"                      :null,
liuxin committed
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
    "brdgrp.rec.advdocflg"                      :null,
    "advdisflg"                      :null,
    "brdgrp.prb.pts.extkey"                      :null,
    "brtp.oth.adrelc"                      :null,
    "liaall.limmod.limpts.wrk.pts.extkey"                      :null,
    "mtabut.coninf.conexedat"                      :null,
    "brdgrp.prb.pts.ref"                      :null,
    "brtp.oth.namelc"                      :null,
    "liaall.limmod.limpts.nonrevflg1"                      :null,
    "brdgrp.apl.pts.nam"                      :null,
    "setmod.docamt"                      :null,
    "mtabut.clsflg"                      :null,
}

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