Skip to content

Commit

Permalink
Fixed an issue when loading pickup points in admin area
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreiMaz committed Aug 22, 2016
1 parent 9ae006c commit 1f44cbe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public ActionResult List(DataSourceRequest command)
if (!_permissionService.Authorize(StandardPermissionProvider.ManageShippingSettings))
return Content("Access denied");

var model = _storePickupPointService.GetAllStorePickupPoints(command.Page - 1, command.PageSize).Select(x =>
var model = _storePickupPointService.GetAllStorePickupPoints(0, command.Page - 1, command.PageSize).Select(x =>
{
var store = _storeService.GetStoreById(x.StoreId);
return new StorePickupPointModel
Expand Down

0 comments on commit 1f44cbe

Please sign in to comment.