summaryrefslogtreecommitdiff
path: root/FS/FS/dsl_note.pm
diff options
context:
space:
mode:
authorlevinse <levinse>2010-12-01 05:56:10 +0000
committerlevinse <levinse>2010-12-01 05:56:10 +0000
commitad17d8651adb39fdef45f509490a6b2c6eac8301 (patch)
tree870832dd91871a0356b044f840d364df416150a6 /FS/FS/dsl_note.pm
parentb638e75f063e231edaf3f3859d27f3981c12c999 (diff)
-ikano, svc_dsl, dsl_note, and qual on-going implementation, RT7111
-add predelete_hook_first and predelete_hook into svc_Common (don't use yet, might change or be removed soon) -add new cust_location fields into geocode_Mixin location_hash
Diffstat (limited to 'FS/FS/dsl_note.pm')
-rw-r--r--FS/FS/dsl_note.pm8
1 files changed, 4 insertions, 4 deletions
diff --git a/FS/FS/dsl_note.pm b/FS/FS/dsl_note.pm
index 886365b..0155cbd 100644
--- a/FS/FS/dsl_note.pm
+++ b/FS/FS/dsl_note.pm
@@ -34,11 +34,11 @@ FS::Record. The following fields are currently supported:
=item svcnum - the DSL for this note, see L<FS::svc_dsl>
-=item by - export-specific, e.g. note's author or ISP vs. telco/vendor
+=item user - export-specific, e.g. note's author or ISP vs. telco/vendor
=item priority - export-specific, e.g. high priority or not; not used by most
-=item date - note date
+=item _date - note date
=item note - the note
@@ -105,9 +105,9 @@ sub check {
my $error =
$self->ut_numbern('notenum')
|| $self->ut_foreign_key('svcnum', 'svc_dsl', 'svcnum')
- || $self->ut_textn('by')
+ || $self->ut_textn('user')
|| $self->ut_alphasn('priority')
- || $self->ut_numbern('date')
+ || $self->ut_numbern('_date')
|| $self->ut_text('note')
;
return $error if $error;