30 lines
731 B
PHP
30 lines
731 B
PHP
<?php
|
|
/**
|
|
* SaaSMall商城系统 - 团队十年电商经验汇集巨献!
|
|
* =========================================================
|
|
* Copy right 2019-2029 成都SAAS云科技有限公司, 保留所有权利。
|
|
* ----------------------------------------------
|
|
* 官方网址: https://www.gobuysaas.com
|
|
|
|
* =========================================================
|
|
*/
|
|
|
|
namespace addon\store\event;
|
|
|
|
use addon\store\model\Settlement;
|
|
use Carbon\Carbon;
|
|
|
|
/**
|
|
* 门店结算
|
|
*/
|
|
class StoreWithdrawPeriodCalc
|
|
{
|
|
public function handle($params)
|
|
{
|
|
$model = new Settlement();
|
|
$time = Carbon::today()->timestamp;
|
|
$res = $model->settlement($params['relate_id'], $time);
|
|
|
|
return $res;
|
|
}
|
|
} |