summaryrefslogtreecommitdiff
path: root/FS/FS/cust_credit_bill_pkg.pm
diff options
context:
space:
mode:
authorivan <ivan>2006-09-15 05:10:36 +0000
committerivan <ivan>2006-09-15 05:10:36 +0000
commit685ebecc66bd944f82f997b990fe4a668360d8ed (patch)
tree5697ad26ad4207e9f8c5b2491491f4271b5cb7a4 /FS/FS/cust_credit_bill_pkg.pm
parent35154452fe5ad96338e79f984236d265e1cbbbdf (diff)
add sdate and edate to cust_bill_pay_pkg and cust_credit_bill_pkg tables
Diffstat (limited to 'FS/FS/cust_credit_bill_pkg.pm')
-rw-r--r--FS/FS/cust_credit_bill_pkg.pm9
1 files changed, 9 insertions, 0 deletions
diff --git a/FS/FS/cust_credit_bill_pkg.pm b/FS/FS/cust_credit_bill_pkg.pm
index 98521d6..7252be5 100644
--- a/FS/FS/cust_credit_bill_pkg.pm
+++ b/FS/FS/cust_credit_bill_pkg.pm
@@ -44,8 +44,15 @@ The following fields are currently supported:
=item setuprecur - 'setup' or 'recur', designates whether the payment was applied to the setup or recurring portion of the line item.
+=item sdate - starting date of recurring fee
+
+=item edate - ending date of recurring fee
+
=back
+sdate and edate are specified as UNIX timestamps; see L<perlfunc/"time">. Also
+see L<Time::Local> and L<Date::Parse> for conversion functions.
+
=head1 METHODS
=over 4
@@ -109,6 +116,8 @@ sub check {
|| $self->ut_foreign_key('billpkgnum', 'cust_bill_pkg', 'billpkgnum' )
|| $self->ut_money('amount')
|| $self->ut_enum('setuprecur', [ 'setup', 'recur' ] )
+ || $self->ut_numbern('sdate')
+ || $self->ut_numbern('edate')
;
return $error if $error;