-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequest.js
More file actions
67 lines (65 loc) · 1.24 KB
/
request.js
File metadata and controls
67 lines (65 loc) · 1.24 KB
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
var response = {
"response" : {
"header" : {
"status" : "SUCCESS",
"status_code" : "001",
"status_desc" : "call atp successfull"
},
"data" : {
"cart_id" : "XXXXXX",
"country" : "XXX",
"action" : "QUERY", // QUERY, CONFIRM, RESERVE
"items" : [ {
"line_num" : "XXXX",
"product_num" : "XXXX",
"quantity" : 10,
"product_type" : "CTO",
"psd" : "2017/07/10",
"source" : "L420",
"status" : "success"
}, {
"line_num" : XXXX,
"product_num" : XXXX,
"quantity" : 10,
"product_type" : "CTO",
"psd" : "",
"source" : "0110",
"status" : "no-plant"
}, {
"line_num" : XXXX,
"product_num" : XXXX,
"quantity" : 10,
"product_type" : "CTO",
"psd" : "",
"source" : "L420",
"status" : "no-atp"
} ]
}
}
}
var request = {
"request" : {
"cart_id" : "XXXXXX",
"country" : "XXX",
"action" : "QUERY", // QUERY, CONFIRM, RESERVE
"items" : [ {
"line_num" : "XXXX",
"product_num" : "XXXX",
"quantity" : 10,
"product_type" : "CTO",
"config" : {
"CPU" : "I7",
"MEM" : "16G"
}
}, {
"line_num" : XXXX,
"product_num" : XXXX,
"quantity" : 10,
"product_type" : "CTO",
"config" : {
"CPU" : "I7",
"MEM" : "16G"
}
} ]
}
}