the_excerpt() doesn’t return the Excerpt field content

Have you tried using the example from the codex?

if ( ! has_excerpt() ) {
      the_content();
} else { 
      the_excerpt();
}