| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229 |
- <?php
- namespace backendApi\modules\v1\models\lists\bonus;
- use common\helpers\Cache;
- use common\helpers\user\Info;
- use common\models\PerfMonth;
- use common\models\User as modelUser;
- use common\libs\dataList\column\Price;
- use common\libs\dataList\DataListInterface;
- use common\libs\dataList\column\DateTime;
- use common\models\UserInfo;
- use Yii;
- class PerfMonthList extends \common\libs\dataList\DataList implements DataListInterface
- {
- /**
- * 列表名称
- * @return string
- */
- public function getListName(){
- return '月业绩列表';
- }
- /**
- * 列表筛选到的数据
- * @throws \yii\base\Exception
- */
- public function dataHandle()
- {
- $data = PerfMonth::lists($this->condition, $this->params, [
- 'select'=>'PM.*, U.USER_NAME, U.REAL_NAME,RU.USER_NAME REC_USER_NAME,RU.REAL_NAME REC_REAL_NAME,',
- 'from' => PerfMonth::tableName().' AS PM',
- 'join' => [
- ['LEFT JOIN', modelUser::tableName() . ' AS U', 'PM.USER_ID=U.ID'],
- ['LEFT JOIN', UserInfo::tableName() . ' AS UI', 'PM.USER_ID=UI.USER_ID'],
- ['LEFT JOIN', modelUser::tableName() . ' AS RU', 'UI.REC_UID=RU.ID'],
- ],
- 'orderBy' => 'PM.CREATED_AT DESC, PM.ID DESC',
- 'page' => $this->page,
- 'pageSize' => $this->pageSize,
- ]);
- if ($data['list']) {
- foreach ($data['list'] as $key => $value) {
- $data['list'][$key]['LAST_DEC_LV_NAME'] = Cache::getDecLevelConfig()[$value['LAST_DEC_LV']]['LEVEL_NAME'] ?? '';
- $data['list'][$key]['LAST_EMP_LV_NAME'] = Cache::getEmpLevelConfig()[$value['LAST_EMP_LV']]['LEVEL_NAME'] ?? '';
- }
- }
- $this->listData = $data;
- }
- /**
- * 要展示和导出的所有字段
- * @return array
- */
- public function getColumn(){
- if(!$this->columns){
- $this->columns = [
- 'CALC_MONTH' => [
- 'header' => '结算月',
- 'headerOther' => [
- 'width' => '100',
- ],
- ],
- 'USER_NAME' => [
- 'header' => '会员编号',
- 'headerOther' => [
- 'width' => '110',
- ],
- ],
- 'REAL_NAME' => [
- 'header' => '会员姓名',
- 'headerOther' => [
- 'width' => '150',
- ],
- ],
- 'REC_USER_NAME' => [
- 'header' => '推荐人编号',
- 'headerOther' => [
- 'width' => '110',
- ],
- ],
- 'REC_REAL_NAME' => [
- 'header' => '推荐人姓名',
- 'headerOther' => [
- 'width' => '150',
- ],
- ],
- 'LAST_DEC_LV_NAME' => [
- 'header' => '结算时会员级别',
- 'headerOther' => [
- 'width' => '150',
- ],
- ],
- 'LAST_EMP_LV_NAME' => [
- 'header' => '结算时会员聘级',
- 'headerOther' => [
- 'width' => '150',
- ],
- ],
- 'PV_PCS' => [
- 'header' => '个人业绩',
- 'headerOther' => [
- 'width' => '150',
- ],
- 'value' => function($row) {
- return (new Price([
- 'value' => $row['PV_PCS'],
- ]))->result();
- },
- ],
- 'VIP_PV_1L_ZC' => [
- 'header' => '一市场新增报单业绩',
- 'headerOther' => [
- 'width' => '150',
- ],
- 'value' => function($row) {
- return (new Price([
- 'value' => $row['VIP_PV_1L_ZC'],
- ]))->result();
- },
- ],
- 'VIP_PV_2L_ZC' => [
- 'header' => '二市场新增报单业绩',
- 'headerOther' => [
- 'width' => '150',
- ],
- 'value' => function($row) {
- return (new Price([
- 'value' => $row['VIP_PV_2L_ZC'],
- ]))->result();
- },
- ],
- 'VIP_PV_3L_ZC' => [
- 'header' => '三市场新增报单业绩',
- 'headerOther' => [
- 'width' => '150',
- ],
- 'value' => function($row) {
- return (new Price([
- 'value' => $row['VIP_PV_3L_ZC'],
- ]))->result();
- },
- ],
- 'VIP_SURPLUS_1L_ZC' => [
- 'header' => '一市场月剩余报单业绩',
- 'headerOther' => [
- 'width' => '150',
- ],
- 'value' => function($row) {
- return (new Price([
- 'value' => $row['VIP_SURPLUS_1L_ZC'],
- ]))->result();
- },
- ],
- 'VIP_SURPLUS_2L_ZC' => [
- 'header' => '二市场月剩余报单业绩',
- 'headerOther' => [
- 'width' => '150',
- ],
- 'value' => function($row) {
- return (new Price([
- 'value' => $row['VIP_SURPLUS_2L_ZC'],
- ]))->result();
- },
- ],
- 'VIP_SURPLUS_3L_ZC' => [
- 'header' => '三市场月剩余报单业绩',
- 'headerOther' => [
- 'width' => '150',
- ],
- 'value' => function($row) {
- return (new Price([
- 'value' => $row['VIP_SURPLUS_3L_ZC'],
- ]))->result();
- },
- ],
- 'PV_PSS' => [
- 'header' => '月新增团队业绩',
- 'headerOther' => [
- 'width' => '150',
- ],
- 'value' => function($row) {
- return (new Price([
- 'value' => $row['PV_PSS'],
- ]))->result();
- },
- ],
- 'PV_PSS_TOTAL' => [
- 'header' => '月累计团队业绩',
- 'headerOther' => [
- 'width' => '150',
- ],
- 'value' => function($row) {
- return (new Price([
- 'value' => $row['PV_PSS_TOTAL'],
- ]))->result();
- },
- ],
- 'CREATED_AT' => [
- 'header' => '创建时间',
- 'value' => function($row) {
- return (new DateTime([
- 'value' => $row['CREATED_AT'],
- ]))->result();
- },
- 'headerOther' => ['width' => '170'],
- ],
- ];
- }
- return $this->columns;
- }
- /**
- * 前台用于筛选的类型集合
- * @return mixed
- */
- public function getFilterTypes()
- {
- if(!$this->filterTypes){
- $this->filterTypes = [
- 'CALC_MONTH'=> ['isUserTable'=> false, 'name'=> '结算月'],
- 'USER_NAME'=> ['isUserTable'=> false, 'name'=> '会员编号'],
- 'REC_USER_NAME'=> ['isUserTable'=> false, 'name'=> '推荐人编号'],
- 'CREATED_AT'=> ['isUserTable'=> false, 'name'=> '创建时间', 'other'=> 'date'],
- ];
- }
- return $this->filterTypes;
- }
- }
|