index.js 2.78 KB
Newer Older
cl committed
1 2
import Api from "~/service/Api"
import Pts from "../Common/Pts"
cl committed
3
import Pub from "../Public"
nanrui committed
4 5 6
export default class Clttra {
	constructor() {
		this.data = {
7 8 9
			bptbck:{
				bptbckg:[],
			},	
cl committed
10
			liaall: new Pub().data.Liaall,
11
			trnmod: new Pub().data.Trnmod,
nanrui committed
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
			cldgrp: {
				rec: {
					ownref: "",			//  Batch No.		.cldgrp.rec.ownref
					colref: "",			//  Coll.bank ref.		.cldgrp.rec.colref
					colptynam: "",			//  Coll.bank name		.cldgrp.rec.colptynam
					credat: "",			//  Date of creation		.cldgrp.rec.credat
					count: "",			//  Item Count		.cldgrp.rec.count
					chktyp: "",			//  Type of Draft		.cldgrp.rec.chktyp
					colflg: "",			//  Payemnt Disposition		.cldgrp.rec.colflg
				},
				cbs: {
					max: {
						cur: "",			//  Draft Amount		.cldgrp.cbs.max.cur
						amt: "",			//  Draft Amount		.cldgrp.cbs.max.amt
					},
					opn1: {
						cur: "",			//  Open Amount		.cldgrp.cbs.opn1.cur
						amt: "",			//  Open Amount		.cldgrp.cbs.opn1.amt
					},
				},
			},
			cltp0: {
				recget: {
					sdamod: {
						seainf: "",			//  		.cltp0.recget.sdamod.seainf
					},
				},
			},
			// setmod: {
			// 	docamttyplab: "",			//  settled amount description as label		.setmod.docamttyplab
			// 	retmsg: "",			//  Label showing Retry overflow condition		.setmod.retmsg
			// 	ref: "",			//  our reference		.setmod.ref
			// 	doccur: "",			//  document currency		.setmod.doccur
			// 	docamt: "",			//  document amount		.setmod.docamt
			// 	dspflg: "",			//  Type of settlement		.setmod.dspflg
			// 	xreflg: "",			//  Recalculate Rates		.setmod.xreflg
			// 	setglg: {
			// 		labdspflg: "",			//  Label for Type of Settlement		.setmod.setglg.labdspflg
			// 	},
			// 	zmqacclab: "",			//  主�'�号LABEL		.setmod.zmqacclab
			// 	zmqacc: "",			//  自�'�区主�'�号		.setmod.zmqacc
			// 	setfog: {
			// 		setfol: []
			// 	},
			// 	setfeg: {
			// 		setfel: []
			// 	},
			// 	glemod: {
			// 		gleshwstm: {}
			// 	},

			// },
			setmod: new Pub().data.Setmod,
			// mtabut: {
			// 	coninf: {
			// 		oitinf: {
			// 			labinftxt: "",			//  Label for INFTXT		.mtabut.coninf.oitinf.labinftxt
			// 			oit: {
			// 				inftxt: "",			//  Infotext		.mtabut.coninf.oitinf.oit.inftxt
			// 				inflev: "",			//  Infotext Level		.mtabut.coninf.oitinf.oit.inflev
			// 			},
			// 		},
			// 		oitset: {
			// 			labinftxt: "",			//  Label for INFTXT		.mtabut.coninf.oitset.labinftxt
			// 			oit: {
			// 				inftxt: "",			//  Infotext		.mtabut.coninf.oitset.oit.inftxt
			// 				inflev: "",			//  Infotext Level		.mtabut.coninf.oitset.oit.inflev
			// 			},
			// 		},
			// 		conexedat: "",			//  执行日期		.mtabut.coninf.conexedat
			// 		usr: {
			// 			extkey: "",			//  User ID		.mtabut.coninf.usr.extkey
			// 		},
			// 	},
			// },
			mtabut: new Pub().data.Mtabut,
			pageId: ""			// ctx的key
		}
	}
cl committed
91
}