Browse Source

选号init1

Cherry 2 years ago
parent
commit
dfb19a9f23

+ 1 - 0
application/admin/controller/MobileFlow.php

@@ -169,6 +169,7 @@ class MobileFlow extends Backend
         'sort'=>['require','integer'],
         'product_no'=>['require'],
         'card_status' => ['in:0,1'],
+        'select_num_status' => ['in:0,1'],
         'send_template' => ['integer'],
         'not_send_template' => ['integer'],
         'min_age' => ['number', 'egt:0'],

+ 6 - 0
application/admin/view/mobile_flow/add.html

@@ -57,6 +57,12 @@
         </div>
     </div>
     <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('选号')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            {:build_radios('row[select_num_status]',['不开启', '开启'], 0)}
+        </div>
+    </div>
+    <div class="form-group">
         <label class="control-label col-xs-12 col-sm-2">{:__('只发货地区')}:</label>
         <div class="col-xs-12 col-sm-8">
             <select title="请选择发货地区模板" name="row[send_template]" class="form-control selectpicker">

+ 6 - 0
application/admin/view/mobile_flow/edit.html

@@ -64,6 +64,12 @@
         </div>
     </div>
     <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('选号')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            {:build_radios('row[select_num_status]',['不开启', '开启'],$row['select_num_status'])}
+        </div>
+    </div>
+    <div class="form-group">
         <label class="control-label col-xs-12 col-sm-2">{:__('只发货地区')}:</label>
         <div class="col-xs-12 col-sm-8">
             <select title="请选择发货地区模板" name="row[send_template]" class="form-control selectpicker">

+ 15 - 1
application/api/controller/MobileController.php

@@ -111,7 +111,7 @@ class MobileController extends UserApi
         $hiddenColumn = Mobile::hiddenColumn();
         $model=Mobile::show($data);
         // $model->field($hiddenColumn,true);
-        $model->field('mobile.`id`,`status`,`logo`,`name`,`brand`,`no`,`type`,`network`,`city_id`,`city`,`province_id`,`province`,`amount_exists`,`amount_original`,`amount_base`,`amount_charge`,`amount_proxy`,`amount_kill`,`amount`,`top_time`,`rec_time`,`summary`,`is_activity`,`activity_time_end`,`sort`,`sort_line`,`activity_time`,`stock_num`,`is_offer`,`card_status`,`product_no`,mobile.`proxy_status`,`send_template`,`not_send_template`,`min_age`,`max_age`,`link`,`sort_proxy`');
+        $model->field('mobile.`id`,`status`,`logo`,`name`,`brand`,`no`,`type`,`network`,`city_id`,`city`,`province_id`,`province`,`amount_exists`,`amount_original`,`amount_base`,`amount_charge`,`amount_proxy`,`amount_kill`,`amount`,`top_time`,`rec_time`,`summary`,`is_activity`,`activity_time_end`,`sort`,`sort_line`,`activity_time`,`stock_num`,`is_offer`,`card_status`,`select_num_status`,`product_no`,mobile.`proxy_status`,`send_template`,`not_send_template`,`min_age`,`max_age`,`link`,`sort_proxy`');
         $model->where('type',$data['type']);
         if(isset($data['price_min']) && is_numeric($data['price_min'])){
             $model->where('amount','>=',$data['price_min']);
@@ -1104,4 +1104,18 @@ class MobileController extends UserApi
 
         dump(parse_url('https://lh.hdlkeji.com/uploads/20230221/0866987639c981b0f59dcc43cdffdc16_hr5n1hkhdap6gcadj63eh7vrmg.jpeg'));
     }
+
+    /**
+     * 选号
+     * @ApiMethod (POST)
+     * @ApiParams (name=product_no,description=产品编码)
+     */
+    public function select_num_flow(){
+        $data = $this->_validate([
+            'product_no'=>['require'],
+        ]);
+
+        $list = GantanhaoService::getSelectNum($data['product_no']);
+        $this->success('成功',$list);
+    }
 }

+ 7 - 0
application/common/service/MobileOrderExport.php

@@ -264,6 +264,13 @@ class MobileOrderExport{
                     return $gantanhao ? $gantanhao['reason'] : '';
                 },
             ],
+            [
+                'name'=>'生产号码',
+                'value'=>function($model){
+                    $gantanhao = $model['gantanhao_data_notify'] ? json_decode($model['gantanhao_data_notify'], true) : '';
+                    return $gantanhao ? $gantanhao['plan_mobile_produced'] : '';
+                },
+            ],
         ];
         $headers=[];
         foreach ($header as $value){

+ 35 - 6
application/service/GantanhaoService.php

@@ -74,6 +74,10 @@ class GantanhaoService{
                     'contents' => $order['address']
                 ],
                 [
+                    'name' => 'pretty_number',
+                    'contents' => $order['no']
+                ],
+                [
                     'name' => 'sign',
                     'contents' => self::orderSign($mobile['product_no'], $order['order_no'])
                 ],
@@ -81,6 +85,7 @@ class GantanhaoService{
         ];
 
         if($mobile['card_status']){
+            $i = 10;
             $open_idcard_face_img = parse_url($order['open_idcard_face_img']);
             $open_idcard_back_img = parse_url($order['open_idcard_back_img']);
             $open_face_img = parse_url($order['open_face_img']);
@@ -91,12 +96,12 @@ class GantanhaoService{
             //     'back' => fopen(ROOT_PATH . 'public' .$open_idcard_back_img['path'], 'r'),
             //     'hand' => fopen(ROOT_PATH . 'public' .$open_face_img['path'], 'r'),
             // ];
-            $data['multipart'][9]['name'] = 'pic[face]';
-            $data['multipart'][9]['contents'] = fopen(ROOT_PATH . 'public' .$open_idcard_face_img['path'], 'r');
-            $data['multipart'][10]['name'] = 'pic[back]';
-            $data['multipart'][10]['contents'] = fopen(ROOT_PATH . 'public' .$open_idcard_back_img['path'], 'r');
-            $data['multipart'][11]['name'] = 'pic[hand]';
-            $data['multipart'][11]['contents'] = fopen(ROOT_PATH . 'public' .$open_face_img['path'], 'r');
+            $data['multipart'][$i]['name'] = 'pic[face]';
+            $data['multipart'][$i]['contents'] = fopen(ROOT_PATH . 'public' .$open_idcard_face_img['path'], 'r');
+            $data['multipart'][$i+1]['name'] = 'pic[back]';
+            $data['multipart'][$i+1]['contents'] = fopen(ROOT_PATH . 'public' .$open_idcard_back_img['path'], 'r');
+            $data['multipart'][$i+2]['name'] = 'pic[hand]';
+            $data['multipart'][$i+2]['contents'] = fopen(ROOT_PATH . 'public' .$open_face_img['path'], 'r');
         }
 
         user_log('gantanhaoService', $data);
@@ -225,4 +230,28 @@ class GantanhaoService{
 
         return true;
     }
+
+    /**
+     * 获取选号信息
+     */
+    public static function getSelectNum($product_sku){
+        $url = 'http://notify.91haoka.cn/api/plan-market/upstream/num/select';
+
+        try{
+            $data = [
+                'product_sku' => $product_sku
+            ];
+
+            $result = Http::post($url, http_build_query($data));
+            $rs = json_decode($result, true);
+            if(is_null($rs) || $rs['msg']['code'] != 0) throw new \Exception($rs['msg']['info'] ?? '获取选号信息错误');
+
+            return $rs['data'];
+        }
+        catch(\Exception $e){
+
+            user_log('gantanhaoService', '获取选号信息:'.$e->getMessage());
+            throw new \Exception($e->getMessage());
+        }
+    }
 }

+ 6 - 0
public/assets/js/backend/mobile_order_flow.js

@@ -87,6 +87,7 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin
                         a.push(`<div>运营商:${product_brand}</div>`)
                         a.push(`<div>商品名称:${order.info.mobile.name}</div>`)
                         a.push(`<div>套餐:${order.info?order.info.mobile.summary:''}</div>`)
+                        a.push(`<div>入网手机号:${order.gantanhao_data_notify?order.gantanhao_data_notify.plan_mobile_produced:''}</div>`)
                         return `<div class="break-words" style="width: inherit;">${a.join('')}</div>`
                     },width:300,align:'left',valign:'top'},
                 {
@@ -123,6 +124,11 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin
                         // }
                         return `<div style="width: 200px;" class="break-words">${a.join('')}</div>`
                     },width:200,align:'left',valign:'top'},
+                {field: 'order_no', title: __('生产信息'),operate: false,formatter(_,order){
+                        let a=[], product_no = '';
+                        a.push(`<div>生产号码:${order.gantanhao_data_notify?order.gantanhao_data_notify.plan_mobile_produced:''}</div>`)
+                        return `<div class="break-words" style="width: inherit;">${a.join('')}</div>`
+                    },width:140,align:'left',valign:'top'},
                 {field: 'status', title: __('Status'),formatter(a,order){
                         if(a===30) {
                             return `<span class="label label-primary">${status[order.status_bak]||''}-${status[a]}</span>`;