Added UOM Nmae
This commit is contained in:
parent
3fa82504a3
commit
96d713ee3a
|
|
@ -397,10 +397,11 @@ const AutomatedReorder = ({ formType = 'add' }) => {
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
>
|
>
|
||||||
|
|
||||||
<DropDowns
|
<DropDowns
|
||||||
label={<label className="required">Product</label>}
|
label={<label className="required">Product</label>}
|
||||||
options={products?.map((item) => ({
|
options={products?.map((item) => ({
|
||||||
label: item?.ProdName,
|
label: `${item?.ProdName} (${item?.UOMName})`,
|
||||||
value: item?.ProdId,
|
value: item?.ProdId,
|
||||||
variantDtls: item?.ProdVariantPriceDetails,
|
variantDtls: item?.ProdVariantPriceDetails,
|
||||||
CheapestStatus: item?.CheapestStatus,
|
CheapestStatus: item?.CheapestStatus,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue