通过API下订单时,Shopify商店的库存数量未减少

时间:2016-05-28 16:30:14

标签: api rest shopify

我将以下订单发布到shopify api订单端点。该订单显示在商店中,一切正常,除了通过API自动降低订单变量的库存数量。当我在管理控制台中下订单时,它们会自动减少。已为产品启用Shopify库存跟踪。任何想法都将不胜感激。

  {
  "order": {
    "email": "someName@yahoo.com",
    "financial_status": "paid",
    "fulfillment_status": null,
    "send_receipt": true,
    "send_fulfillment_receipt": true,
    "note": "Created by someName",
    "line_items": [
      {
        "variant_id": 21718275463,
        "quantity": 1,
        "price": 99,
        "requires_shipping": true,
        "product_id": 6820646151
      },
      {
        "variant_id": 21717700871,
        "quantity": 1,
        "price": 1000,
        "requires_shipping": true,
        "product_id": 6820646151
      },
      {
        "variant_id": 21717690055,
        "quantity": 1,
        "price": 555,
        "requires_shipping": true,
        "product_id": 6821668807
      }
    ],
    "processing_method": "offsite",
    "shipping_address": {
      "first_name": "Chris",
      "address1": "111 Love Road",
      "phone": "9999999999",
      "city": "St. Louis",
      "zip": "63123",
      "province": "MO",
      "country": "United States",
      "last_name": "Becker",
      "name": "Chris Becker",
      "country_code": "US",
      "province_code": "MO"
    },
    "source_name": "someName",
    "taxes_included": false,
    "shipping_lines": [
      {
        "title": "standard",
        "price": 0.00,
        "code": null,
        "source": "brand owner on shopify",
        "carrier_identifier": null,
        "tax_lines": null
      }
    ],
    "tags": "someName"
  }
}


    {
  "variant": {
    "id": 21718275463,
    "product_id": 6820646151,
    "title": "m / red",
    "price": "99.00",
    "sku": "",
    "position": 2,
    "grams": 0,
    "inventory_policy": "deny",
    "compare_at_price": "900.00",
    "fulfillment_service": "manual",
    "inventory_management": "shopify",
    "option1": "m",
    "option2": "red",
    "option3": null,
    "created_at": "2016-05-27T13:16:26-04:00",
    "updated_at": "2016-05-28T13:28:20-04:00",
    "taxable": false,
    "barcode": "",
    "image_id": 13217378823,
    "inventory_quantity": 1,
    "weight": 0,
    "weight_unit": "lb",
    "old_inventory_quantity": 1,
    "requires_shipping": true
  }
}


{
  "variant": {
    "id": 21717700871,
    "product_id": 6820646151,
    "title": "s / green",
    "price": "1000.00",
    "sku": "",
    "position": 1,
    "grams": 0,
    "inventory_policy": "deny",
    "compare_at_price": "1111.00",
    "fulfillment_service": "manual",
    "inventory_management": "shopify",
    "option1": "s",
    "option2": "green",
    "option3": null,
    "created_at": "2016-05-27T13:05:56-04:00",
    "updated_at": "2016-05-28T12:17:22-04:00",
    "taxable": true,
    "barcode": "",
    "image_id": 13160712135,
    "inventory_quantity": 2,
    "weight": 0,
    "weight_unit": "lb",
    "old_inventory_quantity": 2,
    "requires_shipping": true
  }
}


    {
  "variant": {
    "id": 21717690055,
    "product_id": 6821668807,
    "title": "Default Title",
    "price": "555.00",
    "sku": "",
    "position": 1,
    "grams": 0,
    "inventory_policy": "deny",
    "compare_at_price": "666.00",
    "fulfillment_service": "manual",
    "inventory_management": "shopify",
    "option1": "Default Title",
    "option2": null,
    "option3": null,
    "created_at": "2016-05-27T13:05:39-04:00",
    "updated_at": "2016-05-28T12:17:22-04:00",
    "taxable": true,
    "barcode": "",
    "image_id": null,
    "inventory_quantity": 2,
    "weight": 0,
    "weight_unit": "lb",
    "old_inventory_quantity": 2,
    "requires_shipping": true
  }
}

1 个答案:

答案 0 :(得分:0)

您使用API​​创建了虚假订单。像这样的假订单不会交易金钱或触发通常的内部检查和平衡,而无需额外的努力。也许如果您尝试在订单中添加履行,Shopify可能会将库存水平降低?似乎无论如何都要尝试。

相关问题