index.js 4.4 KB
import Pts from "../Pts.js";
export default class Lmdgrp {
  constructor() {
    this.data = {
      lmdgrp:{
        rec:{
          ownref:"",			//  Reference		.lmdgrp.rec.ownref
          grcdat:"",			//  Grace period  dates		.lmdgrp.rec.grcdat
          discut1:"",			//  Primary discount days		.lmdgrp.rec.discut1
          disrat1:"",			//  the first Discount rate		.lmdgrp.rec.disrat1
          discut2:"",			//  Second discount days		.lmdgrp.rec.discut2
          disrat2:"",			//  the  Second Discount rate		.lmdgrp.rec.disrat2
          paytyp:"",			//  Pay type		.lmdgrp.rec.paytyp
          nam:"",			//  Externally Displayed Name to Identify the Contract		.lmdgrp.rec.nam
          preadvdt:"",			//  Date Pre-advised		.lmdgrp.rec.preadvdt
          bustyp:"",			//  Service Required		.lmdgrp.rec.bustyp
          paydat:"",			//  Net Payment Term		.lmdgrp.rec.paydat
          reqnum:"",			//  Request Number		.lmdgrp.rec.reqnum
          buynum:"",			//  %		.lmdgrp.rec.buynum
          cur:"",			//  the max discount currency		.lmdgrp.rec.cur
          dismaxrat:"",			//  the max discount rate		.lmdgrp.rec.dismaxrat
          amt:"",			//  Amount		.lmdgrp.rec.amt
          connam:"",			//  Contact Name		.lmdgrp.rec.connam
          salcur:"",			//  Exp. Total seller		.lmdgrp.rec.salcur
          salamt:"",			//  Exp. Total seller		.lmdgrp.rec.salamt
          crtcur:"",			//  exp. other turnover		.lmdgrp.rec.crtcur
          crtamt:"",			//  exp.open account turn-		.lmdgrp.rec.crtamt
          turcur:"",			//  exp.open account turn-		.lmdgrp.rec.turcur
          turamt:"",			//  exp. other turnover		.lmdgrp.rec.turamt
          slrcut:"",			//  Exp.number of buyers		.lmdgrp.rec.slrcut
          invcut:"",			//  Exp. number of invoice		.lmdgrp.rec.invcut
          crecut:"",			//  Exp. number of credit		.lmdgrp.rec.crecut
          ditflg:"",			//  If Allow Direct contact Buyer		.lmdgrp.rec.ditflg
          ageprf:"",			//  Agents profile		.lmdgrp.rec.ageprf
          slrnum:"",			//  Seller's Number		.lmdgrp.rec.slrnum
          cltact:"",			//  Client  Account		.lmdgrp.rec.cltact
          msgf01:"",			//  Seller Msg Function		.lmdgrp.rec.msgf01
          selregnum:"",			//  Seller Company Registe Number for Seller		.lmdgrp.rec.selregnum
          selrespon:"",			//  ResponsibleAgency For Seller		.lmdgrp.rec.selrespon
          buyregnum:"",			//  Buyer Company Registe Number for Buyer		.lmdgrp.rec.buyregnum
          buyrespon:"",			//  ResponsibleAgency For Buyer		.lmdgrp.rec.buyrespon
          actnbr:"",			//  Account Number		.lmdgrp.rec.actnbr
          bnknam:"",			//  Name of bank		.lmdgrp.rec.bnknam
          brhnam:"",			//  Name of branch		.lmdgrp.rec.brhnam
          othifc:"",			//  other factors		.lmdgrp.rec.othifc
          msgf02:"",			//  Message Functionfor 02		.lmdgrp.rec.msgf02
        },
        slr:{
          pts:new Pts().data,
          dbfadrblkcn:"",			//  Chinese address		.lmdgrp.slr.dbfadrblkcn
        },
        imf:{
          pts:new Pts().data,
          dbfadrblkcn:"",			//  Chinese address		.lmdgrp.imf.dbfadrblkcn
        },
        buy:{
          pts:new Pts().data,
          dbfadrblkcn:"",			//  Chinese address		.lmdgrp.buy.dbfadrblkcn
        },
        cbs:{
          nom1:{
            cur:"",			//  Nominal Amount		.lmdgrp.cbs.nom1.cur
            amt:"",			//  Nominal Amount		.lmdgrp.cbs.nom1.amt
          },
          max:{
            cur:"",			//  Maximum Amount		.lmdgrp.cbs.max.cur
            amt:"",			//  Maximum Amount		.lmdgrp.cbs.max.amt
          },
          opn1:{
            cur:"",			//  Open Amount		.lmdgrp.cbs.opn1.cur
            amt:"",			//  Open Amount		.lmdgrp.cbs.opn1.amt
          },
        },
        exf:{
          pts:new Pts().data,
          dbfadrblkcn:"",			//  Chinese address		.lmdgrp.exf.dbfadrblkcn
        },
        blk:{
          recinf:"",			//  recourse  information		.lmdgrp.blk.recinf
          spcinf:"",			//  Special services		.lmdgrp.blk.spcinf
          slrmsg:"",			//  Seller's Msg		.lmdgrp.blk.slrmsg
          slrsta:"",			//  The Seller's Financial Situation		.lmdgrp.blk.slrsta
          norter:"",			//  Normal terms of delivery		.lmdgrp.blk.norter
          lcrgod:"",			//  Description of Goods		.lmdgrp.blk.lcrgod
          buymsg:"",			//  Buyer's Message		.lmdgrp.blk.buymsg
        },
        eag:{
          pts:new Pts().data,
          dbfadrblkcn:"",			//  Chinese address		.lmdgrp.eag.dbfadrblkcn
        },
      },
    };
  }
}