['accounts_receivable_id'], ]; } /** * @notes 获取列表 * @return array * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException */ public function lists(): array { $query = AccountsReceivableInfo::where($this->searchWhere); $list = $query ->limit($this->limitOffset, $this->limitLength) ->order(['id' => 'desc']) ->select() ->toArray(); $accountReceivable = AccountsReceivable::field('id,store_id,nickname')->where('id', $this->params['accounts_receivable_id'])->findOrEmpty()->toArray(); $store = SystemStore::where('id', $accountReceivable['store_id'])->value('name'); $payTypeMap = [ 1 => '现金', 2 => '微信支付', 3 => '支付宝支付', 4 => '对公账号', 5 => '其他' ]; foreach ($list as &$item) { $item['store_name'] = $store; $item['pay_type_name'] = $payTypeMap[$item['pay_type']]; $item['nickname'] = $accountReceivable['nickname']; } return $list; } /** * @notes 获取数量 * @return int */ public function count(): int { $query = AccountsReceivableInfo::where($this->searchWhere); return $query->count(); } }