页面:固定资产 (FA303000) 当 FixedAsset_RowPersistedevent 发生时,我有一个集成过程正在运行。
protected void FixedAsset_RowPersisted(PXCache cache, PXRowPersistedEventArgs e)
{
if (Base.Accessinfo.ScreenID == "FA.50.60.00") return;
FixedAsset row = (FixedAsset)e.Row;
if (Base.Asset.Cache.GetStatus(row) == PXEntryStatus.Deleted) return;
DoIntegration();
}
单击Actions >> Dispose按钮时,将调用 FixedAsset_RowPersistedevent 事件,但状态未更改为已释放。
什么是用于我的集成的最佳/正确事件,以便状态更改为已处理。