Add a new table for inventory with for DIDs/serials/etc., and an additional
[freeside.git] / FS / FS / inventory_item.pm
1 package FS::inventory_item;
2
3 use strict;
4 use vars qw( @ISA );
5 use FS::Record qw( qsearch qsearchs );
6 use FS::inventory_class;
7
8 @ISA = qw(FS::Record);
9
10 =head1 NAME
11
12 FS::inventory_item - Object methods for inventory_item records
13
14 =head1 SYNOPSIS
15
16   use FS::inventory_item;
17
18   $record = new FS::inventory_item \%hash;
19   $record = new FS::inventory_item { 'column' => 'value' };
20
21   $error = $record->insert;
22
23   $error = $new_record->replace($old_record);
24
25   $error = $record->delete;
26
27   $error = $record->check;
28
29 =head1 DESCRIPTION
30
31 An FS::inventory_item object represents a specific piece of (real or virtual)
32 inventory, such as a specific DID or serial number.  FS::inventory_item
33 inherits from FS::Record.  The following fields are currently supported:
34
35 =over 4
36
37 =item itemnum - primary key
38
39 =item classnum - Inventory class (see L<FS::inventory_class>)
40
41 =item item - Item identifier (unique within its inventory class)
42
43 =item svcnum - Customer servcie (see L<FS::cust_svc>)
44
45 =back
46
47 =head1 METHODS
48
49 =over 4
50
51 =item new HASHREF
52
53 Creates a new item.  To add the item to the database, see L<"insert">.
54
55 Note that this stores the hash reference, not a distinct copy of the hash it
56 points to.  You can ask the object for a copy with the I<hash> method.
57
58 =cut
59
60 # the new method can be inherited from FS::Record, if a table method is defined
61
62 sub table { 'inventory_item'; }
63
64 =item insert
65
66 Adds this record to the database.  If there is an error, returns the error,
67 otherwise returns false.
68
69 =cut
70
71 # the insert method can be inherited from FS::Record
72
73 =item delete
74
75 Delete this record from the database.
76
77 =cut
78
79 # the delete method can be inherited from FS::Record
80
81 =item replace OLD_RECORD
82
83 Replaces the OLD_RECORD with this one in the database.  If there is an error,
84 returns the error, otherwise returns false.
85
86 =cut
87
88 # the replace method can be inherited from FS::Record
89
90 =item check
91
92 Checks all fields to make sure this is a valid item.  If there is
93 an error, returns the error, otherwise returns false.  Called by the insert
94 and replace methods.
95
96 =cut
97
98 # the check method should currently be supplied - FS::Record contains some
99 # data checking routines
100
101 sub check {
102   my $self = shift;
103
104   my $error = 
105     $self->ut_numbern('itemnum')
106     || $self->ut_foreign_key('classnum', 'inventory_class', 'classnum' )
107     || $self->ut_text('item')
108     || $self->ut_numbern('svcnum')
109   ;
110   return $error if $error;
111
112   $self->SUPER::check;
113 }
114
115 =back
116
117 =head1 BUGS
118
119 =head1 SEE ALSO
120
121 L<FS::Record>, schema.html from the base documentation.
122
123 =cut
124
125 1;
126