protected virtual void AllocationFilter_RowSelected(PXCache cache, PXRowSelectedEventArgs e)
        {
            AllocationFilter filter = Filter.Current;

            Items.SetProcessDelegate <PMAllocator>(
                delegate(PMAllocator engine, PMProject item)
            {
                Run(engine, item, filter.Date, filter.DateFrom, filter.DateTo);
            });
        }
Exemplo n.º 2
0
        protected virtual void AllocationFilter_RowSelected(PXCache cache, PXRowSelectedEventArgs e)
        {
            AllocationFilter filter = Filter.Current;

            Items.SetProcessDelegate(
                delegate(PMTask item)
            {
                PMAllocator engine = PXGraph.CreateInstance <PMAllocator>();
                Run(engine, item, filter.Date, filter.DateFrom, filter.DateTo);
            });
        }