Skip to content

Commit

Permalink
removed filter on cancelation request
Browse files Browse the repository at this point in the history
  • Loading branch information
JonSpight committed Mar 4, 2025
1 parent d4b10fb commit 3dadb58
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion pkg/models/mto_shipments.go
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,6 @@ func FilterDeletedRejectedCanceledMtoShipments(unfilteredShipments MTOShipments)
if shipment.DeletedAt == nil &&
(shipment.Status != MTOShipmentStatusDraft) &&
(shipment.Status != MTOShipmentStatusRejected) &&
(shipment.Status != MTOShipmentStatusCancellationRequested) &&
(shipment.Status != MTOShipmentStatusCanceled) {
filteredShipments = append(filteredShipments, shipment)
}
Expand Down

0 comments on commit 3dadb58

Please sign in to comment.