index.js 2.81 KB
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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
import Pts from "../../../../components/business/commonModel/Pts";
import Pub from "../../../../components/business/commonModel/index.js";
import Lidgrp from "../../../../components/business/commonModel/lidgrp";
import Brdgrp from "../../../../components/business/commonModel/brdgrp";
import Brtp from "../../../../components/business/commonModel/brtp";

export default class Brtudp {
  constructor() {
    this.data = {
      brdgrp: new Brdgrp().data,
      oldbrdgrp: new Brdgrp().data,
      brtp: new Brtp().data,
      swiadd: {
        trnchato: "",
        newnomtop: "0",
        purpos: "",
        amedat: "",
        addamtcov: "",
        newnomton: "0",
        prepers18: "",
        amenbr: "",
        nartxt: "",
        addamt: "",
        amecur: "",
        newshpdat: "",
        newamt: "",
        newexpdat: "",
        trnfeetxt: "",
        ameamt: "",
        newcur: "",
        prepertxts18: "",
        nomspc: "",
        reqcan: "",
        addamtflg: "",
        opn2amt: "",
        payeecountcode: "",
      },
      aamset: {
        utlamt: "",
        utlamt2: "",
      },
      cfabrt: {
        recgrp: {
          bas: {
            actiontype: "",
            creditortype: "",
            contractamount: "",
            creditornamen: "",
            creditorcode: "",
            maturity: "",
            remark: "",
            actiondesc: "",
            relation: "",
            opercode: "",
            contractcurr: "",
            appname: "",
            creditorname: "",
            debtorcode: "",
            exdebtcode: "",
            billsn: "",
            spapfeboindex: "",
            appcode: "",
            valuedate: "",
            crehqcode: "",
            credittype: "",
            debtype: "",
          },
        },
        ownextkey: "",
        recp: {
          pubp: {
            creditcodwarn: "",
            acp: "",
          },
          dclp: {
            actiontype: "",
            changeno: "",
            buscode: "",
            fairvalue: "",
            exdebtcode: "",
            chcurrency: "",
            remark: "",
            changtype: "",
            chamount: "",
            chdate: "",
            actiondesc: "",
            acp: "",
          },
        },
        cfatyp: "",
        cfabrttxt: "",
        cfaflg: "",
        basflg: "",
        dclflg: "",
      },
      lidgrp: new Lidgrp().data,
      sftmt: "",
      tag72add: "",
      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,
      limmod: new Pub().data.Limmod,
      rmbbop: new Pub().data.Rmbbop,
      entmod: new Pub().data.Entmod,
      cfabop: new Pub().data.Cfabop,
      trndia: new Pub().data.Trndia,
    };
  }
}