summaryrefslogtreecommitdiff
path: root/FS
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2020-03-16 12:23:17 -0700
committerIvan Kohler <ivan@freeside.biz>2020-03-16 12:23:17 -0700
commit1a320aa8f679a355bd3678ccceb5d7ecf7b0aeba (patch)
tree7976eb3298a065dc582f5004247cb06e6548b9cf /FS
parentffc8927ad1df5a565256bdb47210006afa4b2f78 (diff)
add dsl, circuit and fiber services to email and RT ticket exports, RT#84345
Diffstat (limited to 'FS')
-rw-r--r--FS/FS/part_export/rt_ticket.pm4
-rw-r--r--FS/FS/part_export/send_email.pm4
2 files changed, 6 insertions, 2 deletions
diff --git a/FS/FS/part_export/rt_ticket.pm b/FS/FS/part_export/rt_ticket.pm
index 80254fc..7c3ebb9 100644
--- a/FS/FS/part_export/rt_ticket.pm
+++ b/FS/FS/part_export/rt_ticket.pm
@@ -123,7 +123,9 @@ tie my %options, 'Tie::IxHash', (
);
%info = (
- 'svc' => [qw( svc_acct svc_broadband svc_phone svc_domain )],
+ 'svc' => [qw( svc_acct svc_broadband svc_phone svc_domain svc_dsl
+ svc_circuit svc_fiber
+ )],
'desc' =>
'Create an RT ticket',
'options' => \%options,
diff --git a/FS/FS/part_export/send_email.pm b/FS/FS/part_export/send_email.pm
index 9afc254..a54fa16 100644
--- a/FS/FS/part_export/send_email.pm
+++ b/FS/FS/part_export/send_email.pm
@@ -80,7 +80,9 @@ tie my %options, 'Tie::IxHash', (
);
%info = (
- 'svc' => [qw( svc_acct svc_hardware svc_broadband svc_phone svc_domain )],
+ 'svc' => [qw( svc_acct svc_hardware svc_broadband svc_phone svc_domain
+ svc_dsl svc_circuit svc_fiber
+ )],
'desc' =>
'Send an email message',
'options' => \%options,