index.js 2.01 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
import Pts from "../Pts.js";
export default class Fidgrp {
  constructor() {
    this.data = {
      fidgrp: {
        rec: {
          inr:"",
          // branchinr: '00000047',
          ownref: "",			//  Reference		.fidgrp.rec.ownref
          nam: "",			//  Externally Displayed Name to Identify the Contract		.fidgrp.rec.nam
          dirflg: "",			//  indirect or direct flag		.fidgrp.rec.dirflg
          paybatnum: "",			//  Payment Batch Nbr		.fidgrp.rec.paybatnum
          invbatnum: "",			//  Invoice Batch Number		.fidgrp.rec.invbatnum
          invdat: "",			//  发票转让日期		.fidgrp.rec.invdat
          pnttyp:"",
          pntinr:"",
          pntownref:"",
          trnflg:"",
          ownusr:"",
          factyp: ''
        },
        blk: {
          mesinf: "",			//  Message Text		.fidgrp.blk.mesinf
        },
        cbs: {
          max: {
            cur: "",			//  Total Amt of invoices		.fidgrp.cbs.max.cur
            amt: "",			//  Total Amt of invoices		.fidgrp.cbs.max.amt
          },
          max2: {
            cur: "",			//  Total Amt of invoices		.fidgrp.cbs.max2.cur
            amt: "",			//  Total Amt of invoices		.fidgrp.cbs.max2.amt
          },
          opn1: {
            cur: "",			//  Total Amt of invoices		.fidgrp.cbs.opn1.cur
            amt: "",			//  Total Amt of invoices		.fidgrp.cbs.opn1.amt
          },
        },
        slr: {
          pts: new Pts().data,
          dbfadrblkcn: "",			//  Chinese address		.lrdgrp.slr.dbfadrblkcn
        },
        buy: {
          pts: new Pts().data,
          dbfadrblkcn: "",			//  Chinese address		.lrdgrp.buy.dbfadrblkcn
        },
        imf: {
          pts: new Pts().data,
          dbfadrblkcn: "",			//  Chinese address		.lrdgrp.imf.dbfadrblkcn
        },
        exf: {
          pts: new Pts().data,
          dbfadrblkcn: "",			//  Chinese address		.lrdgrp.exf.dbfadrblkcn
        },
        con: {
          pts: new Pts().data,
          dbfadrblkcn: "",			//  Chinese address		.lrdgrp.exf.dbfadrblkcn
        },
      },
    }
  }
}