index.js 957 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 34 35

export default class Ditsel{
    constructor () {
        this.data = {
          infcon: {
              seaownref: '',
              opndatfrom: new Date((new Date).getTime() - (7 * 24 * 60 * 60 * 1000)),
              opndatto: new Date(),
              aplref:'',
              benref:'',
              isClosed:'N',
          },
          bdcon:{
            bdownref:'',
            opndatfrom: new Date((new Date).getTime() - (7 * 24 * 60 * 60 * 1000)),
            opndatto: new Date(),
            docsta:'',
            seaownref: '',
            aplref:'',
            benref:'',
            isClosed:'N',
          },
          trcon:{
            trownref:'',
            opndatfrom: new Date((new Date).getTime() - (7 * 24 * 60 * 60 * 1000)),
            opndatto: new Date(),
            docsta:'',
            pntref:'',
            seaownref: '',
            searef:'',
            benref:'',
            isClosed:'N',
          }
    }
}}