Added Emplyee Access missing names

This commit is contained in:
Srinath 2026-01-29 09:39:40 +05:30
parent da44ac7535
commit 579d4f2a3a
1 changed files with 9 additions and 1 deletions

View File

@ -2208,7 +2208,15 @@ const ComboSalesBillTable = () => {
{row?.BrandName ? ` ${row.BrandName}` : ''}
{row?.Type !== 'C' && (
<p className="Tbl3-Variant">
{row?.ProdVariantName} {row?.Size} {row?.UomName}
{/* {row?.ProdVariantName} {row?.Size} {row?.UomName} */}
(
{!row?.ProdVariantName?.toLowerCase()?.includes(
'variant'
) && <span>{row?.ProdVariantName} </span>}
{row?.Size}
{row?.SinglePc == 'Y' ? 'PCS' : row?.UomName}
)
</p>
)}
{row?.Type === 'C' &&