0

我曾经能够在产品打折后将 compare_at_price 设置为 null,但现在我收到错误消息。这是利用 NozzleGear 的 ShopifySharp C# 库。

例子:

价格是:1000,比较在 1200

我想将它的价格重置为 1200,比较为 0。

(422 Unprocessable Entity) compare_at_price:比较价格需要高于价格

我既不能将其设置为 0,那么如何将 compare_at_price 禁用为 0 或 null 或将其删除?

var variant = await productVariantService.UpdateAsync(product.VariantId.Value, new ProductVariant()
{
      Price = updatePrice,
      CompareAtPrice = updateCompareAtPrice
});
4

1 回答 1

0

似乎有一个错误,这是解决方法...

https://github.com/nozzlegear/ShopifySharp/issues/373

创建和使用以下服务

using System;
using System.Net.Http;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using ShopifySharp;
using ShopifySharp.Infrastructure;

public class ProductVariantServiceEx : ProductVariantService
{
    public ProductVariantServiceEx(string myShopifyUrl, string shopAccessToken) : base(myShopifyUrl, shopAccessToken) { }

    public virtual async Task<ProductVariant> UpdateAsync(long productVariantId, ProductVariant variant)
    {
        try
        {
            // BUGFIX: If variant.CompareAtPrice is set to 0, then force it to empty
            string json = new JsonContent(new { variant }).ReadAsStringAsync().Result;

            if (json.Contains("\"compare_at_price\":0.00}")
                || json.Contains("\"compare_at_price\":0.00,"))
            {
                json = json.Replace("\"compare_at_price\":0.00", "\"compare_at_price\":\"\"");

                var req = PrepareRequest($"variants/{productVariantId}.json");
                using var content = new StringContent(json, Encoding.UTF8, "application/json");
                await Task.Run(() => Thread.Sleep(500));
                return (await ExecuteRequestAsync<ProductVariant>(req, HttpMethod.Put, default, content, "variant")
                    .ConfigureAwait(false)).Result;
            }

            return await base.UpdateAsync(productVariantId, variant);
        }
        catch (Exception)
        {
            return null;
        }
    }
}
于 2020-10-06T12:01:02.427 回答