1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?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;
    }
 
}