zealerChina 1 year ago
parent
commit
f8d5f859b6

+ 9 - 2
application/admin/controller/Produceorder.php

@@ -610,7 +610,7 @@ class Produceorder extends Backend
                     $params['is_need_push'] = 1;
                     $params['is_push_zop'] = 0;
                     $params['is_auto'] = 0;
-                    $result = MobileOrder::insert($params);
+                    $result = MobileOrder::insertGetId($params);
 //                    exit();
 //                    $result = $this->model->allowField(true)->save($params);
                     Db::commit();
@@ -626,6 +626,9 @@ class Produceorder extends Backend
                     //$this->error($e->getMessage());
                 }
                 if ($result !== false) {
+                    // 推送订单
+                    ZopOrderService::push($result);
+                    
                     $this->success();
                 } else {
                     $this->error(__('No rows were inserted'));
@@ -698,7 +701,7 @@ class Produceorder extends Backend
             $model->save();
 
             // 只有未推送过, 并且产品信息已绑定的订单才推送
-            if ($model->is_push_zop == 0 && $model->api_goods_id > 0) {
+            if ($model->is_push_zop == 0) {
                 ZopOrderService::push($ids);
             }
 
@@ -1052,6 +1055,10 @@ class Produceorder extends Backend
                         $order->$key = $value;
                         $order->save();
                     }
+                    // 只有未推送过, 并且产品信息已绑定的订单才推送
+                    if ($order->is_push_zop == 0) {
+                        ZopOrderService::push($ids);
+                    }
                 }
             }
 

+ 4 - 2
public/assets/js/backend/produceorder.js

@@ -214,8 +214,10 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form','clipboard'],
                         a.push(`<div>${order.remark}</div>`)
                         a.push(`<a class="btn btn-info btn-xs btn-sub-remark" data-id="${order.id}">备注</a>`)
                         return `<div style="text-align: left;font-size: 10px;max-width: 200px;" class="break-words">${a.join('')}</div>`
-                    },width:'15%'},
-                    {field: 'failure_reason', title: '失败原因',operate: 'false'},
+                    },width:'10%'},
+                    // {field: 'failure_reason', title: '失败原因',operate: 'false',width:'10%'},
+                    {field: 'failure_reason', title: __('失败原因'), operate: false,align:'left', class: 'autocontent', formatter: Table.api.formatter.content},
+                    // {field: 'title', title: __('Title'), operate: 'LIKE',align:'left', class: 'autocontent', formatter: Table.api.formatter.content},
                     // {field: 'remark', title: '失败原因&备注',formatter: Table.api.formatter.datetime,addClass:'datetimerange',operate: 'range'},
                     {field: 'trans_no', title: __('Trans_no'),visible: false,operate: "like"},
                     {