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

export default {
  data() {
    return {
      rules: {
        ...new XxtfeeCheck(this).check,
        "bodgrp.rec.ownref":null,
        "bodgrp.cbs.max.cur":null,
        "bodgrp.cbs.max.amt":null,
        "bodgrp.cbs.opn1.cur":null,
        "bodgrp.cbs.opn1.amt":null,
        "bodgrp.rec.doctypcod":null,
        "bodgrp.rec.docsta":null,
        "bodgrp.rec.matdat":null,
        "bodgrp.rec.matpercnt":null,
        "bodgrp.rec.matperbeg":null,
        "bodgrp.rec.rcvdat":null,
        "bodgrp.rec.nam":null,
        "bodgrp.drr.pts.ref":null,
        "bodgrp.drr.pts.nam":null,
        "bodgrp.col.pts.ref":null,
        "bodgrp.col.pts.nam":null,
        "bodgrp.dre.pts.ref":null,
        "bodgrp.dre.pts.nam":null,
        "bodgrp.rec.predat":null,
      }
    }
  }
}