check.js 946 Bytes
Newer Older
fukai 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
import XxtfeeCheck from '~/components/business/xxtfee/model/check.js';

export default {
  data() {
    return {
      rules: {
        ...new XxtfeeCheck(this).check,
        "didgrp.rec.ownref":null,
        "didgrp.cbs.opn1.cur":null,
        "didgrp.cbs.opn1.amt":null,
        "bddgrp.rec.ownref":null,
        "bddgrp.cbs.max.cur":null,
        "bddgrp.cbs.max.amt":null,
        "bddgrp.cbs.opn1.cur":null,
        "bddgrp.cbs.opn1.amt":null,
        "bddgrp.rec.rcvdat":null,
        "bddgrp.rec.advdat":null,
        "bddgrp.rec.matdat":null,
        "bddgrp.rec.docflg":null,
        "bddgrp.rec.docsta":null,
        "didgrp.rec.nam":null,
        "didgrp.rec.expdat":null,
        "bddgrp.rec.nam":null,
        "bddgrp.apl.pts.ref":null,
        "bddgrp.apl.pts.nam":null,
        "bddgrp.ben.pts.ref":null,
        "bddgrp.ben.pts.nam":null,
        "bddgrp.prb.pts.ref":null,
        "bddgrp.prb.pts.nam":null,
      }
    }
  }
}