public function StockServiceManager::returnStock in Commerce Stock 8
Stock returns.
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.
int $order_id: The order ID.
int $user_id: The user ID.
string $message: The message.
Overrides StockTransactionsInterface::returnStock
File
- src/
StockServiceManager.php, line 196
Class
- StockServiceManager
- The stock service manager.
Namespace
Drupal\commerce_stockCode
public function returnStock(PurchasableEntityInterface $entity, $location_id, $zone, $quantity, $unit_cost, $currency_code, $order_id, $user_id, $message = NULL) {
$transaction_type_id = StockTransactionsInterface::STOCK_RETURN;
$metadata = [
'related_oid' => $order_id,
'related_uid' => $user_id,
];
if (!is_null($message)) {
$metadata['data']['message'] = $message;
}
// Make sure quantity is positive.
$quantity = abs($quantity);
$stock_updater = $this
->getService($entity)
->getStockUpdater();
$stock_updater
->createTransaction($entity, $location_id, $zone, $quantity, $unit_cost, $currency_code, $transaction_type_id, $metadata);
}