From 579d4f2a3a1a0a9ff8bfb67dce465e4b0661112d Mon Sep 17 00:00:00 2001 From: Srinath Date: Thu, 29 Jan 2026 09:39:40 +0530 Subject: [PATCH] Added Emplyee Access missing names --- .../ComboSalesBillTable/ComboSalesBillTable.jsx | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/Pages/BookingScreen/Components/BSBillingTables/ComboSalesBillTable/ComboSalesBillTable.jsx b/src/Pages/BookingScreen/Components/BSBillingTables/ComboSalesBillTable/ComboSalesBillTable.jsx index 2597d03..be660bc 100644 --- a/src/Pages/BookingScreen/Components/BSBillingTables/ComboSalesBillTable/ComboSalesBillTable.jsx +++ b/src/Pages/BookingScreen/Components/BSBillingTables/ComboSalesBillTable/ComboSalesBillTable.jsx @@ -2208,7 +2208,15 @@ const ComboSalesBillTable = () => { {row?.BrandName ? ` ${row.BrandName}` : ''} {row?.Type !== 'C' && (

- {row?.ProdVariantName} {row?.Size} {row?.UomName} + {/* {row?.ProdVariantName} {row?.Size} {row?.UomName} */} + ( + {!row?.ProdVariantName?.toLowerCase()?.includes( + 'variant' + ) && {row?.ProdVariantName} } + {row?.Size} + {row?.SinglePc == 'Y' ? 'PCS' : row?.UomName} + + )

)} {row?.Type === 'C' &&