index.js 3.67 KB
Newer Older
zhengxiaokui committed
1 2 3
export default class Trnmod {
    constructor() {
        this.data = {
zhengxiaokui committed
4
            swiadd: {
Eivi committed
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
                amedat: "", //  Amendment Date		.trnmod.swiadd.amedat
                amenbr: "", //  Amend. No Received		.trnmod.swiadd.amenbr
                amecur: "", //  Amended		.trnmod.swiadd.amecur
                ameamt: "", //  Amended		.trnmod.swiadd.ameamt
                newcur: "", //  New Data		.trnmod.swiadd.newcur
                newamt: "", //  New Data		.trnmod.swiadd.newamt
                newnomtop: "", //  New positive tolerance		.trnmod.swiadd.newnomtop
                newnomton: "", //  New negative tolerance		.trnmod.swiadd.newnomton
                nomspc: "", //  Amount Specification		.trnmod.swiadd.nomspc
                newexpdat: "", //  New Expiry Date		.trnmod.swiadd.newexpdat
                newshpdat: "", //  New Shipment Date		.trnmod.swiadd.newshpdat
                shpper: "", //  Shipment Period		.trnmod.swiadd.shpper
                shpfro: "", //  Dispatch from		.trnmod.swiadd.shpfro
                porloa: "", //  Air-/Port of Loading		.trnmod.swiadd.porloa
                pordis: "", //  Air-/Port of Discharge		.trnmod.swiadd.pordis
                purpos: "", //   Purpose of message           trnmod.swiadd.purpos
                shpto: "", //  Final Destination		.trnmod.swiadd.shpto
                addamtcov: "", //  Amounts Covered		.trnmod.swiadd.addamtcov
                addamt: "", //  Amounts Covered		.trnmod.swiadd.addamt
                insbnk: "", //  Instruction to P/A/N Bank amendment		.trnmod.swiadd.insbnk
                nartxt: "",
                newnomtopame: "",
                newnomtoname: "",
                prepers18: "", //New Presentation Period
                strinf: "", //  Narrative of Maturity		.trnmod.swiadd.strinf
huangxin committed
30 31 32 33 34 35 36 37 38 39 40
                newmatpercnt:"",			//  New Tenor Data		.trnmod.swiadd.newmatpercnt
				newmatpertyp:"",			//  Days/Month or Year for Maturity Period		.trnmod.swiadd.newmatpertyp
				newmatperbeg:"",			//  Start of Maturity Period		.trnmod.swiadd.newmatperbeg
				newmatdat:"",			//  New Maturity Date		.trnmod.swiadd.newmatdat
				ametxt:"",			//  Further Amendments		.trnmod.swiadd.ametxt
                shptoelc: "",			//  货物目的地/交货地(港)		.trnmod.swiadd.shptoelc
				shpfroelc: "",			//  Shipment from		.trnmod.swiadd.shpfroelc
                //nartxtflg: "",			//  Narrative modified		.trnmod.swiadd.nartxtflg
			    lcrgod: "",			//  Description of Goods amendment		.trnmod.swiadd.lcrgod
				lcrdoc: "",			//  Documents Required amendment		.trnmod.swiadd.lcrdoc
				//adlcnd: "",			//  Additional Conditions amendment		.trnmod.swiadd.adlcnd
zhengxiaokui committed
41
            },
zhengxiaokui committed
42
            trndoc: {
Eivi committed
43 44 45 46 47 48 49 50 51 52 53
                nar754: "", //  Narrative :77A:		.trnmod.trndoc.nar754
                advlabel: "", //  ADVLABEL		.trnmod.trndoc.advlabel
                amdnam: "", //  AMDNAM		.trnmod.trndoc.amdnam
                advdoc: "", //  国内证通知书		.trnmod.trndoc.advdoc
                advnam: "", //  国内证落款		.trnmod.trndoc.advnam
                amdapl: "", //  修改申请人名称		.trnmod.trndoc.amdapl
                doclbl: "", //  Lable for CONDOCSTM		.trnmod.trndoc.doclbl
                doctrestm: "", //  Document tree		.trnmod.trndoc.doctrestm
                shwinc: "", //  Show Incoming Messages		.trnmod.trndoc.shwinc
                shwout: "", //  Show Outgoing Messages		.trnmod.trndoc.shwout
                condocstm: "", //  Connected Documents		.trnmod.trndoc.condocstm
zhengxiaokui committed
54
                rcvatt: {
Eivi committed
55
                    seainf: "", //  		.trnmod.trndoc.rcvatt.seainf
zhengxiaokui committed
56
                },
Eivi committed
57
                filrecv: "", //  File Receiver		.trnmod.trndoc.filrecv
zhengxiaokui committed
58 59
                doceot: [],
            },
Eivi committed
60

zhengxiaokui committed
61 62
        }
    }
Eivi committed
63
}