check.js 915 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
import XxtfeeCheck from '~/components/business/xxtfee/model/check.js';

export default {
  data() {
    return {
      rules: {
        ...new XxtfeeCheck(this).check,
        "ledgrp.rec.ownref":null,
        "bedgrp.rec.ownref":null,
        "bedgrp.cbs.max.cur":null,
        "bedgrp.cbs.max.amt":null,
        "bedgrp.cbs.opn1.cur":null,
        "bedgrp.cbs.opn1.amt":null,
        "bedgrp.rec.rcvdat":null,
        "bedgrp.rec.predat":null,
        "bedgrp.rec.matdat":null,
        "bedgrp.rec.orddat":null,
        "bedgrp.rec.docflg":null,
        "bedgrp.rec.docsta":null,
        "ledgrp.cbs.opn1.cur":null,
        "ledgrp.cbs.opn1.amt":null,
        "bedgrp.rec.nam":null,
        "bedgrp.apl.pts.ref":null,
        "bedgrp.apl.pts.nam":null,
        "bedgrp.ben.pts.ref":null,
        "bedgrp.ben.pts.nam":null,
        "bedgrp.iss.pts.ref":null,
        "bedgrp.iss.pts.nam":null,
      }
    }
  }
}