autoload methods returning foreign records, RT#13971
[freeside.git] / FS / FS / vend_main.pm
1 package FS::vend_main;
2 use base qw( FS::Record );
3
4 use strict;
5
6 =head1 NAME
7
8 FS::vend_main - Object methods for vend_main records
9
10 =head1 SYNOPSIS
11
12   use FS::vend_main;
13
14   $record = new FS::vend_main \%hash;
15   $record = new FS::vend_main { 'column' => 'value' };
16
17   $error = $record->insert;
18
19   $error = $new_record->replace($old_record);
20
21   $error = $record->delete;
22
23   $error = $record->check;
24
25 =head1 DESCRIPTION
26
27 An FS::vend_main object represents a vendor.  FS::vend_main inherits from
28 FS::Record.  The following fields are currently supported:
29
30 =over 4
31
32 =item vendnum
33
34 primary key
35
36 =item vendname
37
38 vendname
39
40 =item classnum
41
42 classnum
43
44 =item disabled
45
46 disabled
47
48
49 =back
50
51 =head1 METHODS
52
53 =over 4
54
55 =item new HASHREF
56
57 Creates a new vendor.  To add the vendor to the database, see L<"insert">.
58
59 Note that this stores the hash reference, not a distinct copy of the hash it
60 points to.  You can ask the object for a copy with the I<hash> method.
61
62 =cut
63
64 sub table { 'vend_main'; }
65
66 =item insert
67
68 Adds this record to the database.  If there is an error, returns the error,
69 otherwise returns false.
70
71 =item delete
72
73 Delete this record from the database.
74
75 =item replace OLD_RECORD
76
77 Replaces the OLD_RECORD with this one in the database.  If there is an error,
78 returns the error, otherwise returns false.
79
80 =item check
81
82 Checks all fields to make sure this is a valid vendor.  If there is
83 an error, returns the error, otherwise returns false.  Called by the insert
84 and replace methods.
85
86 =cut
87
88 sub check {
89   my $self = shift;
90
91   my $error = 
92     $self->ut_numbern('vendnum')
93     || $self->ut_text('vendname')
94     || $self->ut_foreign_key('classnum', 'vend_class', 'classnum')
95     || $self->ut_enum('disabled', [ '', 'Y' ] )
96   ;
97   return $error if $error;
98
99   $self->SUPER::check;
100 }
101
102 =item vend_class
103
104 =back
105
106 =head1 BUGS
107
108 =head1 SEE ALSO
109
110 L<FS::Record>, schema.html from the base documentation.
111
112 =cut
113
114 1;
115