/**
  * Sales entity submit.
  *
  * @return void
  */
 protected function salesEntitySubmit()
 {
     $this->orderSalesEntityNew->getFormBlock()->submit();
 }
 /**
  * Get invoice new product prices.
  *
  * @param InjectableFixture $product
  * @return array
  */
 public function getInvoiceNewPrices(InjectableFixture $product)
 {
     $productBlock = $this->orderInvoiceNew->getFormBlock()->getItemsBlock()->getItemProductBlock($product);
     return $this->getTypePrices($productBlock);
 }