add h_svc_cert.pm, fixes invoices with certs, RT#15902
authorivan <ivan>
Thu, 5 Jan 2012 01:13:34 +0000 (01:13 +0000)
committerivan <ivan>
Thu, 5 Jan 2012 01:13:34 +0000 (01:13 +0000)
FS/FS.pm
FS/FS/h_svc_cert.pm [new file with mode: 0644]
FS/MANIFEST
FS/t/h_svc_cert.t [new file with mode: 0644]

index 2552dbd..c3a1ac2 100644 (file)
--- a/FS/FS.pm
+++ b/FS/FS.pm
@@ -204,6 +204,8 @@ L<FS::svc_pbx> - PBX service class
 
 L<FS::svc_cert> - Certificate service class
 
+L<FS::svc_dish> - Dish network service class
+
 L<FS::inventory_class> - Inventory classes
 
 L<FS::inventory_item> - Inventory items
@@ -434,17 +436,27 @@ L<FS::h_svc_acct> - Historical account objects
 
 L<FS::h_svc_broadband> - Historical broadband connection objects
 
+L<FS::h_svc_cert> - Historical certificate services
+
+L<FS::h_svc_dish> - Historical Dish Network services
+
 L<FS::h_svc_domain> - Historical domain objects
 
+L<FS::h_svc_dsl> - Historical DSL objects
+
 L<FS::h_svc_external> - Historical externally tracked service objects
 
 L<FS::h_svc_forward> - Historical mail forwarding alias objects
 
+L<FS::h_svc_hardware> - Historical isntalled hardware service objects
+
 L<FS::h_svc_mailinglist> - Historical mailing list objects
 
+L<FS::h_svc_pbx> - Historical PBX objects
+
 L<FS::h_svc_phone> - Historical phone number objects
 
-L<FS::h_svc_pbx> - Historical PBX objects
+L<FS::h_svc_port> - Historical port number objects
 
 L<FS::h_svc_www> - Historical web virtual host objects
 
diff --git a/FS/FS/h_svc_cert.pm b/FS/FS/h_svc_cert.pm
new file mode 100644 (file)
index 0000000..f605e70
--- /dev/null
@@ -0,0 +1,33 @@
+package FS::h_svc_cert;
+
+use strict;
+use vars qw( @ISA );
+use FS::h_Common;
+use FS::svc_cert;
+
+@ISA = qw( FS::h_Common FS::svc_cert );
+
+sub table { 'h_svc_cert' };
+
+=head1 NAME
+
+FS::h_svc_cert - Historical certificate service objects
+
+=head1 SYNOPSIS
+
+=head1 DESCRIPTION
+
+An FS::h_svc_cert object represents a historical certificate service.
+FS::h_svc_cert inherits from FS::h_Common and FS::svc_cert.
+
+=head1 BUGS
+
+=head1 SEE ALSO
+
+L<FS::h_Common>, L<FS::svc_cert>, L<FS::Record>, schema.html from the base
+documentation.
+
+=cut
+
+1;
+
index dac2af0..49d27b4 100644 (file)
@@ -628,3 +628,5 @@ FS/tower.pm
 t/tower.t
 FS/tower_sector.pm
 t/tower_sector.t
+FS/h_svc_cert.pm
+t/h_svc_cert.t
diff --git a/FS/t/h_svc_cert.t b/FS/t/h_svc_cert.t
new file mode 100644 (file)
index 0000000..43d9527
--- /dev/null
@@ -0,0 +1,5 @@
+BEGIN { $| = 1; print "1..1\n" }
+END {print "not ok 1\n" unless $loaded;}
+use FS::h_svc_cert;
+$loaded=1;
+print "ok 1\n";