diff options
Diffstat (limited to 'FS/FS/svc_phone.pm')
-rw-r--r-- | FS/FS/svc_phone.pm | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/FS/FS/svc_phone.pm b/FS/FS/svc_phone.pm index 0b001d706..cffe1e3f6 100644 --- a/FS/FS/svc_phone.pm +++ b/FS/FS/svc_phone.pm @@ -83,6 +83,14 @@ Optional svcnum from svc_pbx 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 @@ sub table_info { '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 @@ sub check { || $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') |