X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Fcust_bill_pkg_detail.pm;h=d0cbdbec001fc57658234cccde95785e08128405;hb=4604b94aa453d00d16f2de0533b9138e0e9c3355;hp=9ac164ced12f2e58046ad886fdc2c90b067c7522;hpb=9d5ada5763fdeca4f90a7357ab7c384b52c1c41c;p=freeside.git diff --git a/FS/FS/cust_bill_pkg_detail.pm b/FS/FS/cust_bill_pkg_detail.pm index 9ac164ced..d0cbdbec0 100644 --- a/FS/FS/cust_bill_pkg_detail.pm +++ b/FS/FS/cust_bill_pkg_detail.pm @@ -57,6 +57,8 @@ inherits from FS::Record. The following fields are currently supported: =item accountcode - accountcode +=item startdate - CDR startdate, if any + =item detail - detail description =back @@ -84,27 +86,15 @@ sub table { 'cust_bill_pkg_detail'; } Adds this record to the database. If there is an error, returns the error, otherwise returns false. -=cut - -# the insert method can be inherited from FS::Record - =item delete Delete this record from the database. -=cut - -# the delete method can be inherited from FS::Record - =item replace OLD_RECORD Replaces the OLD_RECORD with this one in the database. If there is an error, returns the error, otherwise returns false. -=cut - -# the replace method can be inherited from FS::Record - =item check Checks all fields to make sure this is a valid line item detail. If there is @@ -143,6 +133,7 @@ sub check { || $self->ut_text('detail') || $self->ut_foreign_keyn('classnum', 'usage_class', 'classnum') || $self->$phonenum_check_method('phonenum') + || $self->ut_numbern('startdate') || $self->SUPER::check ; @@ -161,11 +152,13 @@ for tabular appearance in those environments if possible. If I is set then the format is processed by this function before being returned. +DEPRECATED? (mostly unused, expensive) If I is set then the detail is handed to this callback for processing. =cut +#totally false laziness w/cust_bill_pkg->detail sub formatted { my ( $self, %opt ) = @_; my $format = $opt{format} || ''; @@ -233,6 +226,18 @@ sub formatted { ; } +=item cust_bill_pkg + +Returns the L object (the invoice line item) that +this detail belongs to. + +=cut + +sub cust_bill_pkg { + my $self = shift; + my $billpkgnum = $self->billpkgnum or return ''; + FS::cust_bill_pkg->by_key($billpkgnum); +} # Used by FS::Upgrade to migrate to a new database schema sub _upgrade_schema { # class method