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
|
import { Item, NewItem, Address } from "./interfaces"
export const DummyItem: Item = {
Model: "",
Description: "",
Quantity: 0,
UnitPrice: 0,
TotalValue: 0,
Discount: 0,
DiscountValue: 0,
HSN: "",
TotalGST: 0,
SGST: 0,
CGST: 0,
IGST: 0,
TotalGSTValue: 0,
Brand: "",
Category: ""
}
export const DummyNewItem: NewItem = {
Model: "",
Description: "",
UnitPrice: 0,
HSN: "",
TotalGST: 0,
Brand: "",
Category: ""
}
export const DummyAddress: Address = {
AddressLine: "",
City: "",
State: "",
PINCode: "",
Country: ""
}
|