service refactor!
[freeside.git] / FS / FS / svc_external.pm
1 package FS::svc_external;
2
3 use strict;
4 use vars qw(@ISA);
5 use FS::Conf;
6 use FS::svc_External_Common;
7
8 @ISA = qw( FS::svc_External_Common );
9
10 =head1 NAME
11
12 FS::svc_external - Object methods for svc_external records
13
14 =head1 SYNOPSIS
15
16   use FS::svc_external;
17
18   $record = new FS::svc_external \%hash;
19   $record = new FS::svc_external { 'column' => 'value' };
20
21   $error = $record->insert;
22
23   $error = $new_record->replace($old_record);
24
25   $error = $record->delete;
26
27   $error = $record->check;
28
29   $error = $record->suspend;
30
31   $error = $record->unsuspend;
32
33   $error = $record->cancel;
34
35 =head1 DESCRIPTION
36
37 An FS::svc_external object represents a generic externally tracked service.
38 FS::svc_external inherits from FS::svc_External_Common (and FS::svc_Common).
39 The following fields are currently supported:
40
41 =over 4
42
43 =item svcnum - primary key
44
45 =item id - unique number of external record
46
47 =item title - for invoice line items
48
49 =back
50
51 =head1 METHODS
52
53 =over 4
54
55 =item new HASHREF
56
57 Creates a new external service.  To add the external service to the database,
58 see L<"insert">.  
59
60 Note that this stores the hash reference, not a distinct copy of the hash it
61 points to.  You can ask the object for a copy with the I<hash> method.
62
63 =cut
64
65 sub table_info {
66   {
67     'name' => 'External service',
68     'sorts' => 'id',
69     'display_weight' => 90,
70     'cancel_weight'  => 10,
71     'fields' => {
72     },
73   };
74 }
75
76 sub table { 'svc_external'; }
77
78 # oh!  this should be moved to svc_artera_turbo or something now
79 sub label {
80   my $self = shift;
81   my $conf = new FS::Conf;
82   if ( $conf->config('svc_external-display_type') eq 'artera_turbo' ) {
83     sprintf('%010d', $self->id). '-'.
84       substr('0000000000'.uc($self->title), -10);
85   } else {
86     $self->SUPER::label;
87   }
88 }
89
90 =item insert [ , OPTION => VALUE ... ]
91
92 Adds this external service to the database.  If there is an error, returns the
93 error, otherwise returns false.
94
95 The additional fields pkgnum and svcpart (see L<FS::cust_svc>) should be 
96 defined.  An FS::cust_svc record will be created and inserted.
97
98 Currently available options are: I<depend_jobnum>
99
100 If I<depend_jobnum> is set (to a scalar jobnum or an array reference of
101 jobnums), all provisioning jobs will have a dependancy on the supplied
102 jobnum(s) (they will not run until the specific job(s) complete(s)).
103
104 =cut
105
106 #sub insert {
107 #  my $self = shift;
108 #  my $error;
109 #
110 #  $error = $self->SUPER::insert(@_);
111 #  return $error if $error;
112 #
113 #  '';
114 #}
115
116 =item delete
117
118 Delete this record from the database.
119
120 =cut
121
122 #sub delete {
123 #  my $self = shift;
124 #  my $error;
125 #
126 #  $error = $self->SUPER::delete;
127 #  return $error if $error;
128 #
129 #  '';
130 #}
131
132
133 =item replace OLD_RECORD
134
135 Replaces the OLD_RECORD with this one in the database.  If there is an error,
136 returns the error, otherwise returns false.
137
138 =cut
139
140 #sub replace {
141 #  my ( $new, $old ) = ( shift, shift );
142 #  my $error;
143 #
144 #  $error = $new->SUPER::replace($old);
145 #  return $error if $error;
146 #
147 #  '';
148 #}
149
150 =item suspend
151
152 Called by the suspend method of FS::cust_pkg (see L<FS::cust_pkg>).
153
154 =item unsuspend
155
156 Called by the unsuspend method of FS::cust_pkg (see L<FS::cust_pkg>).
157
158 =item cancel
159
160 Called by the cancel method of FS::cust_pkg (see L<FS::cust_pkg>).
161
162 =item check
163
164 Checks all fields to make sure this is a valid external service.  If there is
165 an error, returns the error, otherwise returns false.  Called by the insert
166 and replace methods.
167
168 =cut
169
170 #sub check {
171 #  my $self = shift;
172 #  my $error;
173 #
174 #  $error = $self->SUPER::delete;
175 #  return $error if $error;
176 #
177 #  '';
178 #}
179
180 =back
181
182 =head1 BUGS
183
184 =head1 SEE ALSO
185
186 L<FS::svc_External_Common>, L<FS::svc_Common>, L<FS::Record>, L<FS::cust_svc>,
187 L<FS::part_svc>, L<FS::cust_pkg>, schema.html from the base documentation.
188
189 =cut
190
191 1;
192