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 673-693 __PACKAGE__->has_many( Link Here
673
  { cascade_copy => 0, cascade_delete => 0 },
673
  { cascade_copy => 0, cascade_delete => 0 },
674
);
674
);
675
675
676
=head2 accountoffsets
677
678
Type: has_many
679
680
Related object: L<Koha::Schema::Result::Accountoffset>
681
682
=cut
683
684
__PACKAGE__->has_many(
685
  "accountoffsets",
686
  "Koha::Schema::Result::Accountoffset",
687
  { "foreign.borrowernumber" => "self.borrowernumber" },
688
  { cascade_copy => 0, cascade_delete => 0 },
689
);
690
691
=head2 aqbasketusers
676
=head2 aqbasketusers
692
677
693
Type: has_many
678
Type: has_many
Lines 1334-1341 Composing rels: L</aqorder_users> -> ordernumber Link Here
1334
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber");
1319
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber");
1335
1320
1336
1321
1337
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-10-31 10:39:35
1322
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-02-15 16:13:26
1338
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Lc6GQ2E7d+tyzTk3v2sWjQ
1323
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:KAlC6MkJSFEqmlzXatkmaA
1339
1324
1340
__PACKAGE__->belongs_to(
1325
__PACKAGE__->belongs_to(
1341
    "guarantor",
1326
    "guarantor",
1342
- 

Return to bug 14826