Hello everyone, Can someone show me how to block the Unit price field in Sales Ordes Screen?
Thanks in advance!
Page 1 / 1
Thanks Naveen the customization you sent me worked out
public class SOOrderEntryExt : PXGraphExtension<SOOrderEntry>
{
protected virtual void SOLine_RowSelected(PXCache cache, PXRowSelectedEventArgs e, PXRowSelected InvokeBaseHandler)
{
InvokeBaseHandler?.Invoke(cache, e);
SOLine row = e.Row as SOLine;
if (row != null)
{
PXUIFieldAttribute.SetEnabled<SOLine.curyUnitPrice>(cache, row, false);
}
}
}

Sure
Thank you very much Naveen for your prompt response. I'm going to try and let you know how it looks.
public class SOOrderEntryExt : PXGraphExtension<SOOrderEntry>
{
protected virtual void SOLine_RowSelected(PXCache cache, PXRowSelectedEventArgs e, PXRowSelected InvokeBaseHandler)
{
InvokeBaseHandler?.Invoke(cache, e);
SOLine row = e.Row as SOLine;
if (row != null)
{
PXUIFieldAttribute.SetEnabled<SOLine.curyUnitPrice>(cache, row, false);
}
}
}
Hello Naveen,
Yes, I do.
I want to make the Unit Price field to Read-Only/Non Editable field.

Hi
Do you want to make the Unit Price field to Read-Only/Non Editable field?
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.