为什么仅部分考虑 XML ShopWare 5.4.6 数据中的文章导入?

Why were the XML import of an article in ShopWare 5.4.6 Data only partially taken into account?

我已经通过 Shopware 后端使用 XML 文件导入了一篇文章。

有一个积极的消息1 and even implicitly a suplier was created in database 3 (but no matching article in Item overview 2)。

可惜这篇文章不在前端,不在后端2 and is not included in the database table 5。

  1. 为什么在导入文章时只考虑了部分数据?
  2. 为什么供应商在 mysql 3 but not visible in 'Item overview' 2.
  3. 中装箱
  4. 为什么没有错误信息?
  5. 也许它仍然是 XML 文件中的一个错误。那会是哪一个?

这就是这个 XML 的来源(导入带有 space 边框字符串 supplier.xml 的 1articel):

`<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Root>
<articles>
<article>
    <prices><price>
            <group>EK</group>
            <price>2.99</price>
            <pseudoprice></pseudoprice>
            <baseprice></baseprice>
        </price></prices>
    <tax>19.00</tax>
    <category><categories>101</categories></category>
    <active>1</active>
    <ordernumber>ordernumber: space bordered string supplier</ordernumber>
    <name>name: space bordered string supplier</name>
    <mainnumber>9</mainnumber>
    <supplier>   space bordered string supplier   </supplier>
</article>
</articles>
</Root>`

创建没有变体的产品时,订单号必须与主编号相同。只有当这是一个变体产品时,这些才会有所不同(即使在这种情况下,其中一个变体的订单号 = 主编号)。因此,您的示例将无法运行(这是一个有效的导入,因为如果有一篇文章使用此主编号,则该产品可能会作为变体分配给它)。