/**
  * Prepare filter for product grid.
  *
  * @return array
  */
 protected function prepareFilter()
 {
     $filter = ['type' => $this->getProductType(), 'sku' => $this->product->getSku(), 'status' => $this->product->getStatus()];
     return $filter;
 }