68 lines
2.0 KiB
PHP
68 lines
2.0 KiB
PHP
<?php
|
|
|
|
namespace app\admin\lists;
|
|
|
|
use app\common\lists\ListsSearchInterface;
|
|
use app\common\model\beforehand_order\BeforehandOrder;
|
|
use app\common\model\finance\AccountsReceivable;
|
|
use app\common\model\finance\AccountsReceivableInfo;
|
|
use app\common\model\system_store\SystemStore;
|
|
|
|
/**
|
|
* AccountsReceivableInfoLists
|
|
* Class AccountsReceivableInfoLists
|
|
* @package app\admin\lists
|
|
*/
|
|
class AccountsReceivableInfoLists extends BaseAdminDataLists implements ListsSearchInterface
|
|
{
|
|
|
|
public function setSearch(): array
|
|
{
|
|
return [
|
|
'=' => ['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();
|
|
}
|
|
|
|
} |