From 37ef1ab2f544a05b5878c5bdaafd37155a054289 Mon Sep 17 00:00:00 2001 From: Vidhu Kant Sharma Date: Sun, 3 Dec 2023 22:16:22 +0530 Subject: added invoice edit page --- src/classes/invoice_item.ts | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/classes/invoice_item.ts (limited to 'src/classes/invoice_item.ts') diff --git a/src/classes/invoice_item.ts b/src/classes/invoice_item.ts new file mode 100644 index 0000000..a7a0a85 --- /dev/null +++ b/src/classes/invoice_item.ts @@ -0,0 +1,21 @@ +export default class InvoiceItem { + UnitOfMeasure: string + Quantity: string + Name: string + Description: string + HSN: string + UnitPrice: string + GSTPercentage: string + BrandName: string + + constructor() { + this.Name = '' + this.Description = '' + this.HSN = '' + this.UnitPrice = '' + this.GSTPercentage = '' + this.UnitOfMeasure = '' + this.Quantity = "" + this.BrandName = "" + } +} -- cgit v1.2.3