1 package FS::did_order_item;
4 use base qw( FS::Record );
5 use FS::Record qw( qsearch qsearchs );
9 FS::did_order_item - Object methods for did_order_item records
13 use FS::did_order_item;
15 $record = new FS::did_order_item \%hash;
16 $record = new FS::did_order_item { 'column' => 'value' };
18 $error = $record->insert;
20 $error = $new_record->replace($old_record);
22 $error = $record->delete;
24 $error = $record->check;
28 An FS::did_order_item object represents an item in a bulk DID order.
29 FS::did_order_item inherits from FS::Record.
30 The following fields are currently supported:
40 =item msanum - foreign key to msa table
44 =item latanum - foreign key to lata table
46 =item ratecenternum - foreign key to rate_center table
52 =item custnum - foreign key to cust_main table, optional
62 Creates a new DID order item. To add it to the database, see L<"insert">.
64 Note that this stores the hash reference, not a distinct copy of the hash it
65 points to. You can ask the object for a copy with the I<hash> method.
69 # the new method can be inherited from FS::Record, if a table method is defined
71 sub table { 'did_order_item'; }
75 Adds this record to the database. If there is an error, returns the error,
76 otherwise returns false.
80 # the insert method can be inherited from FS::Record
84 Delete this record from the database.
88 # the delete method can be inherited from FS::Record
90 =item replace OLD_RECORD
92 Replaces the OLD_RECORD with this one in the database. If there is an error,
93 returns the error, otherwise returns false.
97 # the replace method can be inherited from FS::Record
101 Checks all fields to make sure this is a valid DID order item. If there is
102 an error, returns the error, otherwise returns false. Called by the insert
107 # the check method should currently be supplied - FS::Record contains some
108 # data checking routines
114 $self->ut_numbern('orderitemnum')
115 || $self->ut_number('ordernum')
116 || $self->ut_foreign_keyn('msanum', 'msa', 'msanum')
117 || $self->ut_numbern('npa')
118 || $self->ut_foreign_keyn('latanum', 'lata', 'latanum')
119 || $self->ut_foreign_keyn('ratecenternum', 'rate_center', 'ratecenternum')
120 || $self->ut_textn('state')
121 || $self->ut_number('quantity')
122 || $self->ut_foreign_keyn('custnum', 'cust_main', 'custnum')
124 return $error if $error;
131 Returns the rate_center for this order item.
137 return '' unless $self->ratecenternum;
138 qsearchs('rate_center', { 'ratecenternum' => $self->ratecenternum });
145 L<FS::did_order>, <FS::Record>, schema.html from the base documentation.