Eric Moss
Eric Moss
Full screen -
Print options -
Document Upload (On Hover) https://github.com/user-attachments/assets/49f6d88c-f801-47b2-967b-2168ea72a5f1
Document Upload with files
File uploaded ,but one failed.
Show errors dialog

For now this is completed, and will be released for BETA pending user feedback
Added support for the shipment transition to the state machine. ```go func (sm *ShipmentStateMachine) CanTransition(event TransitionEvent) bool { currState := sm.shipment.Status validTransitions := map[shipment.Status]map[TransitionEvent]bool{ shipment.StatusNew: { EventShipmentPartiallyAssigned: true, EventShipmentAssigned: true,...
We need to add a new endpoint, to update the shipment status to ready to bill. We will need to run validation checks to ensure the shipment is ready to...