index.js 1.52 KB
Newer Older
WF1020 committed
1 2
import Pts from '~/components/business/commonModel/Pts';
import Pub from '~/components/business/commonModel/index.js';
WF1020 committed
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 34 35 36 37
export default class Gitcan {
  constructor() {
    this.data = {
      gidgrp: {
        blk: {
          chaded: '',
          amtspc: '',
          accspc: '',
        },
        acb: {
          pts: new Pts().data,
        },
        apl: {
          pts: new Pts().data,
        },
        ben: {
          pts: new Pts().data,
        },
        ctr: {
          pts: new Pts().data,
        },
        iss: {
          pts: new Pts().data,
        },
        rec: {
          expdat: '',
          purpos: '',
          liadat: '',
          ownref: '',
          exptyp: '',
          purcan: '',
          nam: '',
          gartyp: '',
          purposin: '',
          reddat: '',
38
          redamt: '0',
WF1020 committed
39 40
          outcur: '',
          redcur: '',
41 42
          outamt: '0',
          branchinr: '',
WF1020 committed
43 44 45 46
        },
        cbs: {
          opn1: {
            cur: '',
47
            amt: '0',
WF1020 committed
48 49 50
          },
          max: {
            cur: '',
51
            amt: '0',
WF1020 committed
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
          },
        },
      },
      autflg: '',
      gitp0: {
        gitp0s20: '',
        acbp: {
          ptsget: {
            sdamod: {
              seainf: '',
            },
          },
        },
      },
      newref: '',
      setmod: new Pub().data.Setmod,
      mtabut: new Pub().data.Mtabut,
      trnmod: new Pub().data.Trnmod,
      liaall: new Pub().data.Liaall,
      liaccv: new Pub().data.Liaccv,
      docpan: new Pub().data.Docpan,
    };
  }
}