فهرست منبع

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;
     }