-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.json
72 lines (72 loc) · 1.73 KB
/
data.json
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
{
"product": {
"id": "1",
"sku": "123",
"bar_code": "123",
"name": "Product 1",
"uom": "Kg",
"category": "Category 1",
"price": "100"
},
"transaction":[
{
"id": 1,
"created_at": "2019-01-01",
"transaction_id": "1",
"type": "entry",
"distributor": "Distributor 1",
"warehouse": null,
"take_in_by": null,
"devision" : null,
"status": "final"
},
{
"id": 2,
"created_at": "2019-01-01",
"transaction_id": "2",
"type": "out",
"distributor": null,
"warehouse": null,
"take_in_by": "Take in by 1",
"devision" : "Division 1",
"status": "final"
},
{
"id": 3,
"created_at": "2019-01-01",
"transaction_id": "3",
"type": "audit",
"distributor": null,
"warehouse": "Warehouse 1",
"take_in_by": null,
"devision" : null,
"status": "final"
}
],
"transaction_detail": [
{
"id": "1",
"transaction_id": "1",
"sku": "1",
"last_stock": "0",
"quantity": "10",
"stock": "10"
},
{
"id": "1",
"transaction_id": "2",
"sku": "1",
"last_stock": "10",
"quantity": "1",
"stock": "9"
},
{
"id": "1",
"transaction_id": "3",
"sku": "1",
"last_stock": 9,
"quantity": 9,
"final_stock": 9
}
]
}