4 use base qw( FS::Record );
5 use FS::Record qw( qsearch qsearchs );
9 FS::dsl_note - Object methods for dsl_note records
15 $record = new FS::dsl_note \%hash;
16 $record = new FS::dsl_note { 'column' => 'value' };
18 $error = $record->insert;
20 $error = $new_record->replace($old_record);
22 $error = $record->delete;
24 $error = $record->check;
28 An FS::dsl_note object represents a DSL order note. FS::dsl_note inherits from
29 FS::Record. The following fields are currently supported:
33 =item notenum - primary key
35 =item svcnum - the DSL for this note, see L<FS::svc_dsl>
37 =item author - export-specific, e.g. note's author or ISP vs. telco/vendor
39 =item priority - export-specific, e.g. high priority or not; not used by most
41 =item _date - note date
54 Creates a new note. To add the note to the database, see L<"insert">.
56 Note that this stores the hash reference, not a distinct copy of the hash it
57 points to. You can ask the object for a copy with the I<hash> method.
61 # the new method can be inherited from FS::Record, if a table method is defined
63 sub table { 'dsl_note'; }
67 Adds this record to the database. If there is an error, returns the error,
68 otherwise returns false.
72 # the insert method can be inherited from FS::Record
76 Delete this record from the database.
80 # the delete method can be inherited from FS::Record
82 =item replace OLD_RECORD
84 Replaces the OLD_RECORD with this one in the database. If there is an error,
85 returns the error, otherwise returns false.
89 # the replace method can be inherited from FS::Record
93 Checks all fields to make sure this is a valid note. If there is
94 an error, returns the error, otherwise returns false. Called by the insert
99 # the check method should currently be supplied - FS::Record contains some
100 # data checking routines
106 $self->ut_numbern('notenum')
107 || $self->ut_foreign_key('svcnum', 'svc_dsl', 'svcnum')
108 || $self->ut_textn('author')
109 || $self->ut_alphasn('priority')
110 || $self->ut_numbern('_date')
111 || $self->ut_text('note')
113 return $error if $error;
122 L<FS::Record>, schema.html from the base documentation.