我在Bills and Adjustments上有一个自定义下拉字段,我想确定何时禁用屏幕上的特定字段。我正在使用以下逻辑,这似乎不起作用(注释行也不起作用)。我已经在用户字段上将commitchanges设置为true - 我已逐步完成代码以确保它被命中:
protected virtual void APInvoice_UsrPOStatus_FieldUpdated(PXCache sender, PXFieldUpdatedEventArgs e)
{
var apr = (APRegister)e.Row;
if (apr == null) return;
var aprext = PXCache<APRegister>.GetExtension<APRegisterExt>(apr);
if (aprext == null) return;
if (aprext.UsrPOstatus != "Open")
{
PXUIFieldAttribute.SetEnabled<APRegister.docType>(sender, apr, false);
PXUIFieldAttribute.SetEnabled<APRegister.refNbr>(sender, apr, false);
//PXUIFieldAttribute.SetEnabled<APInvoice.docType>(Base.Document.Cache, null, false); //(OpenSourceDataDetail.Cache, null, true);
//PXUIFieldAttribute.SetEnabled<APInvoice.refNbr>(Base.Document.Cache, null, false);
}
}
我没有错误,但没有任何反应。是否无法禁用这些字段?
我也不确定是否要为这些陈述使用APInvoice或APRegister。
答案 0 :(得分:0)
当无法更改字段启用状态和可见性时,通常是因为稍后的事件会覆盖您的更改。
您正在处理的图表扩展的基本图表(APInvoiceEntry)在APInvoice_RowSelected事件中的这些字段上调用SetEnabled。
要覆盖这些调用,您应该覆盖扩展中的同一事件,然后您的事件处理程序将是最后执行的事件。
protected virtual void APInvoice_RowSelected(PXCache cache, PXRowSelectedEventArgs e)
{
APInvoice apInvoice = e.Row as APInvoice;
if (apInvoice == null)
{
return;
}
PXUIFieldAttribute.SetEnabled<APInvoice.docType>(cache, apInvoice, false);
PXUIFieldAttribute.SetEnabled<APInvoice.refNbr>(cache, apInvoice, false);
}