分销订单-佣金列表

pull/1/head
674780036@qq.com 12 months ago
parent 6dcd77de8e
commit 82ea25f1fe
  1. 39
      app/api/controller/dealer/Capital.php
  2. 21
      app/api/model/dealer/Capital.php

@ -0,0 +1,39 @@
<?php
// +----------------------------------------------------------------------
// | 萤火商城系统 [ 致力于通过产品和服务,帮助商家高效化开拓市场 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2017~2023 https://www.yiovo.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed 这不是一个自由软件,不允许对程序代码以任何形式任何目的的再发行
// +----------------------------------------------------------------------
// | Author: 萤火科技 <admin@yiovo.com>
// +----------------------------------------------------------------------
declare (strict_types=1);
namespace app\api\controller\dealer;
use think\response\Json;
use app\api\controller\Controller;
use app\api\model\dealer\Capital as CapitalModel;
/**
* 分销商佣金
* Class Order
* @package app\api\controller\user\dealer
*/
class Capital extends Controller
{
/**
* 分销商佣金列表
* @return Json
* @throws \cores\exception\BaseException
* @throws \think\db\exception\DbException
*/
public function list(): Json
{
// 分销商订单列表
$model = new CapitalModel;
$list = $model->getList($this->request->param(),$this->request->storeId());
return $this->renderSuccess(compact('list'));
}
}

@ -13,6 +13,7 @@ declare (strict_types=1);
namespace app\api\model\dealer;
use app\common\model\dealer\Capital as CapitalModel;
use app\api\service\User as UserService;
/**
* 分销商资金明细模型
@ -29,4 +30,24 @@ class Capital extends CapitalModel
'create_time',
'update_time',
];
/**
* 获取分销商佣金列表
* @param array $param
* @return \think\Paginator
* @throws \cores\exception\BaseException
* @throws \think\db\exception\DbException
*/
public function getList(array $param = [],int $storeId): \think\Paginator
{
// 当前用户ID
$userId = UserService::getCurrentLoginUserId();
// 获取分销商佣金列表
$list = $this->getNewQuery()
->where('user_id',$userId)
->where('store_id',$storeId)
->order(['create_time' => 'desc'])
->paginate(15);
return $list;
}
}
Loading…
Cancel
Save