Browse Source

糊盒班组优化

unknown 4 months ago
parent
commit
aff09720cd
1 changed files with 7 additions and 1 deletions
  1. 7 1
      application/api/controller/GluingReport.php

+ 7 - 1
application/api/controller/GluingReport.php

@@ -380,6 +380,7 @@ class GluingReport extends Api
         $machineCode = \db('dic_lzde')->where('适用机型',$machine)->value('sys_bh');
         $machineCode = \db('dic_lzde')->where('适用机型',$machine)->value('sys_bh');
         $data = \db('设备_糊盒报工采集')->where('sczl_jtbh',$machine)->order('UID desc')->find();
         $data = \db('设备_糊盒报工采集')->where('sczl_jtbh',$machine)->order('UID desc')->find();
         $list = [];
         $list = [];
+        $list['班组ID'] = $data['班组ID'];
         $row = [];
         $row = [];
         if (!empty($data['sczl_gdbh'])){
         if (!empty($data['sczl_gdbh'])){
             $endTime = \db('工单_工艺资料')
             $endTime = \db('工单_工艺资料')
@@ -500,6 +501,11 @@ class GluingReport extends Api
         }
         }
     }
     }
 
 
-    //
+    //糊盒设备运行跟踪数据页面显示
+    public function getGluingReportDataList()
+    {
+        if (Request::instance()->isPost() == false) {}
+
+    }
 
 
 }
 }