-
Notifications
You must be signed in to change notification settings - Fork 0
/
documents.json
62 lines (62 loc) · 1.33 KB
/
documents.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
{
"Stock_in_entry":{
"id":1,
"date": "",
"nonunique_products":[
{
"item_id":1,
"units":2,
"unit_price": 200
}
],
"unique_products":[
{
"item_id":2,
"serial_no":123,
"price": 300
}
]
},
"Srock_out_entry":{
"id":1,
"date":"",
"customer_id":2,
"nonunique_products":[
{
"item_id":1,
"units":2,
"unit_price": 200
}
],
"unique_products":[
{
"item_id":2,
"serial_no":123,
"price": 300
}
]
},
"Rent_agrement":{
"id":1,
"date":"",
"customer_id":2,
"nonunique_products":[
{
"item_id":1,
"units":2,
"unit_rent_price": 200,
"rent_period_days":7,
"rent_start_date":""
}
],
"unique_products":[
{
"item_id":2,
"serial_no":123,
"rent_price": 200,
"rent_period_days":7,
"rent_start_date":""
}
]
}
}