aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/interfaces.ts')
-rw-r--r--src/interfaces.ts30
1 files changed, 16 insertions, 14 deletions
diff --git a/src/interfaces.ts b/src/interfaces.ts
index 7090907..bc355ff 100644
--- a/src/interfaces.ts
+++ b/src/interfaces.ts
@@ -1,21 +1,23 @@
export interface Transport {
- name: string,
- vehicleNum: string,
- method: string,
- gstin: string,
+ 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??
+ Model: string
+ Description: string
+ Quantity: number
+ UnitPrice: number
+ TotalValue: number // UnitPrice * Quantity
+ Discount: number
+ HSN: number // string??
- sgst: number,
- cgst: number,
- igst: number
+ TotalGST: number
+ SGST: number
+ CGST: number
+ IGST: number
+ // category and brand
}