Enhancement: show 'back in stock subscriptions' to admin panel

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
10 years ago
Hi,
Would be nice to have 2 things more on customers registering for back in stock subscriptions:

1. Add a tab to product so that it is visible who registered; and if buying new stock is needed.
2. Add a tab to customer page so that you can see if customer indeed registered for stock subscription.

Maybe also a report of all products and of individual products. If possible

Now I need to look on the database directly.

J.


SELECT
p.Name
,p.sku
    ,c.Username
    ,c.Email
      ,biss.[CreatedOnUtc]
      ,[StoreId]
      ,[ProductId]
      ,[CustomerId]
    ,p.[Id]
  FROM [BackInStockSubscription] biss
  INNER JOIN [Product] p ON p.id = biss.ProductId
  INNER JOIN [Customer] c ON c.Id = biss.CustomerId

10 years ago
Thanks for suggestion. Please for these work items here and here
9 years ago
Quantis001 wrote:
Hi,
Would be nice to have 2 things more on customers registering for back in stock subscriptions:

1. Add a tab to product so that it is visible who registered; and if buying new stock is needed.
2. Add a tab to customer page so that you can see if customer indeed registered for stock subscription.

Maybe also a report of all products and of individual products. If possible

Now I need to look on the database directly.

J.


SELECT
p.Name
,p.sku
    ,c.Username
    ,c.Email
      ,biss.[CreatedOnUtc]
      ,[StoreId]
      ,[ProductId]
      ,[CustomerId]
    ,p.[Id]
  FROM [BackInStockSubscription] biss
  INNER JOIN [Product] p ON p.id = biss.ProductId
  INNER JOIN [Customer] c ON c.Id = biss.CustomerId




Now i am working for same I'll update soon here only
8 years ago
The first work item is finished. Please see changeset 22b9082151af
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.