StoreWithdrawPeriodCalc.php 730 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * Niushop商城系统 - 团队十年电商经验汇集巨献!
  4. * =========================================================
  5. * Copy right 2019-2029 杭州牛之云科技有限公司, 保留所有权利。
  6. * ----------------------------------------------
  7. * 官方网址: https://www.niushop.com
  8. * =========================================================
  9. */
  10. namespace addon\store\event;
  11. use addon\store\model\Settlement;
  12. use Carbon\Carbon;
  13. /**
  14. * 门店结算
  15. */
  16. class StoreWithdrawPeriodCalc
  17. {
  18. public function handle($params)
  19. {
  20. $model = new Settlement();
  21. $time = Carbon::today()->timestamp;
  22. $res = $model->settlement($params['relate_id'], $time);
  23. return $res;
  24. }
  25. }