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

export default {
  data() {
    return {
      rules: {
        ...new XxtfeeCheck(this).check,
        "ltdgrp.rec.ownref":null,
        "btdgrp.rec.ownref":null,
        "btdgrp.cbs.max.cur":null,
        "btdgrp.cbs.max.amt":null,
        "addamtflg":null,
        "btdgrp.cbs.opn1.cur":null,
        "btdgrp.cbs.opn1.amt":null,
        "btdgrp.rec.matdat":null,
        "btdgrp.rec.rcvdatbe2":null,
        "btdgrp.rec.rcvdatbe1":null,
        "btdgrp.rec.doctypcod":null,
        "ledgrp.rec.ownref":null,
        "btdgrp.rec.nam":null,
        "btdgrp.be1.pts.ref":null,
        "btdgrp.be1.pts.nam":null,
        "btdgrp.be2.pts.ref":null,
        "btdgrp.be2.pts.nam":null,
        "btdgrp.rec.docsta":null,
      }
    }
  }
}