?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/schtroumpf.fr/modules/ps_eventbus/src/Decorator/



?? Go up: /home/webdevt/www/schtroumpf.fr/modules/ps_eventbus/src

?? Viewing: StockDecorator.php

<?php

namespace PrestaShop\Module\PsEventbus\Decorator;

use PrestaShop\Module\PsEventbus\Repository\ConfigurationRepository;

class StockDecorator
{
    /**
     * @var ConfigurationRepository
     */
    private $configurationRepository;
    /**
     * @var string
     */
    private $timezone;

    public function __construct(
        ConfigurationRepository $configurationRepository
    ) {
        $this->configurationRepository = $configurationRepository;
        $this->timezone = (string) $this->configurationRepository->get('PS_TIMEZONE');
    }

    /**
     * @param array $stocks
     *
     * @return void
     */
    public function decorateStocks(array &$stocks)
    {
        foreach ($stocks as &$stock) {
            $this->castStockPropertyValues($stock);
        }
    }

    /**
     * @param array $stock
     *
     * @return void
     */
    private function castStockPropertyValues(array &$stock)
    {
        $stock['id_stock_available'] = (int) $stock['id_stock_available'];
        $stock['id_product'] = (int) $stock['id_product'];
        $stock['id_product_attribute'] = (int) $stock['id_product_attribute'];
        $stock['id_shop'] = (int) $stock['id_shop'];
        $stock['id_shop_group'] = (int) $stock['id_shop_group'];
        $stock['quantity'] = (int) $stock['quantity'];
        $stock['physical_quantity'] = (int) $stock['physical_quantity'];
        $stock['reserved_quantity'] = (int) $stock['reserved_quantity'];
        $stock['depends_on_stock'] = (bool) $stock['depends_on_stock'];
        $stock['out_of_stock'] = (bool) $stock['out_of_stock'];
        $stock['created_at'] = (new \DateTime($stock['created_at'], new \DateTimeZone($this->timezone)))->format('Y-m-d\TH:i:sO');
        $stock['updated_at'] = (new \DateTime($stock['updated_at'], new \DateTimeZone($this->timezone)))->format('Y-m-d\TH:i:sO');
    }

    /**
     * @param array $stockMvts
     *
     * @return void
     */
    public function decorateStockMvts(array &$stockMvts)
    {
        foreach ($stockMvts as &$stockMvt) {
            $this->castStockMvtPropertyValues($stockMvt);
        }
    }

    /**
     * @param array $stockMvt
     *
     * @return void
     */
    private function castStockMvtPropertyValues(array &$stockMvt)
    {
        $date = (new \DateTime($stockMvt['date_add'], new \DateTimeZone($this->timezone)))->format('Y-m-d\TH:i:sO');

        $stockMvt['id_stock_mvt'] = (int) $stockMvt['id_stock_mvt'];
        $stockMvt['id_stock'] = (int) $stockMvt['id_stock'];
        $stockMvt['id_order'] = (int) $stockMvt['id_order'];
        $stockMvt['id_supply_order'] = (int) $stockMvt['id_supply_order'];
        $stockMvt['id_stock_mvt_reason'] = (int) $stockMvt['id_stock_mvt_reason'];
        $stockMvt['id_lang'] = (int) $stockMvt['id_lang'];
        $stockMvt['id_employee'] = (int) $stockMvt['id_employee'];
        $stockMvt['physical_quantity'] = (int) $stockMvt['physical_quantity'];
        $stockMvt['date_add'] = $date;
        $stockMvt['sign'] = (int) $stockMvt['sign'];
        $stockMvt['price_te'] = (float) $stockMvt['price_te'];
        $stockMvt['last_wa'] = (float) $stockMvt['last_wa'];
        $stockMvt['current_wa'] = (float) $stockMvt['current_wa'];
        $stockMvt['referer'] = (int) $stockMvt['referer'];
        $stockMvt['deleted'] = (bool) $stockMvt['deleted'];
        $stockMvt['created_at'] = $date;
        $stockMvt['updated_at'] = $date;
    }
}


??

??