From 4e7bcb396921860e20be11b11432866600a8d279 Mon Sep 17 00:00:00 2001 From: Vidhu Kant Sharma Date: Thu, 7 Dec 2023 21:48:43 +0530 Subject: changed print format a bit --- src/components/invoice_items_table.vue | 30 +++++++++++++++++++++--------- 1 file changed, 21 insertions(+), 9 deletions(-) (limited to 'src/components/invoice_items_table.vue') diff --git a/src/components/invoice_items_table.vue b/src/components/invoice_items_table.vue index 285f990..ad1bf94 100644 --- a/src/components/invoice_items_table.vue +++ b/src/components/invoice_items_table.vue @@ -32,12 +32,12 @@ const handleDelete = async (id) => { # Item Name - Description - Brand + Brand HSN Unit Price - GST % - Quantity Unit + Taxable Value + GST + Quantity Amount @@ -53,16 +53,24 @@ const handleDelete = async (id) => { {{ index + 1 }} - {{ item.Name }} - {{ item.Description }} - {{ item.BrandName }} + + {{ item.Name }} + + {{ item.BrandName }} + {{ item.Description }} + + + {{ item.BrandName }} {{ item.HSN }} {{ item.UnitPrice }} + {{ item.AmountWithoutGST }} {{ item.GSTValue }} {{ item.GSTPercentage }}% - {{ item.Quantity }} {{ item.UnitOfMeasure }} - {{ item.TotalAmount }} {{ item.AmountWithoutGST }} + {{ item.TotalGSTValue }} + + {{ item.Quantity }} {{ item.UnitOfMeasure }} + + {{ item.TotalAmount }}
@@ -110,4 +118,8 @@ tbody tr:hover .table-action-column .btn { opacity: 1; transition: opacity 300ms; } +td.multi-row { + display: flex; + flex-direction: column; +} -- cgit v1.2.3