Check.js 2.85 KB
Newer Older
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
import Utils from "~/utils"

/**
* Bftsnd Check规则
*/
let checkObj = {
    "liaall.misamt"                      :null,
    "bfdgrp.blk.setinsbe"                      :null,
    "bfdgrp.iss.pts.nam"                      :null,
    "bfdgrp.oth.pts.extkey"                      :null,
    "bfdgrp.doc.pts.adrblk"                      :null,
    "skhnam"                      :null,
    "bfdgrp.blk.comcon"                      :null,
    "bfdgrp.prb.adrelc"                      :null,
    "bfdgrp.prb.pts.adrblk"                      :null,
    "liaall.limmod.limpts.oth.pts.nam"                      :null,
    "setmod.dspflg"                      :null,
    "bfdgrp.rec.anodat"                      :null,
    "bftp.msgtyp"                      :null,
    "bfdgrp.blk.intdis"                      :null,
    "liaall.limmod.limpts.wrk.pts.nam"                      :null,
    "bfdgrp.oth.pts.dizhii"                      :null,
    "idcode"                      :null,
    "bfdgrp.doc.adrelc"                      :null,
    "bfdgrp.rec.disdat"                      :null,
    "bfdgrp.rec.matdat"                      :null,
    "bfdgrp.apl.pts.nam"                      :null,
    "bfdsnd.usadet"                      :null,
    "bfdgrp.rec.rcvdat"                      :null,
    "bfdgrp.prb.namelc"                      :null,
    "skhhao"                      :null,
    "bfdgrp.prb.pts.extkey"                      :null,
    "liaall.limmod.limpts.oth.pts.extkey"                      :null,
    "liaall.limmod.ownref"                      :null,
    "bftp.furide"                      :null,
    "liaall.limmod.ecifno"                      :null,
    "bfdgrp.rec.anobnkcod"                      :null,
    "bfdgrp.blk.docdis"                      :null,
    "bfdgrp.rec.invref"                      :null,
    "bfdgrp.rec.docrol"                      :null,
    "bfdgrp.prb.pts.nam"                      :null,
    "bfdgrp.rec.anodsp"                      :null,
    "bfdgrp.doc.pts.extkey"                      :null,
    "bfdgrp.oth.pts.jigomc"                      :null,
    "bfdgrp.oth.pts.bankno"                      :null,
    "liaall.limmod.limpts.wrk.pts.extkey"                      :null,
    "bfdsnd.addphr"                      :null,
    "mtabut.coninf.conexedat"                      :null,
    "skracc"                      :null,
    "bfdgrp.rec.expmno"                      :null,
    "liaall.limmod.limpts.nonrevflg1"                      :null,
    "skrnam"                      :null,
    "bfdgrp.doc.namelc"                      :null,
    "bfdgrp.rec.predat"                      :null,
    "setmod.docamt"                      :null,
    "bfdgrp.blk.benref"                      :null,
}

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