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

(-)a/Koha/Schema/Result/Accountline.pm (-2 / +32 lines)
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
(-)a/Koha/Schema/Result/Borrower.pm (-18 / +2 lines)
Lines 702-722 __PACKAGE__->has_many( Link Here
702
  { cascade_copy => 0, cascade_delete => 0 },
702
  { cascade_copy => 0, cascade_delete => 0 },
703
);
703
);
704
704
705
=head2 accountoffsets
706
707
Type: has_many
708
709
Related object: L<Koha::Schema::Result::Accountoffset>
710
711
=cut
712
713
__PACKAGE__->has_many(
714
  "accountoffsets",
715
  "Koha::Schema::Result::Accountoffset",
716
  { "foreign.borrowernumber" => "self.borrowernumber" },
717
  { cascade_copy => 0, cascade_delete => 0 },
718
);
719
720
=head2 aqbasketusers
705
=head2 aqbasketusers
721
706
722
Type: has_many
707
Type: has_many
Lines 1378-1385 Composing rels: L</aqorder_users> -> ordernumber Link Here
1378
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber");
1363
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber");
1379
1364
1380
1365
1381
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-05-09 21:24:02
1366
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-06-06 12:38:38
1382
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:7llO928plwtX2Q+I9nQA8A
1367
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Rns/UbA53rzA2i7L0UwiGw
1383
1368
1384
__PACKAGE__->belongs_to(
1369
__PACKAGE__->belongs_to(
1385
    "guarantor",
1370
    "guarantor",
1386
- 

Return to bug 14826