I want to filter customer orders based on the last update time.
However, currently, the interface for customer orders provided by the IFS system doesn't seem to support this directly.
The method I'm using at present is to filter the orders according to DateEntered first.
Then, for each order, I obtain its historical records, arrange them in reverse order, and regard the DateEntered of the first record in the record list as the last update time of the order.
Finally, I filter out the orders I need according to this time.
But this approach is very time - consuming.
What I want to ask is whether there is an interface that can obtain the order data I want in one go.
