Blame view

mustache/app/data/pages/partials/invoice/invoice.json 811 Bytes
5a739853   patrick.he   commit
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
  {
  	"title" : "Customer Invoice",
  	"number" : "121212",
  	"date" : "04/04/2014",
   
  	"customer" : {
  		"address" : ["Street, City", "Zip Code", "State, Country"] ,
  		"contact" : "Contact Info"
  	} ,
  	
  	"products" : 
  	[
  		{
  			"id" : 1,
  			"name" : "<a href='#'>google.com</a>",
  			"description" : "1 year domain registration",
  			"discount" : "---",
  			"total" : "$10"
  		} ,
  		{
  			"id" : 2,
  			"name" : "<a href='#'>yahoo.com</a>",
  			"description" : "5 year domain registration",
  			"discount" : "5%",
  			"total" : "$45"
  		} ,
  		{
  			"id" : 3,
  			"name" : "Hosting",
  			"description" : "1 year basic hosting",
  			"discount" : "10%",
  			"total" : "$90"
  		} ,
  		{
  			"id" : 4,
  			"name" : "Design",
  			"description" : "Theme customization",
  			"discount" : "50%",
  			"total" : "$250"
  		}
  	]
  	,
  	
  	"total" : "$395"
  }