소스 검색

Changed ponSerialNumber to auth in action.

Maximiliano Schvindt 6 년 전
부모
커밋
4d32ec342d
2개의 변경된 파일7개의 추가작업 그리고 3개의 파일을 삭제
  1. 2 2
      app/DoctrineMigrations/src/action.yml
  2. 5 1
      src/FTTHBundle/Entity/ONU.php

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 2 - 2
app/DoctrineMigrations/src/action.yml


+ 5 - 1
src/FTTHBundle/Entity/ONU.php

@@ -355,7 +355,11 @@ class ONU implements DeviceInterface, TenancyIdTraitInterface, LocationInterface
      */
     public function setMac($mac)
     {
-        $this->mac = strtolower($mac);
+        if(!empty($mac)) {
+            $this->mac = strtolower($mac);
+        } else {
+            $this->mac = null;
+        }
 
         return $this;
     }