-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.js
53 lines (51 loc) · 1.91 KB
/
data.js
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
const data = {
seller: {
name: 'Varasiddhi Silk Exports',
address: '75, 3rd Cross, Lalbagh Road',
city: 'BENGALURU',
state: 'KARNATAKA',
pincode: '560027',
panNo: 'AACFV3325K',
gstNo: '29AACFV3325K1ZY'
},
placeOfSupply: 'KARNATAKA',
billing: {
name: 'Madhu B',
address: 'Eurofins IT Solutions India Pvt Ltd., 1st Floor, Maruti Platinum, Lakshminarayana Pura, AECS Layou',
city: 'BENGALURU',
state: 'KARNATAKA',
pincode: '560037',
stateCode: '29'
},
shipping: {
name: 'Madhu B',
address: 'Eurofins IT Solutions India Pvt Ltd., 1st Floor, Maruti Platinum, Lakshminarayana Pura, AECS Layou',
city: 'BENGALURU',
state: 'KARNATAKA',
pincode: '560037',
stateCode: '29'
},
placeOfDelivery: 'KARNATAKA',
orderNo: '403-3225714-7676307',
orderDate: '28.10.2019',
invoiceNo: 'IN-761',
invoiceDate: '28.10.2019',
reverseCharge: 'No',
items: [
{
description: 'Varasiddhi Silks Men\'s Formal Shirt (SH-05-42, Navy Blue, 42)',
unitPrice: 338.10,
quantity: 1,
discount: 0,
taxRate: 18 // in percentage
},
{
description: 'Varasiddhi Silks Men\'s Formal Shirt (SH-05-40, Navy Blue, 40)',
unitPrice: 338.10,
quantity: 1,
discount: 0,
taxRate: 18 // in percentage
}
]
};
module.exports = { data };