blob: bc355ff1e9657fa94edf566d3b31c04c7e63aba8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
export interface Transport {
name: string
vehicleNum: string
method: string
gstin: string
builty: string
}
export interface Item {
Model: string
Description: string
Quantity: number
UnitPrice: number
TotalValue: number // UnitPrice * Quantity
Discount: number
HSN: number // string??
TotalGST: number
SGST: number
CGST: number
IGST: number
// category and brand
}
|