View | Details | Raw Unified | Return to bug 37893
Collapse All | Expand All

(-)a/Koha/Schema/Result/SipAccountCustomItemField.pm (+21 lines)
Lines 120-123 __PACKAGE__->belongs_to( Link Here
120
120
121
121
122
# You can replace this text with custom code or comments, and it will be preserved on regeneration
122
# You can replace this text with custom code or comments, and it will be preserved on regeneration
123
124
=head2 koha_objects_class
125
126
  Koha Objects class
127
128
=cut
129
130
sub koha_objects_class {
131
    'Koha::SIP2::Account::CustomItemFields';
132
}
133
134
=head2 koha_object_class
135
136
  Koha Object class
137
138
=cut
139
140
sub koha_object_class {
141
    'Koha::SIP2::Account::CustomItemField';
142
}
143
123
1;
144
1;
(-)a/Koha/Schema/Result/SipAccountCustomPatronField.pm (+21 lines)
Lines 120-123 __PACKAGE__->belongs_to( Link Here
120
120
121
121
122
# You can replace this text with custom code or comments, and it will be preserved on regeneration
122
# You can replace this text with custom code or comments, and it will be preserved on regeneration
123
124
=head2 koha_objects_class
125
126
  Koha Objects class
127
128
=cut
129
130
sub koha_objects_class {
131
    'Koha::SIP2::Account::CustomPatronFields';
132
}
133
134
=head2 koha_object_class
135
136
  Koha Object class
137
138
=cut
139
140
sub koha_object_class {
141
    'Koha::SIP2::Account::CustomPatronField';
142
}
143
123
1;
144
1;
(-)a/Koha/Schema/Result/SipAccountItemField.pm (+21 lines)
Lines 120-123 __PACKAGE__->belongs_to( Link Here
120
120
121
121
122
# You can replace this text with custom code or comments, and it will be preserved on regeneration
122
# You can replace this text with custom code or comments, and it will be preserved on regeneration
123
124
=head2 koha_objects_class
125
126
  Koha Objects class
127
128
=cut
129
130
sub koha_objects_class {
131
    'Koha::SIP2::Account::ItemFields';
132
}
133
134
=head2 koha_object_class
135
136
  Koha Object class
137
138
=cut
139
140
sub koha_object_class {
141
    'Koha::SIP2::Account::ItemField';
142
}
143
123
1;
144
1;
(-)a/Koha/Schema/Result/SipAccountPatronAttribute.pm (+21 lines)
Lines 120-123 __PACKAGE__->belongs_to( Link Here
120
120
121
121
122
# You can replace this text with custom code or comments, and it will be preserved on regeneration
122
# You can replace this text with custom code or comments, and it will be preserved on regeneration
123
124
=head2 koha_objects_class
125
126
  Koha Objects class
127
128
=cut
129
130
sub koha_objects_class {
131
    'Koha::SIP2::Account::PatronAttributes';
132
}
133
134
=head2 koha_object_class
135
136
  Koha Object class
137
138
=cut
139
140
sub koha_object_class {
141
    'Koha::SIP2::Account::PatronAttribute';
142
}
143
123
1;
144
1;
(-)a/Koha/Schema/Result/SipAccountScreenMsgRegex.pm (+21 lines)
Lines 120-123 __PACKAGE__->belongs_to( Link Here
120
120
121
121
122
# You can replace this text with custom code or comments, and it will be preserved on regeneration
122
# You can replace this text with custom code or comments, and it will be preserved on regeneration
123
124
=head2 koha_objects_class
125
126
  Koha Objects class
127
128
=cut
129
130
sub koha_objects_class {
131
    'Koha::SIP2::Account::ScreenMsgRegexs';
132
}
133
134
=head2 koha_object_class
135
136
  Koha Object class
137
138
=cut
139
140
sub koha_object_class {
141
    'Koha::SIP2::Account::ScreenMsgRegex';
142
}
143
123
1;
144
1;
(-)a/Koha/Schema/Result/SipAccountSortBinMapping.pm (+21 lines)
Lines 110-113 __PACKAGE__->belongs_to( Link Here
110
110
111
111
112
# You can replace this text with custom code or comments, and it will be preserved on regeneration
112
# You can replace this text with custom code or comments, and it will be preserved on regeneration
113
114
=head2 koha_objects_class
115
116
  Koha Objects class
117
118
=cut
119
120
sub koha_objects_class {
121
    'Koha::SIP2::Account::SortBinMappings';
122
}
123
124
=head2 koha_object_class
125
126
  Koha Object class
127
128
=cut
129
130
sub koha_object_class {
131
    'Koha::SIP2::Account::SortBinMapping';
132
}
133
113
1;
134
1;
(-)a/Koha/Schema/Result/SipAccountSystemPreferenceOverride.pm (-2 / +1 lines)
Lines 128-134 __PACKAGE__->belongs_to( Link Here
128
=cut
128
=cut
129
129
130
sub koha_objects_class {
130
sub koha_objects_class {
131
    'Koha::SIP2::Accounts::SystemPreferenceOverrides';
131
    'Koha::SIP2::Account::SystemPreferenceOverrides';
132
}
132
}
133
133
134
=head2 koha_object_class
134
=head2 koha_object_class
135
- 

Return to bug 37893