PATH:
home
/
lab2454c
/
vaultchip.com
/
platform
/
plugins
/
ecommerce
/
src
/
Services
/
Products
<?php namespace Botble\Ecommerce\Services\Products; use Botble\Ecommerce\Models\Product; use Botble\Ecommerce\Repositories\Eloquent\ProductRepository; use Botble\Ecommerce\Repositories\Interfaces\ProductInterface; class UpdateDefaultProductService { /** * @var ProductRepository */ protected $productRepository; /** * UpdateDefaultProductService constructor. * @param ProductInterface $productRepository */ public function __construct(ProductInterface $productRepository) { $this->productRepository = $productRepository; } /** * @param Product $product * @return mixed */ public function execute(Product $product) { $parent = $product->original_product; $data = [ 'sku', 'quantity', 'allow_checkout_when_out_of_stock', 'with_storehouse_management', 'stock_status', 'sale_type', 'price', 'sale_price', 'start_date', 'end_date', 'length', 'wide', 'height', 'weight', ]; foreach ($data as $item) { $parent->{$item} = $product->{$item}; } if ($parent->sale_price > $parent->price) { $parent->sale_price = null; } if ($parent->sale_type == 0) { $parent->start_date = null; $parent->end_date = null; } $parent->save(); return $parent; } }
[-] CreateProductVariationsService.php
[edit]
[-] StoreProductService.php
[edit]
[+]
..
[-] GetProductService.php
[edit]
[-] StoreAttributesOfProductService.php
[edit]
[-] UpdateDefaultProductService.php
[edit]