X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=FS%2FFS%2Fdsl_note.pm;h=832fced9274f8c0b104b82581c08f994938813ca;hp=886365b680777522767c918fa27feffd8b5f66ee;hb=a36e0f8a0f69349dafaa16d1d2d57dfb6e5dbc85;hpb=1594e450be1c4f0c9f9a2d98ab72c714a4695bdc diff --git a/FS/FS/dsl_note.pm b/FS/FS/dsl_note.pm index 886365b68..832fced92 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 -=item by - export-specific, e.g. note's author or ISP vs. telco/vendor +=item author - 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('author') || $self->ut_alphasn('priority') - || $self->ut_numbern('date') + || $self->ut_numbern('_date') || $self->ut_text('note') ; return $error if $error;