[freeside-commits] freeside/FS/FS Schema.pm, 1.261, 1.262 svc_phone.pm, 1.34, 1.35
Erik Levinson
levinse at wavetail.420.am
Mon Jan 10 11:45:00 PST 2011
Update of /home/cvs/cvsroot/freeside/FS/FS
In directory wavetail.420.am:/tmp/cvs-serv19789/FS/FS
Modified Files:
Schema.pm svc_phone.pm
Log Message:
vitelity API improvements for toll-free and fax, RT11009
Index: Schema.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/Schema.pm,v
retrieving revision 1.261
retrieving revision 1.262
diff -u -w -d -r1.261 -r1.262
--- Schema.pm 8 Jan 2011 00:54:56 -0000 1.261
+++ Schema.pm 10 Jan 2011 19:44:42 -0000 1.262
@@ -2974,6 +2974,8 @@
'domsvc', 'int', 'NULL', '', '', '',
'locationnum', 'int', 'NULL', '', '', '',
'route', 'varchar', 'NULL', $char_d, '', '',
+ 'forwarddst', 'varchar', 'NULL', 15, '', '',
+ 'email', 'varchar', 'NULL', 255, '', '',
'lnp_status', 'varchar', 'NULL', $char_d, '', '',
'portable', 'char', 'NULL', 1, '', '',
'lrn', 'char', 'NULL', 10, '', '',
Index: svc_phone.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/svc_phone.pm,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -w -d -r1.34 -r1.35
--- svc_phone.pm 7 Jan 2011 23:13:58 -0000 1.34
+++ svc_phone.pm 10 Jan 2011 19:44:43 -0000 1.35
@@ -83,6 +83,14 @@
Route id/number
+=item forwarddst
+
+Forwarding destination
+
+=item email
+
+Email address for virtual fax (fax-to-email) services
+
=item lnp_status
LNP Status (can be null, native, portedin, portingin, portin-reject,
@@ -170,6 +178,12 @@
'route' => { label => 'Route',
%dis2,
},
+ 'forwarddst' => { label => 'Forward Destination',
+ %dis2,
+ },
+ 'email' => { label => 'Email',
+ %dis2,
+ },
'lnp_status' => { label => 'LNP Status',
type => 'select-lnp_status.html',
%dis2,
@@ -464,6 +478,8 @@
|| $self->ut_foreign_keyn('domsvc', 'svc_domain', 'svcnum' )
|| $self->ut_foreign_keyn('locationnum', 'cust_location', 'locationnum')
|| $self->ut_textn('route')
+ || $self->ut_numbern('forwarddst')
+ || $self->ut_textn('email')
|| $self->ut_numbern('lrn')
|| $self->ut_numbern('lnp_desired_due_date')
|| $self->ut_numbern('lnp_due_date')
More information about the freeside-commits
mailing list