123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <?php
- declare (strict_types=1);
- namespace app\dao\user;
- use app\dao\BaseDao;
- use app\model\order\StoreOrder;
- use app\model\user\User;
- class UserStoreOrderDao extends BaseDao
- {
-
- protected $alias = '';
-
- protected $join_alis = '';
-
- protected function setModel(): string
- {
- return User::class;
- }
- public function joinModel(): string
- {
- return StoreOrder::class;
- }
-
- public function getModel(string $table = '', string $alias = 'u', string $join_alias = 'p', $join = 'left')
- {
- $this->alias = $alias;
- $this->join_alis = $join_alias;
- if (!$table) {
-
- $storeOrder = app()->make($this->joinModel());
- $table = $storeOrder->getName();
- }
- return parent::getModel()->join($table . ' ' . $join_alias, $alias . '.uid = ' . $join_alias . '.uid', $join)->alias($alias);
- }
-
- public function getUserSpreadCountList(array $where, string $field, string $order_by, int $page, int $limit)
- {
- $table = app()->make($this->joinModel())->getModel()->where('o.pid', 'IN', [0, -1])->group('o.uid')->field(['SUM(o.pay_price) as numberCount', 'count(o.id) as orderCount', 'o.uid', 'o.order_id'])
- ->where('o.is_del', 0)->where('o.is_system_del', 0)->where('o.paid', 1)->where('o.refund_status', 'IN', [0, 3])->alias('o')->fetchSql(true)->select();
- return $this->getModel('(' . $table . ')')->where($where)->field($field)->order($order_by)->page($page, $limit)->select()->toArray();
- }
- }
|