diff --git a/app/controller/api/store/merchant/MerchantIntention.php b/app/controller/api/store/merchant/MerchantIntention.php index 05a2a08a..e4a4672f 100644 --- a/app/controller/api/store/merchant/MerchantIntention.php +++ b/app/controller/api/store/merchant/MerchantIntention.php @@ -215,7 +215,8 @@ class MerchantIntention extends BaseController 'cardno_front' => $data['cardno_front'] ?? '', 'cardno_back' => $data['cardno_back'] ?? '', 'mer_intention_id' => $intentionId, - 'type_id'=>$merInfo['type_id']??'' + 'type_id'=>$merInfo['type_id']??'', + 'is_company'=>$data['is_company']??'', ]; $postUrl = env('TASK_WORKER_HOST_URL') . '/adminapi/company/createShopMerchant'; @@ -312,7 +313,8 @@ class MerchantIntention extends BaseController 'village' => $data['village_id'] ?? '', 'address' => $data['address'] ?? '', 'mer_intention_id' => $id, - 'type_id'=>$data['mer_type_id']??'' + 'type_id'=>$data['mer_type_id']??'', + 'is_company'=>$data['is_company']??'', ]; $postUrl = env('TASK_WORKER_HOST_URL') . '/adminapi/company/createShopMerchant';