You are here

public function StockTransactionsInterface::receiveStock in Commerce Stock 8

Receive stock.

Parameters

\Drupal\commerce\PurchasableEntityInterface $entity: The purchasable entity (most likely a product variation entity).

int $location_id: The location ID.

string $zone: The zone.

float $quantity: The quantity.

float $unit_cost: The unit cost.

string $currency_code: The currency code.

string $message: The message.

1 method overrides StockTransactionsInterface::receiveStock()
StockServiceManager::receiveStock in src/StockServiceManager.php
Receive stock.

File

src/StockTransactionsInterface.php, line 108

Class

StockTransactionsInterface
Defines a common interface for creating stock transactions.

Namespace

Drupal\commerce_stock

Code

public function receiveStock(PurchasableEntityInterface $entity, $location_id, $zone, $quantity, $unit_cost, $currency_code, $message = NULL);