index.js 823 Bytes
Newer Older
fukai committed
1 2 3 4 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 30 31 32 33 34
import Pub from '~/components/business/commonModel/index.js';
import Ledgrp from '~/components/business/commonModel/ledgrp';
import Ltdgrp from '~/components/business/commonModel/ltdgrp';

export default class Lttatt {
	constructor() {
		this.data = {
			lttp0: {
				recget: {
					sdamod: {
						dadsnd: "",			//  Drag  Drop Sender		.lttp0.recget.sdamod.dadsnd
						seainf: "",			//  		.lttp0.recget.sdamod.seainf
					},
				},
				ledget: {
					sdamod: {
						seainf: "",			//  		.lttp0.ledget.sdamod.seainf
					},
				},
				aammod: {
					addamtflg: "",			//  Add. Amount		.lttp0.aammod.addamtflg
				},
			},
			spt: {
				smhinr: "",
			},
			ledgrp: new Ledgrp().data,
			ltdgrp: new Ltdgrp().data,
			trnmod: new Pub().data.Trnmod,
			doctre: new Pub().data.Doctre,
			trndia: new Pub().data.Trndia,
		}
	}
}