|
Lines 185-190
__PACKAGE__->set_primary_key("accountlines_id");
Link Here
|
| 185 |
|
185 |
|
| 186 |
=head1 RELATIONS |
186 |
=head1 RELATIONS |
| 187 |
|
187 |
|
|
|
188 |
=head2 account_offsets_credits |
| 189 |
|
| 190 |
Type: has_many |
| 191 |
|
| 192 |
Related object: L<Koha::Schema::Result::AccountOffset> |
| 193 |
|
| 194 |
=cut |
| 195 |
|
| 196 |
__PACKAGE__->has_many( |
| 197 |
"account_offsets_credits", |
| 198 |
"Koha::Schema::Result::AccountOffset", |
| 199 |
{ "foreign.credit_id" => "self.accountlines_id" }, |
| 200 |
{ cascade_copy => 0, cascade_delete => 0 }, |
| 201 |
); |
| 202 |
|
| 203 |
=head2 account_offsets_debits |
| 204 |
|
| 205 |
Type: has_many |
| 206 |
|
| 207 |
Related object: L<Koha::Schema::Result::AccountOffset> |
| 208 |
|
| 209 |
=cut |
| 210 |
|
| 211 |
__PACKAGE__->has_many( |
| 212 |
"account_offsets_debits", |
| 213 |
"Koha::Schema::Result::AccountOffset", |
| 214 |
{ "foreign.debit_id" => "self.accountlines_id" }, |
| 215 |
{ cascade_copy => 0, cascade_delete => 0 }, |
| 216 |
); |
| 217 |
|
| 188 |
=head2 borrowernumber |
218 |
=head2 borrowernumber |
| 189 |
|
219 |
|
| 190 |
Type: belongs_to |
220 |
Type: belongs_to |
|
Lines 221-228
__PACKAGE__->belongs_to(
Link Here
|
| 221 |
); |
251 |
); |
| 222 |
|
252 |
|
| 223 |
|
253 |
|
| 224 |
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-01-26 17:18:34 |
254 |
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-02-15 16:13:26 |
| 225 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:RCQohhphtg+0+RszpB4wLg |
255 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:OuH2XMR7vE5PQB5ih0VQaw |
| 226 |
|
256 |
|
| 227 |
|
257 |
|
| 228 |
# You can replace this text with custom content, and it will be preserved on regeneration |
258 |
# You can replace this text with custom content, and it will be preserved on regeneration |