29 lines
761 B
PHP
29 lines
761 B
PHP
<?php
|
|
/**
|
|
* SaaSMall商城系统 - 团队十年电商经验汇集巨献!
|
|
* =========================================================
|
|
* Copy right 2019-2029 成都SAAS云科技有限公司, 保留所有权利。
|
|
* ----------------------------------------------
|
|
* 官方网址: https://www.gobuysaas.com
|
|
* =========================================================
|
|
*/
|
|
|
|
namespace addon\store\event;
|
|
|
|
use addon\store\model\StoreGoods;
|
|
|
|
/**
|
|
* 商品编辑之后
|
|
*/
|
|
class GoodsEdit
|
|
{
|
|
public function handle($data)
|
|
{
|
|
if (isset($data['site_id']) && isset($data['goods_id']) && isset($data['sale_store'])) {
|
|
$goods = new StoreGoods();
|
|
return $goods->StoreGoodsEditAfter($data);
|
|
}
|
|
return success();
|
|
}
|
|
}
|