|
Lines 1288-1293
__PACKAGE__->has_many(
Link Here
|
| 1288 |
{ cascade_copy => 0, cascade_delete => 0 }, |
1288 |
{ cascade_copy => 0, cascade_delete => 0 }, |
| 1289 |
); |
1289 |
); |
| 1290 |
|
1290 |
|
|
|
1291 |
=head2 return_claims_borrowernumbers |
| 1292 |
|
| 1293 |
Type: has_many |
| 1294 |
|
| 1295 |
Related object: L<Koha::Schema::Result::ReturnClaim> |
| 1296 |
|
| 1297 |
=cut |
| 1298 |
|
| 1299 |
__PACKAGE__->has_many( |
| 1300 |
"return_claims_borrowernumbers", |
| 1301 |
"Koha::Schema::Result::ReturnClaim", |
| 1302 |
{ "foreign.borrowernumber" => "self.borrowernumber" }, |
| 1303 |
{ cascade_copy => 0, cascade_delete => 0 }, |
| 1304 |
); |
| 1305 |
|
| 1306 |
=head2 return_claims_created_by |
| 1307 |
|
| 1308 |
Type: has_many |
| 1309 |
|
| 1310 |
Related object: L<Koha::Schema::Result::ReturnClaim> |
| 1311 |
|
| 1312 |
=cut |
| 1313 |
|
| 1314 |
__PACKAGE__->has_many( |
| 1315 |
"return_claims_created_by", |
| 1316 |
"Koha::Schema::Result::ReturnClaim", |
| 1317 |
{ "foreign.created_by" => "self.borrowernumber" }, |
| 1318 |
{ cascade_copy => 0, cascade_delete => 0 }, |
| 1319 |
); |
| 1320 |
|
| 1321 |
=head2 return_claims_resolved_by |
| 1322 |
|
| 1323 |
Type: has_many |
| 1324 |
|
| 1325 |
Related object: L<Koha::Schema::Result::ReturnClaim> |
| 1326 |
|
| 1327 |
=cut |
| 1328 |
|
| 1329 |
__PACKAGE__->has_many( |
| 1330 |
"return_claims_resolved_by", |
| 1331 |
"Koha::Schema::Result::ReturnClaim", |
| 1332 |
{ "foreign.resolved_by" => "self.borrowernumber" }, |
| 1333 |
{ cascade_copy => 0, cascade_delete => 0 }, |
| 1334 |
); |
| 1335 |
|
| 1336 |
=head2 return_claims_updated_by |
| 1337 |
|
| 1338 |
Type: has_many |
| 1339 |
|
| 1340 |
Related object: L<Koha::Schema::Result::ReturnClaim> |
| 1341 |
|
| 1342 |
=cut |
| 1343 |
|
| 1344 |
__PACKAGE__->has_many( |
| 1345 |
"return_claims_updated_by", |
| 1346 |
"Koha::Schema::Result::ReturnClaim", |
| 1347 |
{ "foreign.updated_by" => "self.borrowernumber" }, |
| 1348 |
{ cascade_copy => 0, cascade_delete => 0 }, |
| 1349 |
); |
| 1350 |
|
| 1291 |
=head2 reviews |
1351 |
=head2 reviews |
| 1292 |
|
1352 |
|
| 1293 |
Type: has_many |
1353 |
Type: has_many |
|
Lines 1529-1536
Composing rels: L</aqorder_users> -> ordernumber
Link Here
|
| 1529 |
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber"); |
1589 |
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber"); |
| 1530 |
|
1590 |
|
| 1531 |
|
1591 |
|
| 1532 |
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-04-25 10:08:38 |
1592 |
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-08-21 16:16:43 |
| 1533 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:3qd/l8OkObSn8gTKTsHrkA |
1593 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:BA+02+mAkHshtqidkJQCQg |
| 1534 |
|
1594 |
|
| 1535 |
__PACKAGE__->belongs_to( |
1595 |
__PACKAGE__->belongs_to( |
| 1536 |
"guarantor", |
1596 |
"guarantor", |