check.js 12.7 KB
Newer Older
WH committed
1 2 3
import Utils from "~/utils"

/**
panziyi committed
4 5
* Bctame Check规则
*/
WH committed
6
let checkObj = {
panziyi committed
7 8 9
    "bctp.drrp.ptsget.sdamod.dadsnd"                      :null,
    "bcdgrp.dre.namelc"                      :null,
    "bctp.usr.extkey"                      :null,
WH committed
10
    "trnmod.swiadd.newamt"                      :null,
panziyi committed
11 12 13 14 15 16 17
    "bcdgrp.rmi.adrelc"                      :null,
    "bcdgrp.blk.dftins"                      :null,
    "bctp.recget.sdamod.dadsnd"                      :null,
    "bcdgrp.dre.adrelc"                      :null,
    "bcdgrp.blk.othins"                      :null,
    "bctp.drep.ptsget.sdamod.dadsnd"                      :null,
    "bcdgrp.rmi.namelc"                      :null,
WH committed
18
    "setmod.dspflg"                      :null,
panziyi committed
19
    "bctp.rmip.ptsget.sdamod.dadsnd"                      :null,
WH committed
20 21
    "bcdgrp.rec.invtyp"                      :null,
    "bcdgrp.rec.stacty"                      :null,
panziyi committed
22 23 24 25
    "bcdgrp.drr.namelc"                      :null,
    "bcdgrp.rmi.pts.extkey"                      :null,
    "bcdgrp.drr.adrelc"                      :null,
    "bcdgrp.blk.colins"                      :null,
WH committed
26
    "bcdgrp.rec.oridre"                      :null,
panziyi committed
27 28 29 30 31 32 33 34 35 36 37
    "bcdgrp.drr.pts.adrblk"                      :null,
    "mtabut.coninf.conexedat"                      :null,
    "bcdgrp.blk.chgtxt"                      :null,
    "bcdgrp.drr.pts.extkey"                      :null,
    "bcdgrp.dre.pts.adrblk"                      :null,
    "setmod.docamt"                      :null,
    "bcdgrp.rmi.pts.ref"                      :null,
    "bcdgrp.dre.pts.extkey"                      :null,
    "bcdgrp.rmi.pts.adrblk"                      :null,
    "trnmod.swiadd.newmatdat"                      :null,

WH committed
38 39 40 41
    "bctp.recget.sdamod.dadsnd":[
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
    ],
panziyi committed
42 43 44 45
    "bcdgrp.rec.ownref":[
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
    ],
WH committed
46 47 48 49
    "bctp.recget.sdamod.seainf":[
        {type: "string", required: false, message: "必输项"},
        {max: 3,message:"长度不能超过3"}
    ],
panziyi committed
50 51 52 53
    "bcdgrp.rec.nam":[
        {type: "string", required: false, message: "必输项"},
        {max: 50,message:"长度不能超过50"}
    ],
WH committed
54 55 56
    "amedat":[
        {type: "string", required: false, message: "输入正确的日期"}
    ],
panziyi committed
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
    // "amenbr":[
    //     {type: "string", required: false, message: "必输项"},
    //     {max: 2,message:"长度不能超过2"}
    // ],

    // "oldbcdgrp.cbs.max.amt":[
    //     {type: "number", required: false, message: "必输项"},
    //     {max: 18,message:"整数位不能超过14位"},
    //     {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
    // ],

    // "trnmod.swiadd.ameamt":[
    //     {type: "number", required: false, message: "必输项"},
    //     {max: 18,message:"整数位不能超过14位"},
    //     {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
    // ],
WH committed
73 74 75 76
    "trnmod.swiadd.newcur":[
        {type: "string", required: false, message: "必输项"},
        {max: 3,message:"长度不能超过3"}
    ],
panziyi committed
77 78 79 80 81 82 83 84 85 86
    // "trnmod.swiadd.newamt":[
    //     {type: "number", required: false, message: "必输项"},
    //     {max: 18,message:"整数位不能超过14位"},
    //     {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
    // ],

    // "oldbcdgrp.rec.matpercnt":[
    //     {type: "string", required: false, message: "必输项"},
    //     {max: 3,message:"长度不能超过3"}
    // ],
WH committed
87 88 89 90
    "oldbcdgrp.rec.matpertyp":[
        {type: "string", required: false, message: "必输项"},
        {max: 1,message:"长度不能超过1"}
    ],
panziyi committed
91 92 93 94 95 96 97

    // "trnmod.swiadd.newmatpercnt":[
    //     {type: "string", required: false, message: "必输项"},
    //     {max: 3,message:"长度不能超过3"}
    // ],


WH committed
98 99 100 101 102 103 104
    "oldbcdgrp.rec.matdat":[
        {type: "string", required: false, message: "输入正确的日期"}
    ],
    "trnmod.swiadd.newmatdat":[
        {type: "string", required: false, message: "输入正确的日期"}
    ],
    "trnmod.swiadd.ametxt":[
liaoxing committed
105 106
        // {type: "string", required: true, message: "必输项"},
        // {max: 35,message:"长度不能超过35"}
WH committed
107 108 109 110 111 112 113 114 115
    ],
    "bcdgrp.rec.ownref":[
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
    ],
    "bcdgrp.rec.nam":[
        {type: "string", required: false, message: "必输项"},
        {max: 40,message:"长度不能超过40"}
    ],
panziyi committed
116

WH committed
117 118 119 120 121 122 123 124 125 126 127 128
    "bctp.usr.extkey":[
        {type: "string", required: false, message: "必输项"},
        {max: 8,message:"长度不能超过8"}
    ],
    "bctp.usrget.sdamod.seainf":[
        {type: "string", required: false, message: "必输项"},
        {max: 3,message:"长度不能超过3"}
    ],
    "bcdgrp.dre.pts.ref":[
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
    ],
panziyi committed
129

WH committed
130 131 132 133 134 135 136 137 138 139 140 141
    "bctp.drep.ptsget.sdamod.dadsnd":[
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
    ],
    "bcdgrp.dre.pts.extkey":[
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
    ],
    "bctp.drep.ptsget.sdamod.seainf":[
        {type: "string", required: false, message: "必输项"},
        {max: 3,message:"长度不能超过3"}
    ],
panziyi committed
142 143 144 145 146 147 148


    // "bcdgrp.cbs.max.amt":[
    //     {type: "number", required: false, message: "必输项"},
    //     {max: 18,message:"整数位不能超过14位"},
    //     {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
    // ],
WH committed
149 150 151 152
    "bcdgrp.dre.namelc":[
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
    ],
panziyi committed
153 154 155 156 157 158

    // "bcdgrp.cbs.opn1.amt":[
    //     {type: "number", required: false, message: "必输项"},
    //     {max: 18,message:"整数位不能超过14位"},
    //     {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
    // ],
WH committed
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
    "bcdgrp.dre.pts.adrblk":[
        {type: "string", required: true, message: "必输项"},
        {max: 150,message:"长度不能超过135"}
    ],
    "bcdgrp.dre.dbfadrblkcn":[
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
    ],
    "bcdgrp.rec.rcvdat":[
        {type: "string", required: false, message: "输入正确的日期"}
    ],
    "bcdgrp.rec.predat":[
        {type: "string", required: false, message: "输入正确的日期"}
    ],
    "bcdgrp.dre.adrelc":[
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
    ],
    "bcdgrp.rec.advdat":[
        {type: "string", required: false, message: "输入正确的日期"}
    ],
panziyi committed
180

WH committed
181 182 183 184
    "bcdgrp.rmi.pts.ref":[
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
    ],
panziyi committed
185

WH committed
186 187 188 189 190 191 192 193 194 195 196 197
    "bctp.rmip.ptsget.sdamod.dadsnd":[
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
    ],
    "bcdgrp.rmi.pts.extkey":[
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
    ],
    "bctp.rmip.ptsget.sdamod.seainf":[
        {type: "string", required: false, message: "必输项"},
        {max: 3,message:"长度不能超过3"}
    ],
panziyi committed
198

WH committed
199 200 201
    "bcdgrp.rec.matdat":[
        {type: "string", required: false, message: "输入正确的日期"}
    ],
panziyi committed
202

WH committed
203 204 205 206 207 208 209 210 211 212 213 214
    "bcdgrp.rmi.namelc":[
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
    ],
    "bcdgrp.rmi.pts.adrblk":[
        {type: "string", required: true, message: "必输项"},
        {max: 135,message:"长度不能超过135"}
    ],
    "bcdgrp.rmi.dbfadrblkcn":[
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
    ],
panziyi committed
215 216 217 218 219 220
    // "bcdgrp.rec.matpercnt":[
    //     {type: "string", required: false, message: "必输项"},
    //     {max: 3,message:"长度不能超过3"}
    // ],


WH committed
221 222 223 224 225
    "bcdgrp.rmi.adrelc":[
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
    ],
    "bcdgrp.blk.bcgdet":[
liaoxing committed
226 227
        // {type: "string", required: true, message: "必输项"},
        // {max: 45,message:"长度不能超过45"}
WH committed
228 229 230 231 232
    ],
    "bcdgrp.drr.pts.ref":[
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
    ],
panziyi committed
233 234


WH committed
235 236 237 238 239 240 241 242 243 244 245 246
    "bctp.drrp.ptsget.sdamod.dadsnd":[
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
    ],
    "bcdgrp.drr.pts.extkey":[
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
    ],
    "bctp.drrp.ptsget.sdamod.seainf":[
        {type: "string", required: false, message: "必输项"},
        {max: 3,message:"长度不能超过3"}
    ],
panziyi committed
247

WH committed
248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263
    "bcdgrp.drr.namelc":[
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
    ],
    "bcdgrp.drr.pts.adrblk":[
        {type: "string", required: true, message: "必输项"},
        {max: 135,message:"长度不能超过135"}
    ],
    "bcdgrp.drr.dbfadrblkcn":[
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
    ],
    "bcdgrp.drr.adrelc":[
        {type: "string", required: true, message: "必输项"},
        {max: 35,message:"长度不能超过35"}
    ],
panziyi committed
264 265 266 267




WH committed
268 269
    "bcdgrp.blk.colins":[
        {type: "string", required: true, message: "必输项"},
liaoxing committed
270
        // {max: 65,message:"长度不能超过65"}
WH committed
271
    ],
panziyi committed
272 273


WH committed
274
    "bcdgrp.blk.chgtxt":[
liaoxing committed
275 276
        // {type: "string", required: true, message: "必输项"},
        // {max: 35,message:"长度不能超过35"}
WH committed
277 278
    ],
    "bcdgrp.blk.dftins":[
liaoxing committed
279 280
        // {type: "string", required: true, message: "必输项"},
        // {max: 65,message:"长度不能超过65"}
WH committed
281
    ],
panziyi committed
282 283 284 285 286





WH committed
287
    "bcdgrp.blk.othins":[
liaoxing committed
288 289
        // {type: "string", required: true, message: "必输项"},
        // {max: 65,message:"长度不能超过65"}
WH committed
290
    ],
panziyi committed
291 292 293



WH committed
294 295 296 297
    "setmod.ref":[
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
    ],
panziyi committed
298 299


panziyi committed
300 301 302 303 304
    // "setmod.docamt":[
    //     {type: "number", required: false, message: "必输项"},
    //     {max: 18,message:"整数位不能超过14位"},
    //     {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
    // ],
panziyi committed
305 306 307 308




WH committed
309 310 311 312
    "setmod.zmqacc":[
        {type: "string", required: false, message: "必输项"},
        {max: 20,message:"长度不能超过20"}
    ],
panziyi committed
313 314 315



panziyi committed
316 317 318 319
    // "mtabut.coninf.oitinf.oit.inftxt":[
    //     {type: "string", required: true, message: "必输项"},
    //     {max: 60,message:"长度不能超过60"}
    // ],
panziyi committed
320 321


panziyi committed
322 323 324 325
    // "mtabut.coninf.oitset.oit.inftxt":[
    //     {type: "string", required: true, message: "必输项"},
    //     {max: 60,message:"长度不能超过60"}
    // ],
panziyi committed
326

panziyi committed
327 328 329 330 331 332 333
    // "mtabut.coninf.conexedat":[
    //     {type: "string", required: false, message: "输入正确的日期"}
    // ],
    // "mtabut.coninf.usr.extkey":[
    //     {type: "string", required: false, message: "必输项"},
    //     {max: 8,message:"长度不能超过8"}
    // ],
panziyi committed
334

WH committed
335 336 337 338 339 340 341 342
    "trnmod.trndoc.advnam":[
        {type: "string", required: false, message: "必输项"},
        {max: 50,message:"长度不能超过50"}
    ],
    "trnmod.trndoc.amdapl":[
        {type: "string", required: true, message: "必输项"},
        {max: 50,message:"长度不能超过50"}
    ],
panziyi committed
343

WH committed
344 345 346 347 348 349 350 351 352 353 354 355
    "trnmod.trndoc.advdoc":[
        {type: "string", required: false, message: "必输项"},
        {max: 1,message:"长度不能超过1"}
    ],
    "trnmod.trndoc.filrecv":[
        {type: "string", required: false, message: "必输项"},
        {max: 16,message:"长度不能超过16"}
    ],
    "trnmod.trndoc.doctrestm":[
        {type: "string", required: false, message: "必输项"},
        {max: 1,message:"长度不能超过1"}
    ],
panziyi committed
356 357 358 359 360 361 362 363 364









WH committed
365 366 367 368 369 370 371 372 373
    "trnmod.trndoc.condocstm":[
        {type: "string", required: false, message: "必输项"},
        {max: 1,message:"长度不能超过1"}
    ],
    "trnmod.trndoc.rcvatt.seainf":[
        {type: "string", required: false, message: "必输项"},
        {max: 3,message:"长度不能超过3"}
    ],
}
panziyi committed
374

WH committed
375 376 377 378 379
for (const key in checkObj) {
    if (Object.hasOwnProperty.call(checkObj, key)) {
        checkObj[key] = checkObj[key] ? checkObj[key] : Utils.reflectCheck(key)
    }
}
panziyi committed
380 381
export default checkObj