| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461 |
- <?php
- // +----------------------------------------------------------------------
- // | likeadmin快速开发前后端分离管理后台(PHP版)
- // +----------------------------------------------------------------------
- // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
- // | 开源版本可自由商用,可去除界面版权logo
- // | gitee下载:https://gitee.com/likeshop_gitee/likeadmin
- // | github下载:https://github.com/likeshop-github/likeadmin
- // | 访问官网:https://www.likeadmin.cn
- // | likeadmin团队 版权所有 拥有最终解释权
- // +----------------------------------------------------------------------
- // | author: likeadminTeam
- // +----------------------------------------------------------------------
- namespace app\adminapi\logic\works;
- use app\common\model\dict\DictData;
- use app\common\model\master_worker\MasterWorker;
- use app\common\model\master_worker\MasterWorkerAccountLog;
- use app\common\model\recharge\RechargeOrder;
- use app\common\model\spare_part\SparePart;
- use app\common\model\works\ServiceWork;
- use app\common\logic\BaseLogic;
- use app\common\model\works\ServiceWorkSpare;
- use app\workerapi\logic\ServiceWorkerAllocateWorkerLogic;
- use app\workerapi\logic\ServiceWorkLogLogic;
- use think\db\Query;
- use think\Exception;
- use think\facade\Db;
- /**
- * ServiceWork逻辑
- * Class ServiceWorkLogic
- * @package app\adminapi\logic\works
- */
- class ServiceWorkLogic extends BaseLogic
- {
- /**
- *
- * @return false|void
- */
- public static function pickWork($params)
- {
- Db::startTrans();
- try {
- $work = ServiceWork::where(['master_worker_id'=>$params['user_id'],'work_sn'=>$params['work_sn']])->findOrEmpty();
- if($work->isEmpty()){
- throw new Exception('工单不存在');
- }
- $receive_time = time();
- $work->work_status = 2;//待联系
- $work->service_status = 1;//服务中
- $work->receive_time = $receive_time;
- $work->save();
- //添加变更日志
- $work_log = [
- 'work_id'=>$work->id,
- 'master_worker_id'=>$work->master_worker_id,
- 'opera_log'=>'编号['.$params['user_info']['worker_number'].']'.$params['user_info']['real_name'].'于'.date('y-m-d H:i:s',$receive_time).'领取了工单',
- ];
- ServiceWorkLogLogic::add($work_log);
- Db::commit();
- }
- catch (\Exception $e) {
- Db::rollback();
- self::setError($e->getMessage());
- return false;
- }
- }
- /**
- * 预约成功,等待上门
- * @return false|void
- */
- public static function appointWork($params)
- {
- Db::startTrans();
- try {
- $work = ServiceWork::where(['master_worker_id'=>$params['user_id'],'work_sn'=>$params['work_sn']])->findOrEmpty();
- if($work->isEmpty()){
- throw new Exception('工单不存在');
- }
- if($work->work_status != 2){
- throw new Exception('请勿重复点击');
- }
- //验证更改的预约时间必须是在领单时间内的半小内修改,否则不允许修改
- if(strtotime($work->appointment_time) != strtotime($params['appointment_time']) && (time()-strtotime($work->receive_time))>1800){
- throw new Exception('距离领单时间已超过半小时,无法修改预约时间,请联系客服');
- }
- $work->work_status = 3;//待上门
- $work->appointment_time = strtotime($params['appointment_time']);
- $work->save();
- //添加变更日志
- $work_log = [
- 'work_id'=>$work->id,
- 'master_worker_id'=>$work->master_worker_id,
- 'opera_log'=>'编号['.$params['user_info']['worker_number'].']'.$params['user_info']['real_name'].'于'.date('y-m-d H:i:s',time()).'联系了客户,确认了于'.$params['appointment_time'].$params['address'].'预约上门',
- ];
- ServiceWorkLogLogic::add($work_log);
- Db::commit();
- }
- catch (\Exception $e) {
- self::setError($e->getMessage());
- return false;
- }
- }
- /**
- * 师傅确认上门
- * @param $params
- * @return false|void
- */
- public static function confirmDoor($params)
- {
- Db::startTrans();
- try {
- $work = ServiceWork::where(['master_worker_id'=>$params['user_id'],'work_sn'=>$params['work_sn']])->findOrEmpty();
- if($work->isEmpty()){
- throw new Exception('工单不存在');
- }
- $order = RechargeOrder::where(['sn'=>$params['order_sn'],'work_id'=>$work['id']])->findOrEmpty();
- if($order->isEmpty()){
- throw new Exception('订单不存在');
- }
- if($work->work_status != 3){
- throw new Exception('请勿重复点击');
- }
- $work->work_status = 4;//已上门
- $work->save();
- //添加变更日志
- $work_log = [
- 'work_id'=>$work->id,
- 'master_worker_id'=>$work->master_worker_id,
- 'opera_log'=>'编号['.$params['user_info']['worker_number'].']'.$params['user_info']['real_name'].'于'.date('y-m-d H:i:s',time()).'于'.date('Y-m-d H:i:s',time()).'已上门',
- ];
- ServiceWorkLogLogic::add($work_log);
- Db::commit();
- }
- catch (\Exception $e) {
- Db::rollback();
- self::setError($e->getMessage());
- return false;
- }
- }
- /**
- * 师傅确认报价单
- * @param $params
- * @return false|void
- */
- public static function confirmPrice($params)
- {
- Db::startTrans();
- try {
- $work = ServiceWork::where(['master_worker_id'=>$params['user_id'],'work_sn'=>$params['work_sn']])->findOrEmpty();
- if($work->isEmpty()){
- throw new Exception('工单不存在');
- }
- //搜索待支付订单
- $paid_order = RechargeOrder::where(['work_id'=>$work['id'],'pay_status'=>1])->findOrEmpty()->toArray();
- if(empty($paid_order)){
- throw new Exception('订单错误');
- }
- if($work->work_status != 4){
- throw new Exception('请勿重复操作');
- }
- // 关联配件信息.计算配件总价 id company_price original_price offering_price number
- $spare_total = 0;
- isset($params['spare_parts']) && $params['spare_parts'] && $params['spare_parts'] = json_decode($params['spare_parts'], true);
- if(isset($params['spare_parts']) && $params['spare_parts']){
- $spare_parts = $params['spare_parts'];
- foreach ($spare_parts as $spare){
- $spare_total += $spare['company_price']*$spare['number'];
- }
- $work->spare_total = $spare_total;
- $service_work_spare = ServiceWorkSpare::where(['service_work_id'=>$work['id']])->findOrEmpty();
- if($service_work_spare->isEmpty()){
- //新增
- $service_work_spare = ServiceWorkSpare::create([
- 'service_work_id'=>$work['id'],
- 'spare_parts'=>$params['spare_parts'],
- 'remark'=>''
- ]);
- }else{
- //修改
- $service_work_spare->spare_parts = $params['spare_parts'];
- $service_work_spare->save();
- }
- $work->service_work_spare_id = $service_work_spare->id;
- }
- // order_amount 原 = $params['amount'] 修改为 = 配件总价 + 服务尾款
- $order_amount = $params['amount'] + $spare_total;
- //定金存在尾款结算功能,全款直接提交
- if($paid_order['payment_type']==1){
- $un_order = RechargeOrder::where(['work_id'=>$work['id'],'pay_status'=>0])->findOrEmpty();
- if($un_order->isEmpty()){
- //新增待支付尾款
- $order_data = [
- 'order_type'=>$paid_order['order_type'],
- 'sn'=>generate_sn(\app\common\model\orders\RechargeOrder::class, 'sn'),
- 'work_id'=>$paid_order['work_id'],
- 'user_id'=>$paid_order['user_id'],
- 'payment_type'=>2,
- 'order_total'=>$order_amount,
- //'order_amount'=>$params['amount'],
- 'order_amount'=>$order_amount,
- 'order_terminal'=>$paid_order['order_terminal']
- ];
- RechargeOrder::create($order_data);
- }else{
- //修改尾款信息
- $un_order->order_total = $order_amount;
- //$un_order->order_amount = $params['amount'];
- $un_order->order_amount = $order_amount;
- $un_order->save();
- }
- //更新服务费用
- $work->service_fee = $paid_order['paid_amount']+$params['amount'];
- }
- //总工单费用
- $work->work_total = $order_amount + $paid_order['paid_amount'];
- $work->work_images = $params['work_images'];
- $work->user_confirm_status = 1;//待确认报价
- $work->save();
- //添加变更日志
- $work_log = [
- 'work_id'=>$work->id,
- 'master_worker_id'=>$work->master_worker_id,
- 'opera_log'=>'编号['.$params['user_info']['worker_number'].']'.$params['user_info']['real_name'].'于'.date('y-m-d H:i:s',time()).'于'.date('Y-m-d H:i:s',time()).'提交了报价单',
- ];
- ServiceWorkLogLogic::add($work_log);
- Db::commit();
- }
- catch (\Exception $e) {
- Db::rollback();
- self::setError($e->getMessage());
- return false;
- }
- }
- /**
- * 师傅确认服务完成
- * @param $params
- * @return false|void
- */
- public static function confirmServiceFinish($params)
- {
- Db::startTrans();
- try {
- $work = ServiceWork::where(['master_worker_id'=>$params['user_id'],'work_sn'=>$params['work_sn']])->findOrEmpty();
- if($work->isEmpty()){
- throw new Exception('工单不存在');
- }
- if($work->user_confirm_status !=2){
- throw new Exception('请勿重复操作');
- }
- $work->finished_images = $params['finished_images'];
- $work->user_confirm_status = 3;//待确认服务完成
- $work->save();
- //添加变更日志
- $work_log = [
- 'work_id'=>$work->id,
- 'master_worker_id'=>$work->master_worker_id,
- 'opera_log'=>'编号['.$params['user_info']['worker_number'].']'.$params['user_info']['real_name'].'于'.date('y-m-d H:i:s',time()).'于'.date('Y-m-d H:i:s',time()).'提交了待用户确认服务完成',
- ];
- ServiceWorkLogLogic::add($work_log);
- Db::commit();
- } catch (\Exception $e) {
- Db::rollback();
- self::setError($e->getMessage());
- return false;
- }
- }
- public static function allocateWorker($params,$userInfo){
- Db::startTrans();
- try {
- $work = ServiceWork::findOrEmpty($params['id']);
- if($work->isEmpty()){
- throw new Exception('工单不存在');
- }
- if($work->work_status >=6 ){
- throw new \Exception('工单状态只能修改待结算之前的');
- }
- if($work->master_worker_id == $params['master_worker_id']){
- throw new \Exception('分配的师傅相同');
- }
- $worker = MasterWorker::where(['id'=>$params['master_worker_id'],'is_disable' =>0])->findOrEmpty();
- if($worker->isEmpty()){
- throw new \Exception('师傅不存在或被禁用');
- }
- if($worker->master_worker_id){
- MasterWorker::setWorktotal('dec',$worker->master_worker_id);
- }
- $work->master_worker_id = $params['master_worker_id'];
- $work->work_status = 1;
- $work->dispatch_time = time();
- MasterWorker::setWorktotal('inc',$params['master_worker_id']);
- $work->save();
- $work_log = [
- 'work_id'=>$work->id,
- 'master_worker_id'=>$work->master_worker_id,
- 'opera_log'=>'后台用户['.$userInfo['admin_id'].']'.$userInfo['name'].'于'.date('Y-m-d H:i:s',time()).'分配了师傅'.'编号['.$worker->worker_number.']'.$worker->real_name
- ];
- ServiceWorkerAllocateWorkerLogic::add($work_log);
- Db::commit();
- return true;
- }catch(\Exception $e){
- Db::rollback();
- self::setError($e->getMessage());
- return false;
- }
- }
- /**
- * 工单详情
- * @param $params
- * @return array|false
- */
- public static function detail($params){
- try {
- $result = ServiceWork::with([
- 'worker'=> function(Query $query) {
- $query->field('id,worker_number,real_name');
- },
- 'allocateWorkerLog' =>function(Query $query){
- $query->field('id,work_id,opera_log,create_time');
- },
- 'serviceWorkLog' =>function(Query $query){
- $query->field('id,work_id,opera_log,create_time');
- }
- ])->append(['id','work_status_text','service_status_text'])
- ->findOrEmpty($params['id'])->toArray();
- //师傅工单按钮状态
- $work_service_status = 0;
- $work_service_status_text = '待派单';
- //工单状态
- if($result['work_status'] == 1){
- $work_service_status = 1;
- $work_service_status_text = '待领单';
- }
- if($result['work_status'] == 2){
- $work_service_status = 2;
- $work_service_status_text = '预约上门';
- }
- if($result['work_status'] == 3){
- $work_service_status = 3;
- $work_service_status_text = '等待上门';
- if(date('Y-m-d') === date('Y-m-d',strtotime($result['appointment_time']))){
- $work_service_status = 4;
- $work_service_status_text = '确认上门';
- }
- }
- if($result['work_status'] == 4 and $result['user_confirm_status']==0){
- $work_service_status = 5;
- $work_service_status_text = '确认报价';
- }
- if($result['work_status'] == 4 and $result['user_confirm_status']==1){
- $work_service_status = 6;
- $work_service_status_text = '用户确认报价中';
- }
- if($result['work_status'] == 5 and $result['user_confirm_status']==2){
- $work_service_status = 7;
- $work_service_status_text = '完成服务';
- }
- if($result['work_status'] == 5 and $result['user_confirm_status']==3){
- $work_service_status = 8;
- $work_service_status_text = '用户确认完成服务中';
- }
- if($result['work_status'] ==6){
- $work_service_status = 9;
- $work_service_status_text = '待结算';
- }
- if($result['work_status'] ==7){
- $work_service_status = 10;
- $work_service_status_text = '已完结';
- }
- if($result['work_status'] ==8){
- $work_service_status = 11;
- $work_service_status_text = '已评价';
- }
- $result['work_service_status'] = $work_service_status;
- $result['work_service_status_text'] = $work_service_status_text;
- //搜索当前工单下的所有订单记录
- $result['pay_orders'] = RechargeOrder::with(['orderGoods'=>function(Query $query){
- $query->field('id,sn,goods_id,goods_name,goods_image,goods_number,good_unit,goods_size,goods_type,goods_brand,base_service_fee,service_total,service_fee')->order(['id'=>'desc']);
- }])->where(['work_id'=>$result['id']])->field('id as order_id,sn,order_type,pay_status,payment_type,pay_way,pay_time,order_amount,order_total,coupon_price,create_time')->order('id asc')->select()->toArray();
- $pay_status_data = DictData::where('type_value','pay_status')->column('name','value');
- $payment_type_data = DictData::where('type_value','payment_type')->column('name','value');
- $pay_way_data = DictData::where('type_value','pay_way')->column('name','value');
- $order_type_data = DictData::where('type_value','order_type')->column('name','value');
- $coupon_price = 0;
- foreach ($result['pay_orders'] as $k=>&$v){
- $v['pay_status_name'] = $pay_status_data[$v['pay_status']];
- $v['payment_type_name'] = $payment_type_data[$v['payment_type']];
- $v['pay_way_name'] = $pay_way_data[$v['pay_way']];
- $v['order_type_name'] = $order_type_data[$v['order_type']];
- $v['pay_time'] = $v['pay_time'] && is_numeric($v['pay_time']) ? date('Y-m-d H:i:s',$v['pay_time']):'';
- if($v['payment_type']!=1 and !empty($result['spare_total'])){
- $v['order_total'] = $v['order_total'] - $result['spare_total'];
- $v['order_amount'] = $v['order_amount'] - $result['spare_total'];
- }
- $coupon_price += $v['coupon_price'];
- }
- //汇总优惠卷额度
- $result['coupon_price'] = $coupon_price;
- //工单总支付金额
- $result['worker_account'] = $result['work_amount'];
- // 配件信息
- $result['spare_parts'] = [];
- if($result['service_work_spare_id']){
- $work_spare_parts = json_decode(ServiceWorkSpare::where('id',$result['service_work_spare_id'])->value('spare_parts'),true);
- $spare_parts = SparePart::where('id','in',array_column($work_spare_parts,'id'))
- ->field(['id', 'goods_category_id', 'spare_name', 'spare_image', 'spare_number', 'spare_unit','spare_status'])
- ->select()
- ->toArray();
- $spare_parts = array_column($spare_parts,null,'id');
- foreach (array_column($work_spare_parts,null,'id') as $k=>&$v){
- $spare_parts[$k] = array_merge($spare_parts[$k],$v);
- }
- $result['spare_parts'] = array_values($spare_parts)??[];
- }
- return $result;
- }catch(\Exception $e){
- Db::rollback();
- self::setError($e->getMessage());
- return false;
- }
- }
- }
|