|
Lines 729-744
__PACKAGE__->might_have(
Link Here
|
| 729 |
{ cascade_copy => 0, cascade_delete => 0 }, |
729 |
{ cascade_copy => 0, cascade_delete => 0 }, |
| 730 |
); |
730 |
); |
| 731 |
|
731 |
|
| 732 |
=head2 item_group_items |
732 |
=head2 item_group_item |
| 733 |
|
733 |
|
| 734 |
Type: has_many |
734 |
Type: might_have |
| 735 |
|
735 |
|
| 736 |
Related object: L<Koha::Schema::Result::ItemGroupItem> |
736 |
Related object: L<Koha::Schema::Result::ItemGroupItem> |
| 737 |
|
737 |
|
| 738 |
=cut |
738 |
=cut |
| 739 |
|
739 |
|
| 740 |
__PACKAGE__->has_many( |
740 |
__PACKAGE__->might_have( |
| 741 |
"item_group_items", |
741 |
"item_group_item", |
| 742 |
"Koha::Schema::Result::ItemGroupItem", |
742 |
"Koha::Schema::Result::ItemGroupItem", |
| 743 |
{ "foreign.item_id" => "self.itemnumber" }, |
743 |
{ "foreign.item_id" => "self.itemnumber" }, |
| 744 |
{ cascade_copy => 0, cascade_delete => 0 }, |
744 |
{ cascade_copy => 0, cascade_delete => 0 }, |
|
Lines 880-891
__PACKAGE__->has_many(
Link Here
|
| 880 |
); |
880 |
); |
| 881 |
|
881 |
|
| 882 |
|
882 |
|
| 883 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-09-01 12:37:33 |
883 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-09-01 12:52:33 |
| 884 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:1mLs4vLD2LsJGkBKZCZbXg |
884 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:WeRY0B6a1D94WckYmUgWpQ |
| 885 |
======= |
|
|
| 886 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-08-18 14:00:35 |
| 887 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:WG9AuZsBgTMEWjlfwFQdeA |
| 888 |
>>>>>>> Bug 24857: Rename Volumes => Item groups (DB) |
| 889 |
|
885 |
|
| 890 |
__PACKAGE__->belongs_to( biblioitem => "Koha::Schema::Result::Biblioitem", "biblioitemnumber" ); |
886 |
__PACKAGE__->belongs_to( biblioitem => "Koha::Schema::Result::Biblioitem", "biblioitemnumber" ); |
| 891 |
|
887 |
|