[freeside-commits] freeside/FS/FS Schema.pm, 1.266, 1.267 svc_broadband.pm, 1.22, 1.23

Erik Levinson levinse at wavetail.420.am
Fri Jan 21 18:45:29 PST 2011


Update of /home/cvs/cvsroot/freeside/FS/FS
In directory wavetail.420.am:/tmp/cvs-serv19355/FS/FS

Modified Files:
	Schema.pm svc_broadband.pm 
Log Message:
add svc_broadband shellcommands export, RT11250

Index: Schema.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/Schema.pm,v
retrieving revision 1.266
retrieving revision 1.267
diff -u -w -d -r1.266 -r1.267
--- Schema.pm	19 Jan 2011 21:50:02 -0000	1.266
+++ Schema.pm	22 Jan 2011 02:45:27 -0000	1.267
@@ -2353,6 +2353,7 @@
         'altitude', 'decimal', 'NULL', '', '', '', 
         'vlan_profile', 'varchar', 'NULL', $char_d, '', '', 
         'performance_profile', 'varchar', 'NULL', $char_d, '', '',
+        'plan_id', 'varchar', 'NULL', $char_d, '', '',
       ],
       'primary_key' => 'svcnum',
       'unique'      => [ [ 'mac_addr' ] ],

Index: svc_broadband.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/svc_broadband.pm,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -w -d -r1.22 -r1.23
--- svc_broadband.pm	17 Sep 2010 18:07:07 -0000	1.22
+++ svc_broadband.pm	22 Jan 2011 02:45:27 -0000	1.23
@@ -70,6 +70,8 @@
 interfaces thus saving address space.  This has been found to work on most NAT
 routers available.
 
+=item plan_id
+
 =back
 
 =head1 METHODS
@@ -105,6 +107,14 @@
                          'select_label' => 'cidr',
                          'disable_inventory' => 1,
                        },
+     'plan_id' => 'Service Plan Id',
+     'performance_profile' => 'Peformance Profile',
+     'authkey'      => 'Authentication key',
+     'mac_addr'     => 'MAC address',
+     'latitude'     => 'Latitude',
+     'longitude'    => 'Longitude',
+     'altitude'     => 'Altitude',
+     'vlan_profile' => 'VLAN profile',
     },
   };
 }
@@ -337,6 +347,7 @@
     || $self->ut_coordn('longitude', -180, 180)
     || $self->ut_sfloatn('altitude')
     || $self->ut_textn('vlan_profile')
+    || $self->ut_textn('plan_id')
   ;
   return $error if $error;
 



More information about the freeside-commits mailing list