What is the best way to find which user_id
picked a shipment?
The user_id
for who packed is included in the shipment query, but what about the picker?
Thank you
What is the best way to find which user_id
picked a shipment?
The user_id
for who packed is included in the shipment query, but what about the picker?
Thank you
As far as I can tell, there isn’t a query to directly link pickers to shipments. Maybe you can use the picks_per_day query to narrow it down picks by the date/time range, and then use the order_id or order_number fields to either run new queries, or you could use the “order” subtree from the picks_per_day query. Either way, an order contains the shipments associated with it.
@tomasfd could we put a feature request to add an argument on picks_per_day
and pack_per_day
to filter by order_id or ?
I don’t see why not. But just to be clear, I don’t work for ShipHero. I’m just another user.