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
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
import Api from "~/service/Api"
import Pts from "../Common/Pts"
export default class Sptrou{
constructor () {
this.data = {
recpan:{
contxt:"", // text .recpan.contxt
filpth:"", // File Path .recpan.filpth
filnam:"", // File Name .recpan.filnam
atp:{
cod:"", // Transaction .recpan.atp.cod
},
atpget:{
sdamod:{
seainf:"", // .recpan.atpget.sdamod.seainf
dadsnd:"", // Drag Drop Sender .recpan.atpget.sdamod.dadsnd
},
},
atptxt:"", // Application Transaction Profile Code .recpan.atptxt
conget:{
refnum:"", // Reference No. .recpan.conget.refnum
selref:"", // Refecence of selected contract .recpan.conget.selref
selnam:"", // name of selected contract .recpan.conget.selnam
sdamod:{
seainf:"", // .recpan.conget.sdamod.seainf
dadsnd:"", // Drag Drop Sender .recpan.conget.sdamod.dadsnd
},
},
dpcget:{
refnum:"", // Reference No. .recpan.dpcget.refnum
selref:"", // Refecence of selected contract .recpan.dpcget.selref
selnam:"", // name of selected contract .recpan.dpcget.selnam
sdamod:{
seainf:"", // .recpan.dpcget.sdamod.seainf
dadsnd:"", // Drag Drop Sender .recpan.dpcget.sdamod.dadsnd
},
},
usrget:{
sdamod:{
seainf:"", // .recpan.usrget.sdamod.seainf
},
},
},
spt:{
sta:"", // Type .spt.sta
objnam:"", // Message Reference .spt.objnam
txt:"", // Name .spt.txt
inftxt:"", // Info Text .spt.inftxt
infdsp:"", // Info Text .spt.infdsp
usr:"", // Entered by .spt.usr
cretrn:"", // Creating Transaction ID .spt.cretrn
dattim:"", // Time of Creation .spt.dattim
wrkusr:"", // Work User .spt.wrkusr
wrkgrp:"", // WORK GROUP .spt.wrkgrp
},
srvprtm:{
prt:{
heatxt:"", // Text for Header .srvprtm.prt.heatxt
tef:"", // Technical Form .srvprtm.prt.tef
getprt:"", // Default Printer from: .srvprtm.prt.getprt
prt:"", // Printer .srvprtm.prt.prt
bin:"", // Paperbin .srvprtm.prt.bin
bin2:"", // Bin for 2nd Page .srvprtm.prt.bin2
cpycnt:"", // # of Copies .srvprtm.prt.cpycnt
},
prtmod:{
cltprtflg:"", // Client Printing .srvprtm.prtmod.cltprtflg
},
},
chgetyprt:"", // Print message when entity is changed .chgetyprt
pageId: "" // ctx的key
}
}
}