tongshanglei 2 years ago
parent
commit
5a2e24e4b2

+ 1 - 6
catch/hydraulic/controller/Hydraulic.php

@@ -37,9 +37,7 @@ class Hydraulic extends CatchController
         if(isset($data['out_date']) && is_int($data['out_date'])){
             $data['out_date'] = date('Y-m-d',$data['out_date']);
         }
-        if(isset($data['out_date']) && !$data['out_date']){
-            $data['out_date'] = null;
-        }
+  
         return CatchResponse::success($this->hydraulicModel->storeBy($data));
     }
     
@@ -65,9 +63,6 @@ class Hydraulic extends CatchController
         if(isset($data['out_date']) && is_int($data['out_date'])){
             $data['out_date'] = date('Y-m-d',$data['out_date']);
         }
-        if(isset($data['out_date']) && !$data['out_date']){
-            $data['out_date'] = null;
-        }
         return CatchResponse::success($this->hydraulicModel->updateBy($id, $data));
     }
     

+ 23 - 0
catch/hydraulic/model/Hydraulic.php

@@ -143,6 +143,29 @@ class Hydraulic extends Model
            return '-';
        }
     }
+
+    /**
+     * 校验日期
+     */
+    public function getEffectiveTimeAttr($value)
+    {
+       if($value){
+            return date('Y-m-d H:i:s',$value);
+       }else{
+           return '-';
+       }
+    }
+        /**
+     * 校验日期
+     */
+    public function getCheckTimeAttr($value)
+    {
+       if($value){
+            return date('Y-m-d H:i:s',$value);
+       }else{
+           return '-';
+       }
+    }
     /**
      * 获取告警状态文本
      */

+ 9 - 1
catch/wind/controller/Fan.php

@@ -54,10 +54,16 @@ class Fan extends CatchController
         $save_data=array(
             'wind_id'=>$data['wind_id'],
             'fan_model'=>$data['fan_model'],
+            'supplier'=>$data['supplier'],
+            'out_date'=>date('Y-m-d',$data['out_date']),
+            'address'=>$data['address'],
             'info'=>$data['info'],
             'creator_id' => $data['creator_id'],
             'created_at' => time(),
         );
+        if(isset($data['out_date']) && is_int($data['out_date'])){
+            $save_data['out_date'] = date('Y-m-d',$data['out_date']);
+        }
         $add_fans=array();
         if($data['mul_number']){
             $numArr=explode(',',$data['mul_number']);
@@ -104,7 +110,9 @@ class Fan extends CatchController
     public function update(Request $request, $id) : \think\Response
     {   $data = $request->post();
       
-       
+        if(isset($data['out_date']) && is_int($data['out_date'])){
+            $data['out_date'] = date('Y-m-d',$data['out_date']);
+        }
         return CatchResponse::success($this->fanModel->updateBy($id, $data));
     }
     

+ 5 - 1
catch/wind/database/migrations/20220428195332_fan.php

@@ -32,7 +32,11 @@ class Fan extends Migrator
         $table = $this->table('fan', ['engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '风机表' ,'id' => 'id','signed' => true ,'primary_key' => ['id']]);
         $table->addColumn('wind_id', 'integer', ['limit' => MysqlAdapter::INT_REGULAR,'null' => false,'default' => 0,'signed' => true,'comment' => '风厂的id',])
 			->addColumn('number', 'string', ['limit' => 32,'null' => false,'default' => 0,'signed' => true,'comment' => '机位号',])
-			->addColumn('fan_model', 'string', ['limit' => 32,'null' => false,'default' => 0,'signed' => true,'comment' => '风机型号',])
+            ->addColumn('fan_model', 'string', ['limit' => 32,'null' => false,'default' => 0,'signed' => true,'comment' => '风机型号',])
+            ->addColumn('supplier', 'string', ['limit' => 50,'null' => true,'signed' => true,'comment' => '供应商',])
+            ->addColumn('out_date', 'date', ['null' => true,'signed' => true,'comment' => '出厂日期',])
+			->addColumn('address', 'string', ['limit' => 100,'null' => true,'signed' => true,'comment' => '地址',])
+            
             ->addColumn('longitude', 'decimal', ['precision' => 10,'scale' => 6,'null' => true,'signed' => true,'comment' => '经度',])
             ->addColumn('latitude', 'decimal', ['precision' => 10,'scale' => 6,'null' => true,'signed' => true,'comment' => '纬度',])
 			->addColumn('info', 'string', ['limit' => 100,'null' => true,'signed' => true,'comment' => '备注',])

+ 3 - 0
catch/wind/model/Fan.php

@@ -23,9 +23,12 @@ class Fan extends Model
         // 编号
         'number',
         'fan_model',
+        'out_date',
+        'supplier',
         'longitude',
         'latitude',
         'info',
+        'address',
         // 创建人ID
         'creator_id',
         // 创建时间