How can I display stock levels to logged-in b2b customers only?

There is a way to show stuff only to B2B customers. If you use the code below, it returns either true or false.

{{ customer.b2b? }}

Then you can use that to build something like:

{% if customer.b2b? %}
show some stuff for b2b customer
{% endif %}

Liquid objects (shopify.dev)