diff options
author | ivan <ivan> | 2002-02-27 22:39:14 +0000 |
---|---|---|
committer | ivan <ivan> | 2002-02-27 22:39:14 +0000 |
commit | 6a37289c12238d48ea864b8177216ca276b33a40 (patch) | |
tree | 5b19e5b3a4ad47d0ebd19edc9b1694c3baf8b29d /FS | |
parent | 9dacc694c1401117d7e34376aa4916f5a4810cab (diff) |
add status and statustext fields to cust_bill_event
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/cust_bill_event.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/FS/FS/cust_bill_event.pm b/FS/FS/cust_bill_event.pm index cc9ce7cb8..242b39e26 100644 --- a/FS/FS/cust_bill_event.pm +++ b/FS/FS/cust_bill_event.pm @@ -107,6 +107,8 @@ sub check { || $self->ut_number('invnum') || $self->ut_number('eventpart') || $self->ut_number('_date') + || $self->ut_enum('status', [qw( done failed )] + || $self->ut_textn('statustext'); ; return "Unknown invnum" |