I assume you want to retreive some identification for the order as well
select orderNumber,
count(*) as items,
count(case when itemstatus in ('SHIPPED','DIRECT','CANCEL') then 4711 end) as shipped
from customer_orders
group by order_number
having count(*) <> count(case when itemstatus in ('SHIPPED','DIRECT','CANCEL') then 4711 end)