The conditions of SUMIFS must all be met. Since in your data, no row is in East, West, South and North regions it gives zero. To get what you want, use this instead:
=SUMIFS(sales,region,"east") + SUMIFS(sales,region,"west") + SUMIFS(sales,region,"north") + SUMIFS(sales,region,"south")