Explorar el Código

Actualizo vendors

Maximiliano Schvindt hace 6 años
padre
commit
b6a32ffb7d
Se han modificado 3 ficheros con 7 adiciones y 8 borrados
  1. 1 2
      composer.json
  2. 4 4
      composer.lock
  3. 2 2
      src/StatsBundle/Admin/OnuAdmin.php

+ 1 - 2
composer.json

@@ -175,8 +175,7 @@
             "options": {
                 "local_pk": "./keys/bitbucket.id_rsa"
             }
-        },
-        "packagist": false
+        }
     },
     "require": {
         "php": ">=5.5.9",

+ 4 - 4
composer.lock

@@ -1642,7 +1642,7 @@
             "source": {
                 "type": "git",
                 "url": "ssh://git@infra.flowdat.com:222/VendorSoftwareFlowdat3/BaseAdmin.git",
-                "reference": "3a901b80d11841240048727b0353d9aa5975df49"
+                "reference": "d0c7faf0c4a016856eb800ab2fb75786213b27e5"
             },
             "type": "library",
             "autoload": {
@@ -1657,7 +1657,7 @@
                 "bootstrap",
                 "sonata"
             ],
-            "time": "2018-11-22T14:16:08+00:00"
+            "time": "2018-12-06T11:38:28+00:00"
         },
         {
             "name": "ik/device-bundle",
@@ -1805,7 +1805,7 @@
             "source": {
                 "type": "git",
                 "url": "ssh://git@gogs.infra.flowdat.com:222/VendorSoftwareFlowdat3/RedisBundle.git",
-                "reference": "f0ea0beb0e6a10325fabac65a24d9ae461497457"
+                "reference": "a73973b402e68d7fad48558b91d416acbf5621e6"
             },
             "require": {
                 "predis/predis": "^1.1"
@@ -1821,7 +1821,7 @@
                 "php-redis-service",
                 "redis"
             ],
-            "time": "2018-12-05T14:01:46+00:00"
+            "time": "2018-12-05T18:12:34+00:00"
         },
         {
             "name": "ik/stats/base-stats-bundle",

+ 2 - 2
src/StatsBundle/Admin/OnuAdmin.php

@@ -35,8 +35,6 @@ class OnuAdmin extends BaseAdmin
 
         $datagridMapper
             ->add('oltDeviceId', 'doctrine_orm_string', array(), 'choice', array('choices' => $choices))
-            ->add('ponPort')
-            ->add('status')
             ->add('ponSerialNumber', CallbackFilter::class, array(
                 'callback' => function (ProxyQuery $query, $alias, $field, $data) {
                     if (!$data || !is_array($data) || !array_key_exists('value', $data) || !isset($data['value'])) {
@@ -74,6 +72,8 @@ class OnuAdmin extends BaseAdmin
                         'placeholder' => $this->trans('sonata.filter.onu_client')
                     ]
                 ])
+            ->add('ponPort')
+            ->add('status')
         ;
     }