Open alexanderfc opened 7 years ago
My guess is that products_search_view
is queried with a payload that doesn't filter out archived products.
Payload currently used for querying products_search_view
:
{
"query": {
"bool": {
"should": [],
"minimum_number_should_match": 1
}
}
}
Payload used at /admin/products
for querying products in All
tab:
{
"query": {
"bool": {
"filter": [{
"missing": {
"field": "archivedAt"
}
}]
}
}
}
https://github.com/FoxComm/highlander/pull/2203
Your right @alexanderfc
Preconditions:
Steps:
/promotions/new
Percent off single item
Actual result: product is there and can be selected. Expected result: product isn't displayed in the list of products.
Video: https://www.dropbox.com/s/em1jxos78dfek5j/highlander_2162.mp4?dl=0