<?php
|
|
namespace app\common\service\product\factory;
|
|
use app\common\enum\product\DeductStockTypeEnum;
|
use app\common\model\branch\ActivityProductPrice as ProductPriceModel;
|
|
/**
|
* 商品来源-普通商品扩展类
|
*/
|
class BranchActivityProductService extends ProductService
|
{
|
/**
|
* 更新商品库存 (针对下单减库存的商品)
|
*/
|
public function updateProductStock($productList)
|
{
|
return true;
|
}
|
|
public function updateStockSales($productList)
|
{
|
|
return true;
|
}
|
|
|
public function backProductStock($productList, $isPayOrder = false)
|
{
|
return true;
|
}
|
|
}
|