| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726 |
- <?php
- // +----------------------------------------------------------------------
- // | Description: 回款
- // +----------------------------------------------------------------------
- // | Author: Michael_xu | gengxiaoxu@5kcrm.com
- // +----------------------------------------------------------------------
- namespace app\crm\model;
-
- use think\Db;
- use app\crm\model\Contract as ContractModel;
- use app\admin\model\Common;
- use app\admin\model\Message;
- use think\Request;
- use think\Validate;
-
- class Receivables extends Common
- {
- /**
- * 为了数据库的整洁,同时又不影响Model和Controller的名称
- * 我们约定每个模块的数据表都加上相同的前缀,比如CRM模块用crm作为数据表前缀
- */
- protected $name = 'crm_receivables';
- protected $createTime = 'create_time';
- protected $updateTime = 'update_time';
- protected $autoWriteTimestamp = true;
- private $statusArr = ['0'=>'待审核','1'=>'审核中','2'=>'审核通过','3'=>'已拒绝','4'=>'已撤回'];
-
- /**
- * [getDataList 回款list]
- *
- * @param $request
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public function getDataList($request)
- {
- $userModel = new \app\admin\model\User();
- $structureModel = new \app\admin\model\Structure();
- $fieldModel = new \app\admin\model\Field();
- $search = $request['search'];
- $user_id = $request['user_id'];
- $scene_id = (int)$request['scene_id'];
- $order_field = $request['order_field'];
- $order_type = $request['order_type'];
- $getCount = $request['getCount'];
- $receivablesIdArray = $request['receivablesIdArray']; // 待办事项提醒参数
- unset($request['scene_id']);
- unset($request['search']);
- unset($request['user_id']);
- unset($request['order_field']);
- unset($request['order_type']);
- unset($request['getCount']);
- unset($request['receivablesIdArray']);
-
- $request = $this->fmtRequest( $request );
- $requestMap = $request['map'] ? : [];
-
- $sceneModel = new \app\admin\model\Scene();
- # getCount是代办事项传来的参数,代办事项不需要使用场景
- $sceneMap = [];
- if (empty($getCount)) {
- if ($scene_id) {
- //自定义场景
- $sceneMap = $sceneModel->getDataById($scene_id, $user_id, 'receivables') ? : [];
- } else {
- //默认场景
- $sceneMap = $sceneModel->getDefaultData('crm_receivables', $user_id) ? : [];
- }
- }
- $searchWhere = [];
- if (!empty($search) || $search == '0') {
- //普通筛选
- $searchWhere = function ($query) use ($search) {
- $query->where(function ($query) use ($search){
- $query->whereLike('customer.name', '%' . $search . '%');
- })->whereOr(function ($query) use ($search) {
- $query->whereLike('receivables.number', '%' . $search . '%');
- });
- };
- // if (db('crm_customer')->whereLike('name', '%' . $search . '%')->value('customer_id')) {
- // $sceneMap['customer_name'] = ['condition' => 'contains', 'value' => $search, 'form_type' => 'text', 'name' => '客户名称'];
- // } else {
- // $sceneMap['number'] = ['condition' => 'contains','value' => $search,'form_type' => 'text','name' => '回款编号'];
- // }
- }
- //优先级:普通筛选>高级筛选>场景
- $map = $requestMap ? array_merge($sceneMap, $requestMap) : $sceneMap;
- //高级筛选
- $map = where_arr($map, 'crm', 'receivables', 'index');
-
- //权限
- $authMap = [];
- $auth_user_ids = $userModel->getUserByPer('crm', 'receivables', 'index');
- if (isset($map['receivables.owner_user_id']) && $map['receivables.owner_user_id'][0] != 'like') {
- if (!is_array($map['receivables.owner_user_id'][1])) {
- $map['receivables.owner_user_id'][1] = [$map['receivables.owner_user_id'][1]];
- }
- if (in_array($map['receivables.owner_user_id'][0], ['neq', 'notin'])) {
- $auth_user_ids = array_diff($auth_user_ids, $map['receivables.owner_user_id'][1]) ? : []; //取差集
- } else {
- $auth_user_ids = array_intersect($map['receivables.owner_user_id'][1], $auth_user_ids) ? : []; //取交集
- }
- unset($map['receivables.owner_user_id']);
- }
- $auth_user_ids = array_merge(array_unique(array_filter($auth_user_ids))) ? : ['-1'];
- //负责人、相关团队
- $authMap['receivables.owner_user_id'] = ['in',$auth_user_ids];
- //列表展示字段
- $indexField = $fieldModel->getIndexField('crm_receivables', $user_id, 1) ? : array('number');
- //人员类型
- $userField = $fieldModel->getFieldByFormType('crm_receivables', 'user');
- $structureField = $fieldModel->getFieldByFormType('crm_receivables', 'structure'); //部门类型
- $datetimeField = $fieldModel->getFieldByFormType('crm_receivables', 'datetime'); //日期时间类型
- # 处理人员和部门类型的排序报错问题(前端传来的是包含_name的别名字段)
- $temporaryField = str_replace('_name', '', $order_field);
- if (in_array($temporaryField, $userField) || in_array($temporaryField, $structureField)) {
- $order_field = $temporaryField;
- }
- //排序
- if ($order_type && $order_field) {
- $order = $fieldModel->getOrderByFormtype('crm_receivables','receivables',$order_field, $order_type);
- } else {
- $order = 'receivables.update_time desc';
- }
-
- # 待办事项查询参数
- $dealtWhere = [];
- if (!empty($receivablesIdArray)) $dealtWhere['receivables.receivables_id'] = ['in', $receivablesIdArray];
-
- $readAuthIds = $userModel->getUserByPer('crm', 'receivables', 'read');
- $updateAuthIds = $userModel->getUserByPer('crm', 'receivables', 'update');
- $deleteAuthIds = $userModel->getUserByPer('crm', 'receivables', 'delete');
- $dataCount = db('crm_receivables')
- ->alias('receivables')
- ->join('__CRM_CUSTOMER__ customer','receivables.customer_id = customer.customer_id','LEFT')
- ->join('__CRM_CONTRACT__ contract','receivables.contract_id = contract.contract_id','LEFT')
- ->where($searchWhere)->where($map)->where($authMap)->where($dealtWhere)->count('receivables_id');
- if (!empty($getCount) && $getCount == 1) {
- $data['dataCount'] = !empty($dataCount) ? $dataCount : 0;
- $data['extraData']['money'] = ['receivablesMoney' => $this->getReceivablesMoney($map, $authMap)];
- return $data;
- }
- foreach ($indexField AS $kk => $vv) {
- if ($vv == 'receivables.contract_num') unset($indexField[(int)$kk]);
- }
- $list = db('crm_receivables')
- ->alias('receivables')
- ->join('__CRM_CUSTOMER__ customer','receivables.customer_id = customer.customer_id','LEFT')
- ->join('__CRM_CONTRACT__ contract','receivables.contract_id = contract.contract_id','LEFT')
- ->where($searchWhere)
- ->where($map)
- ->where($authMap)
- ->where($dealtWhere)
- ->limit($request['offset'], $request['length'])
- ->field('receivables.*,customer.name as customer_name,contract.name as contract_name,contract.num as contract_num,contract.money as contract_money')
- ->orderRaw($order)
- ->select();
-
- foreach ($list as $k=>$v) {
- $list[$k]['create_user_id_info'] = $v['create_user_id'] ? $userModel->getUserById($v['create_user_id']) : [];
- $list[$k]['owner_user_id_info'] = $v['owner_user_id'] ? $userModel->getUserById($v['owner_user_id']) : [];
- $list[$k]['create_user_name'] = !empty($list[$k]['create_user_id_info']['realname']) ? $list[$k]['create_user_id_info']['realname'] : '';
- $list[$k]['owner_user_name'] = !empty($list[$k]['owner_user_id_info']['realname']) ? $list[$k]['owner_user_id_info']['realname'] : '';
- $list[$k]['customer_id_info']['customer_id'] = $v['customer_id'] ? : '';
- $list[$k]['customer_id_info']['name'] = $v['customer_name'] ? : '';
- $list[$k]['contract_id_info']['contract_id'] = $v['contract_id'] ? : '';
- $list[$k]['contract_id_info']['name'] = $v['contract_num'] ? : '';
- $list[$k]['contract_id_info']['money'] = $v['contract_money'] ? : '0.00';
- $list[$k]['contract_money'] = $v['contract_money'] ? : '0.00';
- foreach ($userField as $key => $val) {
- $usernameField = !empty($v[$val]) ? db('admin_user')->whereIn('id', stringToArray($v[$val]))->column('realname') : [];
- $list[$k][$val.'_name'] = implode($usernameField, ',');
- }
- foreach ($structureField as $key => $val) {
- $structureNameField = !empty($v[$val]) ? db('admin_structure')->whereIn('id', stringToArray($v[$val]))->column('name') : [];
- $list[$k][$val.'_name'] = implode($structureNameField, ',');
- }
- foreach ($datetimeField as $key => $val) {
- $list[$k][$val] = !empty($v[$val]) ? date('Y-m-d H:i:s', $v[$val]) : null;
- }
- $list[$k]['check_status_info'] = $this->statusArr[$v['check_status']];
- //期数
- $plan_num = db('crm_receivables_plan')->where(['plan_id' => $v['plan_id']])->value('num');
- $list[$k]['plan_id_info'] = $plan_num ? : '';
- //权限
- $permission = [];
- $is_read = 0;
- $is_update = 0;
- $is_delete = 0;
- if (in_array($v['owner_user_id'],$readAuthIds)) $is_read = 1;
- if (in_array($v['owner_user_id'],$updateAuthIds)) $is_update = 1;
- if (in_array($v['owner_user_id'],$deleteAuthIds)) $is_delete = 1;
- $permission['is_read'] = $is_read;
- $permission['is_update'] = $is_update;
- $permission['is_delete'] = $is_delete;
- $list[$k]['permission'] = $permission;
- # 日期
- $list[$k]['create_time'] = !empty($v['create_time']) ? date('Y-m-d H:i:s', $v['create_time']) : null;
- $list[$k]['update_time'] = !empty($v['update_time']) ? date('Y-m-d H:i:s', $v['update_time']) : null;
- }
- $data = [];
- $data['list'] = $list;
- $data['dataCount'] = $dataCount ? : 0;
- $data['extraData']['money'] = ['receivablesMoney' => $this->getReceivablesMoney($map, $authMap)];
-
- return $data;
- }
-
- /**
- * 获取回款总金额
- *
- * @param $map
- * @param $authMap
- * @return float|string
- */
- private function getReceivablesMoney($map, $authMap)
- {
- $money = db('crm_receivables')->alias('receivables')
- ->join('__CRM_CUSTOMER__ customer','receivables.customer_id = customer.customer_id','LEFT')
- ->join('__CRM_CONTRACT__ contract','receivables.contract_id = contract.contract_id','LEFT')
- ->where($map)->where($authMap)->where('receivables.check_status', 2)->sum('receivables.money');
-
- return !empty($money) ? sprintf("%.2f", $money) : 0.00;
- }
-
- /**
- * 创建回款信息
- * @author Michael_xu
- * @param
- * @return
- */
- public function createData($param)
- {
- if (!$param['customer_id']) {
- $this->error = '请先选择客户';
- return false;
- }
- // 仅允许审批通过,且未作废的合同添加回款
- if ($param['contract_id']) {
- $check_status = ContractModel::where(['contract_id' => $param['contract_id']])->value('check_status');
- if ($check_status == 6) {
- $this->error = '合同已作废';
- return false;
- } elseif ($check_status != 2) {
- $this->error = '合同未审核通过';
- return false;
- }
- } else {
- $this->error = '请先选择合同';
- return false;
- }
-
- $fieldModel = new \app\admin\model\Field();
- // 自动验证
- $validateArr = $fieldModel->validateField($this->name); //获取自定义字段验证规则
- $validate = new Validate($validateArr['rule'], $validateArr['message']);
-
- $result = $validate->check($param);
- if (!$result) {
- $this->error = $validate->getError();
- return false;
- }
-
- # 验证回款计划是否已经被关联
- if (!empty($param['plan_id']) && db('crm_receivables_plan')->where('plan_id', $param['plan_id'])->value('receivables_id')) {
- $this->error = '回款已经已经关联了其他回款,不能重复关联!';
- return false;
- }
-
- // 处理部门、员工、附件、多选类型字段
- $arrFieldAtt = $fieldModel->getArrayField('crm_receivables');
- foreach ($arrFieldAtt as $k=>$v) {
- $param[$v] = arrayToString($param[$v]);
- }
- // 处理日期(date)类型
- $dateField = $fieldModel->getFieldByFormType('crm_receivables', 'date');
- if (!empty($dateField)) {
- foreach ($param AS $key => $value) {
- if (in_array($key, $dateField) && empty($value)) $param[$key] = null;
- }
- }
-
- if ($this->data($param)->allowField(true)->save()) {
- //站内信
- $send_user_id = stringToArray($param['check_user_id']);
- if ($send_user_id && empty($param['check_status'])) {
- (new Message())->send(
- Message::RECEIVABLES_TO_DO,
- [
- 'title' => $param['number'],
- 'action_id' => $this->receivables_id
- ],
- $send_user_id
- );
- }
- $data = [];
- $data['receivables_id'] = $this->receivables_id;
-
- //修改记录
- updateActionLog($param['create_user_id'], 'crm_receivables', $this->receivables_id, '', '', '创建了回款');
- RecordActionLog($param['create_user_id'],'crm_receivables','save',$param['number'],'','','新增了回款'.$param['number']);
-
- # 添加活动记录
- Db::name('crm_activity')->insert([
- 'type' => 2,
- 'activity_type' => 7,
- 'activity_type_id' => $data['receivables_id'],
- 'content' => $param['number'],
- 'create_user_id' => $param['create_user_id'],
- 'update_time' => time(),
- 'create_time' => time(),
- 'customer_ids' => ',' . $param['customer_id'] . ',',
- 'contract_ids' => ',' . $param['contract_id'] . ','
- ]);
-
- # 创建待办事项的关联数据
- $checkUserIds = db('crm_receivables')->where('receivables_id', $data['receivables_id'])->value('check_user_id');
- $checkUserIdArray = stringToArray($checkUserIds);
- $dealtData = [];
- foreach ($checkUserIdArray AS $kk => $vv) {
- $dealtData[] = [
- 'types' => 'crm_receivables',
- 'types_id' => $data['receivables_id'],
- 'user_id' => $vv
- ];
- }
- if (!empty($dealtData)) db('crm_dealt_relation')->insertAll($dealtData);
-
- return $data;
- } else {
- $this->error = '添加失败';
- return false;
- }
- }
-
- /**
- * 根据对象ID 获取该年各个月回款情况
- * @param [year] [哪一年]
- * @param [owner_user_id] [哪个员工]
- * @param [start_time] [开始时间]
- * @param [end_time] [结束时间]
- */
- public function getDataByUserId($param)
- {
- if ($param['obj_type']) {
- if ($param['obj_type'] == 1) { //部门
- $userModel = new \app\admin\model\User();
- $str = $userModel->getSubUserByStr($param['obj_id'], 1) ? : ['-1'];
- $map['owner_user_id'] = array('in',$str);
- } else { //员工
- $map['owner_user_id'] = $param['obj_id'];
- }
- }
- //审核状态
- $start = date('Y-m-d',$param['start_time']);
- $stop = date('Y-m-d',$param['end_time']);
- $map['check_status'] = 2;
- $data = $this->where($map)->where(['return_time' => ['between',[$start,$stop]]])->sum('money');
- return $data;
- }
-
- /**
- * 编辑回款主表信息
- * @author Michael_xu
- * @param
- * @return
- */
- public function updateDataById($param, $receivables_id = '')
- {
- $userModel = new \app\admin\model\User();
- $dataInfo = db('crm_receivables')->where(['receivables_id' => $receivables_id])->find();
- if (!$dataInfo) {
- $this->error = '数据不存在或已删除';
- return false;
- }
- $param['receivables_id'] = $receivables_id;
- //过滤不能修改的字段
- $unUpdateField = ['create_user_id','is_deleted','delete_time','delete_user_id'];
- foreach ($unUpdateField as $v) {
- unset($param[$v]);
- }
-
- $fieldModel = new \app\admin\model\Field();
- // 自动验证
- // $validateArr = $fieldModel->validateField($this->name); //获取自定义字段验证规则
- $validateArr = $fieldModel->validateField($this->name, 0, 'update'); //获取自定义字段验证规则
- $validate = new Validate($validateArr['rule'], $validateArr['message']);
-
- $result = $validate->check($param);
- if (!$result) {
- $this->error = $validate->getError();
- return false;
- }
-
- // 处理部门、员工、附件、多选类型字段
- $arrFieldAtt = $fieldModel->getArrayField('crm_receivables');
- foreach ($arrFieldAtt as $k=>$v) {
- if (isset($param[$v])) $param[$v] = arrayToString($param[$v]);
- }
- // 处理日期(date)类型
- $dateField = $fieldModel->getFieldByFormType('crm_receivables', 'date');
- if (!empty($dateField)) {
- foreach ($param AS $key => $value) {
- if (in_array($key, $dateField) && empty($value)) $param[$key] = null;
- }
- }
-
- if ($this->update($param, ['receivables_id' => $receivables_id], true)) {
- //修改记录
- updateActionLog($param['user_id'], 'crm_receivables', $receivables_id, $dataInfo, $param);
- RecordActionLog($param['user_id'], 'crm_receivables', 'update',$dataInfo['number'], $dataInfo, $param);
- //站内信
- $send_user_id = stringToArray($param['check_user_id']);
- if ($send_user_id && empty($param['check_status'])) {
- (new Message())->send(
- Message::RECEIVABLES_TO_DO,
- [
- 'title' => $param['number'],
- 'action_id' => $receivables_id
- ],
- $send_user_id
- );
- }
-
- $data = [];
- $data['receivables_id'] = $receivables_id;
-
- # 删除待办事项的关联数据
- db('crm_dealt_relation')->where(['types' => ['eq', 'crm_receivables'], 'types_id' => ['eq', $data['receivables_id']]])->delete();
- # 创建待办事项的关联数据
- $checkUserIds = db('crm_receivables')->where('receivables_id', $data['receivables_id'])->value('check_user_id');
- $checkUserIdArray = stringToArray($checkUserIds);
- $dealtData = [];
- foreach ($checkUserIdArray AS $kk => $vv) {
- $dealtData[] = [
- 'types' => 'crm_receivables',
- 'types_id' => $data['receivables_id'],
- 'user_id' => $vv
- ];
- }
- if (!empty($dealtData)) db('crm_dealt_relation')->insertAll($dealtData);
-
- return $data;
- } else {
- $this->error = '编辑失败';
- return false;
- }
- }
-
- /**
- * 回款数据
- *
- * @param string $id
- * @return Common|array|bool|\PDOStatement|string|\think\Model|null
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public function getDataById($id = '', $userId = 0)
- {
- $map['receivables_id'] = $id;
- $dataInfo = db('crm_receivables')->where($map)->find();
- if (!$dataInfo) {
- $this->error = '暂无此数据';
- return false;
- }
- $userModel = new \app\admin\model\User();
- $dataInfo['create_user_id_info'] = isset($dataInfo['create_user_id']) ? $userModel->getUserById($dataInfo['create_user_id']) : [];
- $dataInfo['owner_user_id_info'] = isset($dataInfo['owner_user_id']) ? $userModel->getUserById($dataInfo['owner_user_id']) : [];
- $dataInfo['create_user_name'] = !empty($dataInfo['create_user_id_info']['realname']) ? $dataInfo['create_user_id_info']['realname'] : '';
- $dataInfo['owner_user_name'] = !empty($dataInfo['owner_user_id_info']['realname']) ? $dataInfo['owner_user_id_info']['realname'] : '';
- $dataInfo['customer_id_info'] = $dataInfo['customer_id'] ? db('crm_customer')->where(['customer_id' => $dataInfo['customer_id']])->field('customer_id,name')->find() : [];
- $dataInfo['contract_id_info'] = $dataInfo['contract_id'] ? db('crm_contract')->where(['contract_id' => $dataInfo['contract_id']])->field('contract_id,name,money')->find() : [];
- $dataInfo['receivables_id'] = $id;
- # 处理时间格式
- $fieldModel = new \app\admin\model\Field();
- $datetimeField = $fieldModel->getFieldByFormType('crm_receivables', 'datetime'); //日期时间类型
- foreach ($datetimeField as $key => $val) {
- $dataInfo[$val] = !empty($dataInfo[$val]) ? date('Y-m-d H:i:s', $dataInfo[$val]) : null;
- }
- $dataInfo['create_time'] = !empty($dataInfo['create_time']) ? date('Y-m-d H:i:s', $dataInfo['create_time']) : null;
- $dataInfo['update_time'] = !empty($dataInfo['update_time']) ? date('Y-m-d H:i:s', $dataInfo['update_time']) : null;
- // 字段授权
- if (!empty($userId)) {
- $grantData = getFieldGrantData($userId);
- $userLevel = isSuperAdministrators($userId);
- foreach ($dataInfo AS $key => $value) {
- if (!$userLevel && !empty($grantData['crm_receivables'])) {
- $status = getFieldGrantStatus($key, $grantData['crm_receivables']);
-
- # 查看权限
- if ($status['read'] == 0) unset($dataInfo[$key]);
- }
- }
- if (!$userLevel && !empty($grantData['crm_receivables'])) {
- # 客户名称
- $customerStatus = getFieldGrantStatus('customer_id', $grantData['crm_receivables']);
- if ($customerStatus['read'] == 0) {
- $dataInfo['customer_name'] = '';
- $dataInfo['customer_id_info'] = [];
- }
- # 合同金额
- $contractMoneyStatus = getFieldGrantStatus('contract_money', $grantData['crm_receivables']);
- if ($contractMoneyStatus['read'] == 0) $dataInfo['contract_id_info']['money'] = '';
- # 合同名称
- $contractMoneyStatus = getFieldGrantStatus('contract_money', $grantData['crm_receivables']);
- if ($contractMoneyStatus['read'] == 0) $dataInfo['contract_id_info']['money'] = '';
- }
- }
- return $dataInfo;
- }
-
- /**
- * 回款&&合同统计(列表)
- * @param
- * @return
- */
- public function getstatisticsData($request)
- {
- $userModel = new \app\admin\model\User();
- $structureModel = new \app\admin\model\Structure();
- $fieldModel = new \app\admin\model\Field();
- $contractModel = new \app\crm\model\Contract();
- $adminModel = new \app\admin\model\Admin();
- $perUserIds = $userModel->getUserByPer('bi', 'receivables', 'read'); //权限范围内userIds
- $whereData = $adminModel->getWhere($param, '', $perUserIds); //统计条件
- $userIds = $whereData['userIds'];
-
- if (!$request['year']) {
- $request['year'] = date('Y');
- }
- if ($request['month']) {
- $start = strtotime($request['year'].'-'.$request['month'].'-01');
- if ($request['month'] == '12') {
- $next_year = $request['year']+1;
- $end = strtotime($next_year.'-01-01');
- } else {
- $next_month = $request['month']+1;
- $end = strtotime($request['year'].'-'.$next_month.'-01');
- }
- } else {
- $next_year = $request['year']+1;
- $start = strtotime($request['year'].'-01-01');
- $end = strtotime($next_year.'-01-01');
- }
-
- $map['owner_user_id'] = ['in',$userIds];
- //$map['rec.check_status'] = 3;
- $map['create_time'] = array('between',array($start,$end));
- //合同有多个回款
- //根据时间查合同
- if( $request['type'] == '1'){
- $map_type['contract.owner_user_id'] = ['in',$userIds];
- $map_type['contract.create_time'] = array('between',array($start,$end));
-
- $userField = $fieldModel->getFieldByFormType('crm_contract', 'user');
- $structureField = $fieldModel->getFieldByFormType('crm_contract', 'structure'); //部门类型
-
- $list = Db::name('CrmContract')->alias('contract')
- ->join('__CRM_CUSTOMER__ customer','contract.customer_id = customer.customer_id','LEFT')
- ->join('__CRM_BUSINESS__ business','contract.contract_id = business.business_id','LEFT')
- ->join('__CRM_CONTACTS__ contacts','contract.contract_id = contacts.contacts_id','LEFT')
- ->field('contract.*,customer.name as customer_name,business.name as business_name,contacts.name as contacts_name')
- ->where($map_type)->select();
- if($list){
- foreach ($list as $k=>$v) {
- $list[$k]['create_user_id_info'] = isset($v['create_user_id']) ? $userModel->getUserById($v['create_user_id']) : [];
- $list[$k]['owner_user_id_info'] = isset($v['owner_user_id']) ? $userModel->getUserById($v['owner_user_id']) : [];
- foreach ($userField as $key => $val) {
- $list[$k][$val.'_info'] = isset($v[$val]) ? $userModel->getListByStr($v[$val]) : [];
- }
- foreach ($structureField as $key => $val) {
- $list[$k][$val.'_info'] = isset($v[$val]) ? $structureModel->getDataByStr($v[$val]) : [];
- }
- $list[$k]['business_id_info']['business_id'] = $v['business_id'];
- $list[$k]['business_id_info']['name'] = $v['business_name'];
- $list[$k]['customer_id_info']['customer_id'] = $v['customer_id'];
- $list[$k]['customer_id_info']['name'] = $v['customer_name'];
- $list[$k]['contacts_id_info']['customer_id'] = $v['contacts_id'];
- $list[$k]['contacts_id_info']['name'] = $v['contacts_name'];
- $list[$k]['check_status_info'] = $this->statusArr[$v['check_status']];
- }
- return $list;
- } else {
- return array();
- }
- } else { //回款
- $map_rec['receivables.owner_user_id'] = ['in',$userIds];
- //$map['rec.check_status'] = 3;
- $map_rec['receivables.create_time'] = array('between',array($start,$end));
- $map_rec['receivables.check_status'] = 2;
-
- $userField = $fieldModel->getFieldByFormType('crm_receivables', 'user');
- $structureField = $fieldModel->getFieldByFormType('crm_receivables', 'structure'); //部门类型
-
- $list = db('crm_receivables')
- ->alias('receivables')
- ->join('__CRM_CUSTOMER__ customer','receivables.customer_id = customer.customer_id','LEFT')
- ->join('__CRM_CONTRACT__ contract','receivables.contract_id = contract.contract_id','LEFT')
- ->where($map_rec)
- ->field('receivables.*,customer.name as customer_name,contract.name as contract_name,contract.num as contract_num,contract.money as contract_money')
- ->select();
- foreach ($list as $k=>$v) {
- $list[$k]['create_user_id_info'] = $v['create_user_id'] ? $userModel->getUserById($v['create_user_id']) : [];
- $list[$k]['owner_user_id_info'] = $v['owner_user_id'] ? $userModel->getUserById($v['owner_user_id']) : [];
- $list[$k]['customer_id_info']['customer_id'] = $v['customer_id'] ? : '';
- $list[$k]['customer_id_info']['name'] = $v['customer_name'] ? : '';
- $list[$k]['contract_id_info']['contract_id'] = $v['contract_id'] ? : '';
- $list[$k]['contract_id_info']['name'] = $v['contract_name'] ? : '';
- $list[$k]['contract_id_info']['money'] = $v['contract_money'] ? : '0.00';
- $list[$k]['contract_money'] = $v['contract_money'] ? : '0.00';
- foreach ($userField as $key => $val) {
- $list[$k][$val.'_info'] = isset($v[$val]) ? $userModel->getListByStr($v[$val]) : [];
- }
- foreach ($structureField as $key => $val) {
- $list[$k][$val.'_info'] = isset($v[$val]) ? $structureModel->getDataByStr($v[$val]) : [];
- }
- $list[$k]['check_status_info'] = $this->statusArr[$v['check_status']];
- }
- return $list;
- }
- }
-
- /**
- * [回款统计] 柱状图
- * @author Michael_xu
- * @param request [查询条件]
- * @param
- * @return [array]
- */
- public function getStatistics($request)
- {
- $userModel = new \app\admin\model\User();
- $userIds = $request['userIds'];
- $charMonthArr = []; //按照月份
- $charQuarterArr = []; //按照季度
- $quarter = 0;
- $contractMoneyTotal = '';
- $receivablesMoneyTotal = '';
- //按照月份
- for ($i = 1; $i < 13; $i++) {
- $contractMoney = '0.00';
- $receivablesMoney = '0.00';
- $conQuarterMoney = '0.00';
- $reQuarterMoney = '0.00';
- $start_time = strtotime($request['year'].'-'.$i.'-01');
- $next_i = $i+1;
- $end_time = strtotime($request['year'].'-'.$next_i.'-01')-1;
- if ($i == 12) {
- $next_year = $request['year']+1;
- $end_time = strtotime($next_year.'-01-01')-1;
- }
- $where_receivables = [];
- $where_contract = [];
- $where_contract['owner_user_id'] = ['in',$userIds];
- $where_receivables['owner_user_id'] = ['in',$userIds];
- $where_contract['create_time'] = array('between',array($start_time,$end_time));
- $where_receivables['return_time'] = array('between',array( date('Y-m-d',$start_time),date('Y-m-d',$end_time)));
- $where_receivables['owner_user_id'] = ['in',$userIds];
- $where_receivables['check_status'] = $where_contract['check_status'] = 2; //审核通过
- $contractMoney = db('crm_contract')->where($where_contract)->sum('money');
- $receivablesMoney = db('crm_receivables')->where($where_receivables)->sum('money');
-
- $conQuarterMoney += $charMonthArr[$i]['contractMoney'] = $contractMoney;
- $reQuarterMoney += $charMonthArr[$i]['receivablesMoney'] = $receivablesMoney;
- if (in_array($i, array('3','4','6','9','12'))) {
- //季度
- $quarter++;
- $charQuarterArr[$quarter]['conQuarterMoney'] = $conQuarterMoney;
- $charQuarterArr[$quarter]['reQuarterMoney'] = $reQuarterMoney;
- $conQuarterMoney = '0.00';
- $reQuarterMoney = '0.00';
- }
- $contractMoneyTotal += $contractMoney;
- $receivablesMoneyTotal += $receivablesMoney;
- }
- $data['charMonthArr'] = $charMonthArr; //月度统计
- $data['charQuarterArr'] = $charQuarterArr; //季度统计
- $data['contractMoneyTotal'] = $contractMoneyTotal ? : 0.00;
- $data['receivablesMoneyTotal'] = $receivablesMoneyTotal ? : 0.00;
- return $data;
- }
-
- /**
- * [合同回款金额]
- * @author Michael_xu
- * @param contract_id 合同ID
- * @param
- * @return
- */
- public function getMoneyByContractId($contract_id)
- {
- $doneMoney = $this->where(['contract_id' => $contract_id,'check_status' => 2])->sum('money');
- $contractMoney = db('crm_contract')->where(['contract_id' => $contract_id])->value('money');
- $unMoney = $contractMoney-$doneMoney;
- $data['doneMoney'] = $doneMoney ? : '0.00';
- $data['unMoney'] = (int)$unMoney>0 ? (int)$unMoney : '0.00';
- $data['contractMoney'] = $contractMoney ? : '0.00';
- return $data;
- }
-
- /**
- * 获取系统信息
- *
- * @param $id
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public function getSystemInfo($id)
- {
- # 回款
- $receivables = Db::name('crm_receivables')->field(['create_user_id', 'create_time', 'update_time'])->where('receivables_id', $id)->find();
- # 创建人
- $realname = Db::name('admin_user')->where('id', $receivables['create_user_id'])->value('realname');
-
- return [
- 'create_user_id' => $realname,
- 'create_time' => date('Y-m-d H:i:s', $receivables['create_time']),
- 'update_time' => date('Y-m-d H:i:s', $receivables['update_time'])
- ];
- }
- }
|