Ver código fonte

[智价云] 累计挂网&连续挂网统计补充

tangyuanwang 2 meses atrás
pai
commit
b615dbadae

+ 4 - 4
app/Http/Controllers/Api/Process/LowPriceGoods.php

@@ -47,7 +47,7 @@ class LowPriceGoods extends Api
         $source_responsible_person = request('source_responsible_person', '');
         $processing_status = request('processing_status', '');
         $product_specs = request('product_specs', '');
-        $online_posting_cunt = request('online_posting_cunt', '');
+        $online_posting_count = request('online_posting_count', '');
         // 时间条件
         if ($start_time) $map[] = ['insert_time', '>=', strtotime($start_time)];
         if ($end_time) $map[]   = ['insert_time', '<=', strtotime($end_time)];
@@ -76,9 +76,9 @@ class LowPriceGoods extends Api
             $LowPriceGoodsModel=$LowPriceGoodsModel->whereIn('store_name', $store_names);
         }
         //多选违规挂网次数查询
-        if($online_posting_cunt && is_string($online_posting_cunt)){
-            $online_posting_cunt = explode(',', $online_posting_cunt);
-            $LowPriceGoodsModel=$LowPriceGoodsModel->whereIn('online_posting_cunt', $online_posting_cunt);
+        if($online_posting_count && is_string($online_posting_count)){
+            $online_posting_count = explode(',', $online_posting_count);
+            $LowPriceGoodsModel=$LowPriceGoodsModel->whereIn('online_posting_count', $online_posting_count);
         }
         //多选规格查询
         if($product_specs && is_string($product_specs)){

+ 4 - 4
app/Http/Controllers/Api/Process/ViolationProduct.php

@@ -47,7 +47,7 @@ class ViolationProduct extends Api
         $source_responsible_person = request('source_responsible_person', '');
         $processing_status = request('processing_status', '');
         $product_specs = request('product_specs', '');
-        $online_posting_cunt = request('online_posting_cunt', '');
+        $online_posting_count = request('online_posting_count', '');
         // 时间条件
         if ($start_time) $map[] = ['insert_time', '>=', strtotime($start_time)];
         if ($end_time) $map[]   = ['insert_time', '<=', strtotime($end_time)];
@@ -76,9 +76,9 @@ class ViolationProduct extends Api
             $ViolationProductModel=$ViolationProductModel->whereIn('store_name', $store_names);
         }
         //多选违规挂网次数查询
-        if($online_posting_cunt && is_string($online_posting_cunt)){
-            $online_posting_cunt = explode(',', $online_posting_cunt);
-            $ViolationProductModel=$ViolationProductModel->whereIn('online_posting_cunt', $online_posting_cunt);
+        if($online_posting_count && is_string($online_posting_count)){
+            $online_posting_count = explode(',', $online_posting_count);
+            $ViolationProductModel=$ViolationProductModel->whereIn('online_posting_count', $online_posting_count);
         }
         //多选规格查询
         if($product_specs && is_string($product_specs)){

+ 4 - 4
app/Http/Controllers/Api/Process/ViolationStore.php

@@ -45,7 +45,7 @@ class ViolationStore extends Api
         $source_responsible_person = request('source_responsible_person', '');
         $processing_status = request('processing_status', '');
         $product_specs = request('product_specs', '');
-        $online_posting_cunt = request('online_posting_cunt', '');
+        $online_posting_count = request('online_posting_count', '');
         // 时间条件
         if ($start_time) $map[] = ['insert_time', '>=', strtotime($start_time)];
         if ($end_time) $map[]   = ['insert_time', '<=', strtotime($end_time)];
@@ -73,9 +73,9 @@ class ViolationStore extends Api
             $ViolationStoreModel=$ViolationStoreModel->whereIn('store_name', $store_names);
         }
         //多选违规挂网次数查询
-        if($online_posting_cunt && is_string($online_posting_cunt)){
-            $online_posting_cunt = explode(',', $online_posting_cunt);
-            $ViolationStoreModel=$ViolationStoreModel->whereIn('online_posting_cunt', $online_posting_cunt);
+        if($online_posting_count && is_string($online_posting_count)){
+            $online_posting_count = explode(',', $online_posting_count);
+            $ViolationStoreModel=$ViolationStoreModel->whereIn('online_posting_count', $online_posting_count);
         }
         //多选规格查询
         if($product_specs && is_string($product_specs)){

+ 2 - 2
app/Http/Controllers/Manager/Process/ControlGoods.php

@@ -41,7 +41,7 @@ class ControlGoods extends Controller
         $processing_status = request('processing_status', '');
         $product_name = request('product_name', '');
         $product_specs = request('product_specs', '');
-        $online_posting_cunt = request('online_posting_cunt', '');
+        $online_posting_count = request('online_posting_count', '');
         $category_name = request('category_name', '');
         // 时间条件
         if ($start_time) $map[] = ['insert_time', '>=', strtotime($start_time)];
@@ -60,7 +60,7 @@ class ControlGoods extends Controller
         if ($processing_status) $map[] = ['processing_status', '=', $processing_status];
         if ($product_name) $map[] = ['product_name', 'like', "%$product_name%"];
         if ($product_specs) $map[] = ['product_specs', 'like', "%$product_specs%"];
-        if ($online_posting_cunt) $map[] = ['online_posting_cunt', '=', $online_posting_cunt];
+        if ($online_posting_count) $map[] = ['online_posting_count', '=', $online_posting_count];
         // 查询数据
         $result = $ControlGoodsModel->query()
             ->where($map)

+ 34 - 32
app/Http/Controllers/Manager/Process/LowPriceGoods.php

@@ -50,7 +50,7 @@ class LowPriceGoods extends Controller
         $source_responsible_person = request('source_responsible_person', '');
         $processing_status = request('processing_status', '');
         $product_specs = request('product_specs', '');
-        $online_posting_cunt = request('online_posting_cunt', '');
+        $online_posting_count = request('online_posting_count', '');
         $category_name = request('category_name', '');
         // 时间条件
         if ($start_time) $map[] = ['insert_time', '>=', strtotime($start_time)];
@@ -81,9 +81,9 @@ class LowPriceGoods extends Controller
             $LowPriceGoodsModel = $LowPriceGoodsModel->whereIn('store_name', $store_names);
         }
         //多选违规挂网次数查询
-        if ($online_posting_cunt && is_string($online_posting_cunt)) {
-            $online_posting_cunt = explode(',', $online_posting_cunt);
-            $LowPriceGoodsModel = $LowPriceGoodsModel->whereIn('online_posting_cunt', $online_posting_cunt);
+        if ($online_posting_count && is_string($online_posting_count)) {
+            $online_posting_count = explode(',', $online_posting_count);
+            $LowPriceGoodsModel = $LowPriceGoodsModel->whereIn('online_posting_count', $online_posting_count);
         }
         //多选规格查询
         if ($product_specs && is_string($product_specs)) {
@@ -177,7 +177,7 @@ class LowPriceGoods extends Controller
         $source_responsible_person = request('source_responsible_person', '');
         $processing_status = request('processing_status', '');
         $product_specs = request('product_specs', '');
-        $online_posting_cunt = request('online_posting_cunt', '');
+        $online_posting_count = request('online_posting_count', '');
         $category_name = request('category_name', '');
         // 时间条件
         if ($start_time) $map[] = ['insert_time', '>=', strtotime($start_time)];
@@ -208,9 +208,9 @@ class LowPriceGoods extends Controller
             $LowPriceGoodsModel = $LowPriceGoodsModel->whereIn('store_name', $store_names);
         }
         //多选违规挂网次数查询
-        if ($online_posting_cunt && is_string($online_posting_cunt)) {
-            $online_posting_cunt = explode(',', $online_posting_cunt);
-            $LowPriceGoodsModel = $LowPriceGoodsModel->whereIn('online_posting_cunt', $online_posting_cunt);
+        if ($online_posting_count && is_string($online_posting_count)) {
+            $online_posting_count = explode(',', $online_posting_count);
+            $LowPriceGoodsModel = $LowPriceGoodsModel->whereIn('online_posting_count', $online_posting_count);
         }
         //多选规格查询
         if ($product_specs && is_string($product_specs)) {
@@ -351,18 +351,19 @@ class LowPriceGoods extends Controller
         $sheet->setCellValue('F2', '商品规格');
         $sheet->setCellValue('G2', '指导价');
         $sheet->setCellValue('H2', '挂网价格');
-        $sheet->setCellValue('I2', '挂网次数');
-        $sheet->setCellValue('J2', '链接地址');
-        $sheet->setCellValue('K2', '店铺名称');
-        $sheet->setCellValue('L2', '公司名称');
-        $sheet->setCellValue('M2', '公司分类');
-        $sheet->setCellValue('N2', '信用代码');
-        $sheet->setCellValue('O2', '省份');
-        $sheet->setCellValue('P2', '城市');
-        $sheet->setCellValue('Q2', '溯源责任人');
-        $sheet->setCellValue('R2', '处理状态');
-        $sheet->setCellValue('S2', '任务状态');
-        $sheet->setCellValue('T2', '记录时间');
+        $sheet->setCellValue('I2', '累计挂网次数');
+        $sheet->setCellValue('J2', '连续挂网次数');
+        $sheet->setCellValue('K2', '链接地址');
+        $sheet->setCellValue('L2', '店铺名称');
+        $sheet->setCellValue('M2', '公司名称');
+        $sheet->setCellValue('N2', '公司分类');
+        $sheet->setCellValue('O2', '信用代码');
+        $sheet->setCellValue('P2', '省份');
+        $sheet->setCellValue('Q2', '城市');
+        $sheet->setCellValue('R2', '溯源责任人');
+        $sheet->setCellValue('S2', '处理状态');
+        $sheet->setCellValue('T2', '任务状态');
+        $sheet->setCellValue('U2', '记录时间');
 
         $platform_data = [
             '0' => '全部',
@@ -395,18 +396,19 @@ class LowPriceGoods extends Controller
             $sheet->setCellValue('F' . $row, $item['product_specs']);
             $sheet->setCellValue('G' . $row, $item['suggested_price']);
             $sheet->setCellValue('H' . $row, $item['online_posting_price']);
-            $sheet->setCellValue('I' . $row, $item['online_posting_cunt']);
-            $sheet->setCellValue('J' . $row, $item['link_url']);
-            $sheet->setCellValue('K' . $row, $item['store_name']);
-            $sheet->setCellValue('L' . $row, $item['company_name']);
-            $sheet->setCellValue('M' . $row, $item['company_category_name']);
-            $sheet->setCellValue('N' . $row, $item['social_credit_code']);
-            $sheet->setCellValue('O' . $row, $item['province_name']);
-            $sheet->setCellValue('P' . $row, $item['city_name']);
-            $sheet->setCellValue('Q' . $row, $source_responsible_person_name);
-            $sheet->setCellValue('R' . $row, isset($processing_status_text[$item['processing_status']]) ? $processing_status_text[$item['processing_status']] : '');
-            $sheet->setCellValue('S' . $row, isset($status_text[$item['status']]) ? $status_text[$item['status']] : '');
-            $sheet->setCellValue('T' . $row, date('Y-m-d H:i:s', $item['insert_time']));
+            $sheet->setCellValue('I' . $row, $item['online_posting_count']);
+            $sheet->setCellValue('J' . $row, $item['continuous_listing_count']);
+            $sheet->setCellValue('k' . $row, $item['link_url']);
+            $sheet->setCellValue('L' . $row, $item['store_name']);
+            $sheet->setCellValue('M' . $row, $item['company_name']);
+            $sheet->setCellValue('N' . $row, $item['company_category_name']);
+            $sheet->setCellValue('O' . $row, $item['social_credit_code']);
+            $sheet->setCellValue('P' . $row, $item['province_name']);
+            $sheet->setCellValue('Q' . $row, $item['city_name']);
+            $sheet->setCellValue('R' . $row, $source_responsible_person_name);
+            $sheet->setCellValue('S' . $row, isset($processing_status_text[$item['processing_status']]) ? $processing_status_text[$item['processing_status']] : '');
+            $sheet->setCellValue('T' . $row, isset($status_text[$item['status']]) ? $status_text[$item['status']] : '');
+            $sheet->setCellValue('U' . $row, date('Y-m-d H:i:s', $item['insert_time']));
             $row++;
         }
         // 生成 Excel 文件

+ 34 - 32
app/Http/Controllers/Manager/Process/ViolationProduct.php

@@ -48,7 +48,7 @@ class ViolationProduct extends Controller
         $source_responsible_person = request('source_responsible_person', '');
         $processing_status = request('processing_status', '');
         $product_specs = request('product_specs', '');
-        $online_posting_cunt = request('online_posting_cunt', '');
+        $online_posting_count = request('online_posting_count', '');
         $category_name = request('category_name', '');
         // 时间条件
         if ($start_time) $map[] = ['insert_time', '>=', strtotime($start_time)];
@@ -79,9 +79,9 @@ class ViolationProduct extends Controller
             $ViolationProductModel = $ViolationProductModel->whereIn('store_name', $store_names);
         }
         //多选违规挂网次数查询
-        if ($online_posting_cunt && is_string($online_posting_cunt)) {
-            $online_posting_cunt = explode(',', $online_posting_cunt);
-            $ViolationProductModel = $ViolationProductModel->whereIn('online_posting_cunt', $online_posting_cunt);
+        if ($online_posting_count && is_string($online_posting_count)) {
+            $online_posting_count = explode(',', $online_posting_count);
+            $ViolationProductModel = $ViolationProductModel->whereIn('online_posting_count', $online_posting_count);
         }
         //多选规格查询
         if ($product_specs && is_string($product_specs)) {
@@ -174,7 +174,7 @@ class ViolationProduct extends Controller
         $source_responsible_person = request('source_responsible_person', '');
         $processing_status = request('processing_status', '');
         $product_specs = request('product_specs', '');
-        $online_posting_cunt = request('online_posting_cunt', '');
+        $online_posting_count = request('online_posting_count', '');
         $category_name = request('category_name', '');
         // 时间条件
         if ($start_time) $map[] = ['insert_time', '>=', strtotime($start_time)];
@@ -205,9 +205,9 @@ class ViolationProduct extends Controller
             $ViolationProductModel = $ViolationProductModel->whereIn('store_name', $store_names);
         }
         //多选违规挂网次数查询
-        if ($online_posting_cunt && is_string($online_posting_cunt)) {
-            $online_posting_cunt = explode(',', $online_posting_cunt);
-            $ViolationProductModel = $ViolationProductModel->whereIn('online_posting_cunt', $online_posting_cunt);
+        if ($online_posting_count && is_string($online_posting_count)) {
+            $online_posting_count = explode(',', $online_posting_count);
+            $ViolationProductModel = $ViolationProductModel->whereIn('online_posting_count', $online_posting_count);
         }
         //多选规格查询
         if ($product_specs && is_string($product_specs)) {
@@ -346,18 +346,19 @@ class ViolationProduct extends Controller
         $sheet->setCellValue('D2', '商品分类');
         $sheet->setCellValue('E2', '商品名称');
         $sheet->setCellValue('F2', '商品规格');
-        $sheet->setCellValue('G2', '挂网次数');
-        $sheet->setCellValue('H2', '链接地址');
-        $sheet->setCellValue('I2', '店铺名称');
-        $sheet->setCellValue('J2', '公司名称');
-        $sheet->setCellValue('K2', '公司分类');
-        $sheet->setCellValue('L2', '信用代码');
-        $sheet->setCellValue('M2', '省份');
-        $sheet->setCellValue('N2', '城市');
-        $sheet->setCellValue('O2', '溯源责任人');
-        $sheet->setCellValue('P2', '处理状态');
-        $sheet->setCellValue('Q2', '任务状态');
-        $sheet->setCellValue('R2', '记录时间');
+        $sheet->setCellValue('G2', '累计挂网次数');
+        $sheet->setCellValue('H2', '连续挂网次数');
+        $sheet->setCellValue('I2', '链接地址');
+        $sheet->setCellValue('J2', '店铺名称');
+        $sheet->setCellValue('K2', '公司名称');
+        $sheet->setCellValue('L2', '公司分类');
+        $sheet->setCellValue('M2', '信用代码');
+        $sheet->setCellValue('N2', '省份');
+        $sheet->setCellValue('O2', '城市');
+        $sheet->setCellValue('P2', '溯源责任人');
+        $sheet->setCellValue('Q2', '处理状态');
+        $sheet->setCellValue('R2', '任务状态');
+        $sheet->setCellValue('S2', '记录时间');
 
         $platform_data = [
             '0' => '全部',
@@ -388,18 +389,19 @@ class ViolationProduct extends Controller
             $sheet->setCellValue('D' . $row, $item['category_name']);
             $sheet->setCellValue('E' . $row, $item['product_name']);
             $sheet->setCellValue('F' . $row, $item['product_specs']);
-            $sheet->setCellValue('G' . $row, $item['online_posting_cunt']);
-            $sheet->setCellValue('H' . $row, $item['link_url']);
-            $sheet->setCellValue('I' . $row, $item['store_name']);
-            $sheet->setCellValue('J' . $row, $item['company_name']);
-            $sheet->setCellValue('K' . $row, $item['company_category_name']);
-            $sheet->setCellValue('L' . $row, $item['social_credit_code']);
-            $sheet->setCellValue('M' . $row, $item['province_name']);
-            $sheet->setCellValue('N' . $row, $item['city_name']);
-            $sheet->setCellValue('O' . $row, $source_responsible_person_name);
-            $sheet->setCellValue('P' . $row, isset($processing_status_text[$item['processing_status']]) ? $processing_status_text[$item['processing_status']] : '');
-            $sheet->setCellValue('Q' . $row, isset($status_text[$item['status']]) ? $status_text[$item['status']] : '');
-            $sheet->setCellValue('R' . $row, date('Y-m-d H:i:s', $item['insert_time']));
+            $sheet->setCellValue('G' . $row, $item['online_posting_count']);
+            $sheet->setCellValue('H' . $row, $item['continuous_listing_count']);
+            $sheet->setCellValue('I' . $row, $item['link_url']);
+            $sheet->setCellValue('J' . $row, $item['store_name']);
+            $sheet->setCellValue('K' . $row, $item['company_name']);
+            $sheet->setCellValue('L' . $row, $item['company_category_name']);
+            $sheet->setCellValue('M' . $row, $item['social_credit_code']);
+            $sheet->setCellValue('N' . $row, $item['province_name']);
+            $sheet->setCellValue('O' . $row, $item['city_name']);
+            $sheet->setCellValue('P' . $row, $source_responsible_person_name);
+            $sheet->setCellValue('Q' . $row, isset($processing_status_text[$item['processing_status']]) ? $processing_status_text[$item['processing_status']] : '');
+            $sheet->setCellValue('R' . $row, isset($status_text[$item['status']]) ? $status_text[$item['status']] : '');
+            $sheet->setCellValue('S' . $row, date('Y-m-d H:i:s', $item['insert_time']));
             $row++;
         }
         foreach (range('A', 'P') as $column) {

+ 8 - 8
app/Http/Controllers/Manager/Process/ViolationStore.php

@@ -45,7 +45,7 @@ class ViolationStore extends Controller
         $source_responsible_person = request('source_responsible_person', '');
         $processing_status = request('processing_status', '');
         $product_specs = request('product_specs', '');
-        $online_posting_cunt = request('online_posting_cunt', '');
+        $online_posting_count = request('online_posting_count', '');
         // 时间条件
         if ($start_time) $map[] = ['insert_time', '>=', strtotime($start_time)];
         if ($end_time) $map[]   = ['insert_time', '<=', strtotime($end_time)];
@@ -73,9 +73,9 @@ class ViolationStore extends Controller
             $ViolationStoreModel = $ViolationStoreModel->whereIn('store_name', $store_names);
         }
         //多选违规挂网次数查询
-        if ($online_posting_cunt && is_string($online_posting_cunt)) {
-            $online_posting_cunt = explode(',', $online_posting_cunt);
-            $ViolationStoreModel = $ViolationStoreModel->whereIn('online_posting_cunt', $online_posting_cunt);
+        if ($online_posting_count && is_string($online_posting_count)) {
+            $online_posting_count = explode(',', $online_posting_count);
+            $ViolationStoreModel = $ViolationStoreModel->whereIn('online_posting_count', $online_posting_count);
         }
         //多选规格查询
         if ($product_specs && is_string($product_specs)) {
@@ -162,7 +162,7 @@ class ViolationStore extends Controller
         $source_responsible_person = request('source_responsible_person', '');
         $processing_status = request('processing_status', '');
         $product_specs = request('product_specs', '');
-        $online_posting_cunt = request('online_posting_cunt', '');
+        $online_posting_count = request('online_posting_count', '');
         // 时间条件
         if ($start_time) $map[] = ['insert_time', '>=', strtotime($start_time)];
         if ($end_time) $map[]   = ['insert_time', '<=', strtotime($end_time)];
@@ -190,9 +190,9 @@ class ViolationStore extends Controller
             $ViolationStoreModel = $ViolationStoreModel->whereIn('store_name', $store_names);
         }
         //多选违规挂网次数查询
-        if ($online_posting_cunt && is_string($online_posting_cunt)) {
-            $online_posting_cunt = explode(',', $online_posting_cunt);
-            $ViolationStoreModel = $ViolationStoreModel->whereIn('online_posting_cunt', $online_posting_cunt);
+        if ($online_posting_count && is_string($online_posting_count)) {
+            $online_posting_count = explode(',', $online_posting_count);
+            $ViolationStoreModel = $ViolationStoreModel->whereIn('online_posting_count', $online_posting_count);
         }
         //多选规格查询
         if ($product_specs && is_string($product_specs)) {

+ 2 - 1
app/Jobs/Manager/Process/LowPriceGoodsDataJobs.php

@@ -106,7 +106,8 @@ class LowPriceGoodsDataJobs implements ShouldQueue
                 'product_specs'    => $product_specs,
                 'suggested_price'    => $suggested_price,
                 'online_posting_price'    => $product_data['one_box_price'],
-                'online_posting_cunt'    => $product_data['online_posting_cunt'],
+                'online_posting_count'    => $product_data['online_posting_count'],
+                'continuous_listing_count'    => $product_data['continuous_listing_count'],
                 'link_url'    => $product_data['link_url'],
                 'store_name'    => $product_data['store_name'],
                 'province_id' => $product_data['province_id'],

+ 2 - 1
app/Jobs/Manager/Process/ViolationProductDataJobs.php

@@ -101,7 +101,8 @@ class ViolationProductDataJobs implements ShouldQueue
                 'company_name'    => $product_data['company_name'],
                 'product_name'    => $product_name,
                 'product_specs'    => $product_specs,
-                'online_posting_cunt'    => $product_data['online_posting_cunt'],
+                'online_posting_count'    => $product_data['online_posting_count'],
+                'continuous_listing_count'    => $product_data['continuous_listing_count'],
                 'link_url'    => $product_data['link_url'],
                 'store_name'    => $product_data['store_name'],
                 'social_credit_code'    => $product_data['qualification_number'],

+ 0 - 1
app/Jobs/Manager/Process/ViolationStoreDataJobs.php

@@ -92,7 +92,6 @@ class ViolationStoreDataJobs implements ShouldQueue
                 'source_id' => $product_data['id'],
                 'platform'    => $product_data['platform_id'],
                 'company_name'    => $product_data['company_name'],
-                'online_posting_cunt'    => $product_data['online_posting_cunt'],
                 'link_url'    => $product_data['link_url'],
                 'store_name'    => $product_data['store_name'],
                 'social_credit_code' => $social_credit_code,

+ 2 - 2
app/Models/Api/Process/ControlGoods.php

@@ -41,7 +41,7 @@ class ControlGoods extends Model
             'product_specs'    => $data['product_specs'],
             'suggested_price'    => $data['suggested_price'],
             'online_posting_price'    => $data['online_posting_price'],
-            'online_posting_cunt'    => $data['online_posting_cunt'],
+            'online_posting_count'    => $data['online_posting_count'],
             'link_url'    => $data['link_url'],
             'store_name'    => $data['store_name'],
             'source_responsible_person'    => $data['source_responsible_person'],
@@ -99,7 +99,7 @@ class ControlGoods extends Model
         $ControlGoods->product_specs = $data['product_specs'];
         $ControlGoods->suggested_price = $data['suggested_price'];
         $ControlGoods->online_posting_price = $data['online_posting_price'];
-        $ControlGoods->online_posting_cunt = $data['online_posting_cunt'];
+        $ControlGoods->online_posting_count = $data['online_posting_count'];
         $ControlGoods->link_url = $data['link_url'];
         $ControlGoods->store_name = $data['store_name'];
         $ControlGoods->source_responsible_person = $data['source_responsible_person'];

+ 2 - 2
app/Models/Api/Process/LowPriceGoods.php

@@ -41,7 +41,7 @@ class LowPriceGoods extends Model
             'product_specs'    => $data['product_specs'],
             'suggested_price'    => $data['suggested_price'],
             'online_posting_price'    => $data['online_posting_price'],
-            'online_posting_cunt'    => $data['online_posting_cunt'],
+            'online_posting_count'    => $data['online_posting_count'],
             'link_url'    => $data['link_url'],
             'store_name'    => $data['store_name'],
             'source_responsible_person'    => $data['source_responsible_person'],
@@ -99,7 +99,7 @@ class LowPriceGoods extends Model
         $LowPriceGoods->product_specs = $data['product_specs'];
         $LowPriceGoods->suggested_price = $data['suggested_price'];
         $LowPriceGoods->online_posting_price = $data['online_posting_price'];
-        $LowPriceGoods->online_posting_cunt = $data['online_posting_cunt'];
+        $LowPriceGoods->online_posting_count = $data['online_posting_count'];
         $LowPriceGoods->link_url = $data['link_url'];
         $LowPriceGoods->store_name = $data['store_name'];
         $LowPriceGoods->source_responsible_person = $data['source_responsible_person'];

+ 2 - 2
app/Models/Api/Process/ViolationProduct.php

@@ -39,7 +39,7 @@ class ViolationProduct extends Model
             'company_name'    => $data['company_name'],
             'product_name'    => $data['product_name'],
             'product_specs'    => $data['product_specs'],
-            'online_posting_cunt'    => $data['online_posting_cunt'],
+            'online_posting_count'    => $data['online_posting_count'],
             'link_url'    => $data['link_url'],
             'store_name'    => $data['store_name'],
             'source_responsible_person'    => $data['source_responsible_person'],
@@ -95,7 +95,7 @@ class ViolationProduct extends Model
         $ViolationProduct->company_name = $data['company_name'];
         $ViolationProduct->product_name = $data['product_name'];
         $ViolationProduct->product_specs = $data['product_specs'];
-        $ViolationProduct->online_posting_cunt = $data['online_posting_cunt'];
+        $ViolationProduct->online_posting_count = $data['online_posting_count'];
         $ViolationProduct->link_url = $data['link_url'];
         $ViolationProduct->store_name = $data['store_name'];
         $ViolationProduct->source_responsible_person = $data['source_responsible_person'];

+ 3 - 3
app/Models/Manager/Process/ControlGoods.php

@@ -42,7 +42,7 @@ class ControlGoods extends Model
             'product_specs'    => $data['product_specs'],
             'suggested_price'    => $data['suggested_price'],
             'online_posting_price'    => $data['online_posting_price'],
-            'online_posting_cunt'    => $data['online_posting_cunt'],
+            'online_posting_count'    => $data['online_posting_count'],
             'link_url'    => $data['link_url'],
             'store_name'    => $data['store_name'],
             'source_responsible_person'    => $data['source_responsible_person'],
@@ -76,7 +76,7 @@ class ControlGoods extends Model
                 'product_specs'    => $data['product_specs'],
                 'suggested_price'    => $data['suggested_price'],
                 'online_posting_price'    => $data['online_posting_price'],
-                'online_posting_cunt'    => $data['online_posting_cunt'],
+                'online_posting_count'    => $data['online_posting_count'],
                 'link_url'    => $data['link_url'],
                 'store_name'    => $data['store_name'],
                 'source_responsible_person'    => $data['source_responsible_person'] ? ','.$data['source_responsible_person'].',':'',
@@ -153,7 +153,7 @@ class ControlGoods extends Model
         $ControlGoods->product_specs = $data['product_specs'];
         $ControlGoods->suggested_price = $data['suggested_price'];
         $ControlGoods->online_posting_price = $data['online_posting_price'];
-        $ControlGoods->online_posting_cunt = $data['online_posting_cunt'];
+        $ControlGoods->online_posting_count = $data['online_posting_count'];
         $ControlGoods->link_url = $data['link_url'];
         $ControlGoods->store_name = $data['store_name'];
         $ControlGoods->source_responsible_person = $data['source_responsible_person'];

+ 3 - 3
app/Models/Manager/Process/LowPriceGoods.php

@@ -43,7 +43,7 @@ class LowPriceGoods extends Model
             'product_specs'    => $data['product_specs'],
             'suggested_price'    => $data['suggested_price'],
             'online_posting_price'    => $data['online_posting_price'],
-            'online_posting_cunt'    => $data['online_posting_cunt'],
+            'online_posting_count'    => $data['online_posting_count'],
             'link_url'    => $data['link_url'],
             'store_name'    => $data['store_name'],
             'source_responsible_person'    => $data['source_responsible_person'],
@@ -86,7 +86,7 @@ class LowPriceGoods extends Model
                 'product_specs'    => $data['product_specs'],
                 'suggested_price'    => $data['suggested_price'],
                 'online_posting_price'    => $data['online_posting_price'],
-                'online_posting_cunt'    => $data['online_posting_cunt'],
+                'online_posting_count'    => $data['online_posting_count'],
                 'social_credit_code'    => $data['social_credit_code'],
                 'province_id'    => $data['province_id'],
                 'province_name'    => $data['province_name'],
@@ -173,7 +173,7 @@ class LowPriceGoods extends Model
         $LowPriceGoods->product_specs = $data['product_specs'];
         $LowPriceGoods->suggested_price = $data['suggested_price'];
         $LowPriceGoods->online_posting_price = $data['online_posting_price'];
-        $LowPriceGoods->online_posting_cunt = $data['online_posting_cunt'];
+        $LowPriceGoods->online_posting_count = $data['online_posting_count'];
         $LowPriceGoods->link_url = $data['link_url'];
         $LowPriceGoods->store_name = $data['store_name'];
         $LowPriceGoods->source_responsible_person = $data['source_responsible_person'];

+ 3 - 3
app/Models/Manager/Process/ViolationProduct.php

@@ -41,7 +41,7 @@ class ViolationProduct extends Model
             'company_name'    => $data['company_name'],
             'product_name'    => $data['product_name'],
             'product_specs'    => $data['product_specs'],
-            'online_posting_cunt'    => $data['online_posting_cunt'],
+            'online_posting_count'    => $data['online_posting_count'],
             'link_url'    => $data['link_url'],
             'store_name'    => $data['store_name'],
             'source_responsible_person'    => $data['source_responsible_person'],
@@ -81,7 +81,7 @@ class ViolationProduct extends Model
                 'company_name'    => $data['company_name'],
                 'product_name'    => $data['product_name'],
                 'product_specs'    => $data['product_specs'],
-                'online_posting_cunt'    => $data['online_posting_cunt'],
+                'online_posting_count'    => $data['online_posting_count'],
                 'social_credit_code'    => $data['social_credit_code'],
                 'province_id'    => $data['province_id'],
                 'province_name'    => $data['province_name'],
@@ -165,7 +165,7 @@ class ViolationProduct extends Model
         $ViolationProduct->company_name = $data['company_name'];
         $ViolationProduct->product_name = $data['product_name'];
         $ViolationProduct->product_specs = $data['product_specs'];
-        $ViolationProduct->online_posting_cunt = $data['online_posting_cunt'];
+        $ViolationProduct->online_posting_count = $data['online_posting_count'];
         $ViolationProduct->link_url = $data['link_url'];
         $ViolationProduct->store_name = $data['store_name'];
         $ViolationProduct->source_responsible_person = $data['source_responsible_person'];