index.js 1.41 KB
Newer Older
panziyi committed
1 2 3 4 5 6 7 8 9 10
import Pts from '~/components/business/commonModel/Pts';
import Pub from '~/components/business/commonModel/index.js';
export default class Clttra {
    constructor() {
        this.data = {
			bptbck:{
				bptbckg:[],
			},	
			cldgrp: {
				rec: {
panziyi committed
11 12
					inr:"",
					branchinr:"",
panziyi committed
13 14 15 16
					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
panziyi committed
17
					count: "0",			//  Item Count		.cldgrp.rec.count
panziyi committed
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
					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
					},
				},
			},
			pageId: "",			// ctx的key
			setmod: new Pub().data.Setmod,
            setmod: new Pub().data.Setmod,
            mtabut: new Pub().data.Mtabut,
            trnmod: new Pub().data.Trnmod,
            liaall: new Pub().data.Liaall,
            liaccv: new Pub().data.Liaccv,
            docpan: new Pub().data.Docpan,
        };
    }
}