|
@@ -33,6 +33,7 @@ use support\exception\BusinessException;
|
|
|
use support\Redis;
|
|
|
use support\Request;
|
|
|
use support\Response;
|
|
|
+use Tinywan\Jwt\JwtToken;
|
|
|
use Webman\Event\Event;
|
|
|
use Yansongda\Pay\Pay;
|
|
|
|
|
@@ -647,7 +648,8 @@ class FranchiseeController extends Curd
|
|
|
'order_config_json' => $params['order_config_json'] ?? '[]',
|
|
|
'order_express_json' => $params['order_express_json'] ?? '[]',
|
|
|
'order_extend_json' => $params['order_extend_json'] ? json_encode($params['order_extend_json']) : '[]',
|
|
|
- 'order_addtimes' => time()
|
|
|
+ 'order_addtimes' => time(),
|
|
|
+ 'order_add_user_id'=>JwtToken::getCurrentId()
|
|
|
];
|
|
|
|
|
|
Order::insert($data);
|