index.js 1.2 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 Cltset {
	constructor() {
		this.data = {
7 8 9
			bptbck: {
				bptbckg: [],			//  		.bptbck.bptbckg
			},
cl committed
10
			liaall: new Pub().data.Liaall,
nanrui committed
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
			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: new Pub().data.Setmod,
			trnmod: new Pub().data.Trnmod,
			mtabut: new Pub().data.Mtabut,
			pageId: ""			// ctx的key
		}
	}
cl committed
46
}