|
|
@@ -7,6 +7,7 @@ use app\api\logic\PerformanceLogic;
|
|
|
use app\api\logic\ServiceOrderLogic;
|
|
|
use app\common\enum\PayEnum;
|
|
|
use app\common\enum\worker\WorkerAccountLogEnum;
|
|
|
+use app\common\logic\ExternalPlatformLogic;
|
|
|
use app\common\logic\PayNotifyLogic;
|
|
|
use app\common\logic\WorkerAccountLogLogic;
|
|
|
use app\common\model\external\ExternalPlatform;
|
|
|
@@ -21,8 +22,16 @@ use think\facade\Log;
|
|
|
class NotificTestController extends BaseLikeAdminController
|
|
|
{
|
|
|
public array $notNeedLogin = ['addOnlineCustomerService','subOnlineCustomerService','getBusinessAllocationValue',
|
|
|
- 'customerSendMessage','assignBusinessToCustomer','customerClsMessage','getNotificList','getAllNotificList'];
|
|
|
+ 'customerSendMessage','assignBusinessToCustomer','customerClsMessage','getNotificList','getAllNotificList','externalPlatformLogicTest'];
|
|
|
|
|
|
+ public function externalPlatformLogicTest(){
|
|
|
+ $prams = $this->request->param();
|
|
|
+ try {
|
|
|
+ dd(ExternalPlatformLogic::handleByScene($prams));
|
|
|
+ }catch(\Exception $e){
|
|
|
+ dd($e->getMessage());
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
public function addOnlineCustomerService(){
|
|
|
$prams = $this->request->param();
|