index.js 1.55 KB
Newer Older
唐贵贤 committed
1 2 3 4 5 6 7
import Api from "~/service/Api"
import Pts from "../Common/Pts"

export default class Infbtd{
    constructor () {
        this.data = {
						infcon:{
8 9 10
							chksubcon:"",
							objinr:"",
							trnstm:"",
唐贵贤 committed
11
							seaownref:"",			//  Own Reference		.infcon.seaownref
12
							seashgref:"",			//  Own Reference		.infcon.seashgref
唐贵贤 committed
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
							nam:"",			//  Name		.infcon.nam
							searef:"",			//  Party Reference		.infcon.searef
							pty:{
								extkey:"",			//  Select Single Party		.infcon.pty.extkey
								nam:"",			//  External Visible Name		.infcon.pty.nam
							},
							seapty:"",			//  Party Name/BIC		.infcon.seapty
							searol:"",			//  Role		.infcon.searol
							opndatfrom:"",			//  Opening between		.infcon.opndatfrom
							opndatto:"",			//  Open Date to		.infcon.opndatto
							usr:{
								extkey:"",			//  User ID		.infcon.usr.extkey
							},
							seasta:"",			//  Status		.infcon.seasta
							seacur:"",			//  Currency		.infcon.seacur
							seaamtfr:"",			//  Amount between		.infcon.seaamtfr
							seaamtto:"",			//  Amount to		.infcon.seaamtto
							relflg:"",			//  Release Status		.infcon.relflg
							cxmflg:"",			//  是否显示查询码		.infcon.cxmflg
							hndtyp:"",			//  Handling Type		.infcon.hndtyp
							invnum:"",			//  Invoice No.		.infcon.invnum
						},
						infbut:{
							dspstm:"",			//  display stream		.infbut.dspstm
						},
						ledgrp:{
							rec:{
40 41 42
								inr:"",
								ownref:"",	
							}
唐贵贤 committed
43 44 45
						},
						btdgrp:{
							rec:{
46 47
								ownref:"",	
							}
唐贵贤 committed
48 49 50 51 52
						},
						pageId: ""			// ctx的key
				}
    }
}