diff options
| author | ivan <ivan> | 2008-09-08 02:48:36 +0000 | 
|---|---|---|
| committer | ivan <ivan> | 2008-09-08 02:48:36 +0000 | 
| commit | 19258154a237c020d06e9d810e65b7c5742c7fd4 (patch) | |
| tree | 264fd77ff3be99e2240d192500adba5f2017f5fa | |
| parent | b96629eb08231f78f334f78c0bd6c277c60844fa (diff) | |
removing unacceptable display fields from cust_bill_pkg
| -rw-r--r-- | FS/FS/cust_bill_pkg.pm | 9 | 
1 files changed, 0 insertions, 9 deletions
| diff --git a/FS/FS/cust_bill_pkg.pm b/FS/FS/cust_bill_pkg.pm index a1f0f16e1..2bfde6d28 100644 --- a/FS/FS/cust_bill_pkg.pm +++ b/FS/FS/cust_bill_pkg.pm @@ -47,8 +47,6 @@ supported:  =item pkgnum - package (see L<FS::cust_pkg>) or 0 for the special virtual sales tax package, or -1 for the virtual line item (itemdesc is used for the line)  =item pkgpart_override - optional package definition (see L<FS::part_pkg>) override -=item type - can be set to U for usage; more later -  =item setup - setup fee  =item recur - recurring fee @@ -61,10 +59,6 @@ supported:  =item section - Invoice section (overrides normal package section) -=duplicate - Indicates this item is a candidate for summarizing and duplicating at print time - -=post_total - A hint that this item should appear after invoice totals -  =cut  sub section { @@ -201,9 +195,6 @@ sub check {        || $self->ut_numbern('edate')        || $self->ut_textn('itemdesc')        || $self->ut_textn('section') -      || $self->ut_enum('duplicate', [ '', 'Y' ]) -      || $self->ut_enum('post_total', [ '', 'Y' ]) -      || $self->ut_enum('type', [ '', 'U' ])      #only usage for now    ;    return $error if $error; | 
