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

/**
* Botset Check规则
*/
let checkObj = {
    "liaall.misamt"                      :null,
    "bodgrp.rec.matpertyp"                      :null,
    "botp.recget.sdamod.dadsnd"                      :null,
    "bodgrp.dre.pts.nam"                      :null,
    "setmod.dspflg"                      :null,
    "bodgrp.blk.dftins"                      :null,
    "bodgrp.blk.delins"                      :null,
    "bodgrp.rec.focflg"                      :null,
    "bodgrp.rec.matperbeg"                      :null,
    "bodgrp.blk.proins"                      :null,
    "liaall.tenstm"                      :null,
    "setmod.redamt"                      :null,
    "bodgrp.drr.pts.nam"                      :null,
    "mtabut.coninf.conexedat"                      :null,
    "bodgrp.blk.colins"                      :null,
    "setmod.docamt"                      :null,
    "bodgrp.col.pts.nam"                      :null,
    "bodgrp.blk.othins"                      :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