From 04ef09bba76f8ce3572120c19a3070c45a4af86c Mon Sep 17 00:00:00 2001 From: MikunoNaka Date: Sun, 8 Aug 2021 18:10:50 +0530 Subject: added support for Item Brand and Category --- src/interfaces.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/interfaces.ts') diff --git a/src/interfaces.ts b/src/interfaces.ts index b2f354c..8363752 100644 --- a/src/interfaces.ts +++ b/src/interfaces.ts @@ -21,7 +21,8 @@ export interface Item { CGST: number | boolean IGST: number | boolean TotalGSTValue: number // total tax - // category and brand + Brand: string + Category: string } // for registering new item to DB @@ -31,7 +32,8 @@ export interface NewItem { UnitPrice: number // price without tax/discount HSN: string TotalGST: number // gst percentage - // category and brand + Brand: string + Category: string } export interface Address { -- cgit v1.2.3