...
|
...
|
@@ -422,7 +422,7 @@ export function getProductList(reload=false) { |
|
|
|
|
|
let {app, productListForShop} = getState();
|
|
|
let {productList, filterFactors} = productListForShop;
|
|
|
let {brand_id,shop_id} = app;
|
|
|
let {brand_id,shop_id,originParams} = app;
|
|
|
|
|
|
if (reload) {
|
|
|
|
...
|
...
|
@@ -453,7 +453,7 @@ export function getProductList(reload=false) { |
|
|
}
|
|
|
|
|
|
dispatch(productListRequest());
|
|
|
return new ProductListForShopService(app.host).productList(brandId,shop_id,channel, page, pageSize,order,allFilterFactors)
|
|
|
return new ProductListForShopService(app.host).productList(brandId,shop_id,channel, page, pageSize,order,allFilterFactors,originParams)
|
|
|
.then(json => {
|
|
|
let payload = Utils.parseProductList(json);
|
|
|
payload.endReached = payload.currentPage == payload.pageCount;
|
...
|
...
|
|