[freeside-commits] freeside/FS/FS Schema.pm, 1.239.2.15, 1.239.2.16 svc_broadband.pm, 1.22, 1.22.2.1
Erik Levinson
levinse at wavetail.420.am
Fri Jan 21 18:45:34 PST 2011
Update of /home/cvs/cvsroot/freeside/FS/FS
In directory wavetail.420.am:/tmp/cvs-serv19362/FS/FS
Modified Files:
Tag: FREESIDE_2_1_BRANCH
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.239.2.15
retrieving revision 1.239.2.16
diff -u -w -d -r1.239.2.15 -r1.239.2.16
--- Schema.pm 19 Jan 2011 21:50:04 -0000 1.239.2.15
+++ Schema.pm 22 Jan 2011 02:45:32 -0000 1.239.2.16
@@ -2163,6 +2163,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.22.2.1
diff -u -w -d -r1.22 -r1.22.2.1
--- svc_broadband.pm 17 Sep 2010 18:07:07 -0000 1.22
+++ svc_broadband.pm 22 Jan 2011 02:45:32 -0000 1.22.2.1
@@ -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