Hi,
alle Produkte eines neuen Shopware 6 Feeds werden im Merchant Center als nicht auf Lager synchronisiert. Warum? Hier ist die Standard-Code-Zeile:
<g:availability>
{%- if product.availableStock >= product.minPurchase and product.deliveryTime -%}
in_stock{#- -#}
{%- elseif product.availableStock < product.minPurchase and product.deliveryTime and product.restockTime -%}
preorder{#- -#}
{%- else -%}
out_of_stock{#- -#}
{%- endif -%}
</g:availability>```