basic setup with web page setup and need db connection

This commit is contained in:
arjunpat
2018-07-30 17:00:40 -07:00
parent 08b177ebe5
commit f3c7ab38dc
8 changed files with 3304 additions and 0 deletions
+58
View File
@@ -0,0 +1,58 @@
{
"orders" :
[{
"customer_id" : 1,
"order_no" : 1,
"part_id" : 1111,
"parent_part" : 1111,
"price" : 1000,
"qty" : 2,
"paid" : 2000
},
{
"customer_id" : 1,
"order_no" : 2,
"part_id" : 2321,
"parent_part" : 1111,
"price" : 500,
"qty" : 2,
"paid" : 1000
},
{
"customer_id" : 2,
"order_no" : 3,
"part_id" : 1232,
"parent_part" : 2222,
"price" : 200,
"qty" : 1,
"paid" : 200
},
{
"customer_id" : 3,
"order_no" : 4,
"part_id" : 12321,
"parent_part" : 3333,
"price" : 100,
"qty" : 1,
"paid" : 100
},
{
"customer_id" : 3,
"order_no" : 5,
"part_id" : 3331,
"parent_part" : 1111,
"price" : 500,
"qty" : 1,
"paid" : 500
},
{
"customer_id" : 4,
"order_no" : 6,
"part_id" : 2343,
"parent_part" : 1222,
"price" : 150,
"qty" : 1,
"paid" : 150
}
]
}