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

(-)a/Koha/Schema/Result/Branch.pm (-3 / +18 lines)
Lines 800-805 __PACKAGE__->has_many( Link Here
800
  { cascade_copy => 0, cascade_delete => 0 },
800
  { cascade_copy => 0, cascade_delete => 0 },
801
);
801
);
802
802
803
=head2 library_float_limits
804
805
Type: has_many
806
807
Related object: L<Koha::Schema::Result::LibraryFloatLimit>
808
809
=cut
810
811
__PACKAGE__->has_many(
812
  "library_float_limits",
813
  "Koha::Schema::Result::LibraryFloatLimit",
814
  { "foreign.branchcode" => "self.branchcode" },
815
  { cascade_copy => 0, cascade_delete => 0 },
816
);
817
803
=head2 library_groups
818
=head2 library_groups
804
819
805
Type: has_many
820
Type: has_many
Lines 996-1003 __PACKAGE__->has_many( Link Here
996
);
1011
);
997
1012
998
1013
999
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-05-03 13:13:25
1014
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-07-02 11:14:12
1000
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:HiH1QNlDqKcq9GeM85Pu0A
1015
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:3TsuWEa3C2DEKJ1gR+V2Ig
1001
1016
1002
__PACKAGE__->add_columns(
1017
__PACKAGE__->add_columns(
1003
    '+pickup_location' => { is_boolean => 1 },
1018
    '+pickup_location' => { is_boolean => 1 },
Lines 1011-1014 sub koha_objects_class { Link Here
1011
    'Koha::Libraries';
1026
    'Koha::Libraries';
1012
}
1027
}
1013
1028
1014
1;
1029
1;
(-)a/Koha/Schema/Result/Branchtransfer.pm (-4 / +5 lines)
Lines 103-109 any comments related to the transfer Link Here
103
=head2 reason
103
=head2 reason
104
104
105
  data_type: 'enum'
105
  data_type: 'enum'
106
  extra: {list => ["Manual","StockrotationAdvance","StockrotationRepatriation","ReturnToHome","ReturnToHolding","RotatingCollection","Reserve","LostReserve","CancelReserve","TransferCancellation","Recall","RecallCancellation"]}
106
  extra: {list => ["Manual","StockrotationAdvance","StockrotationRepatriation","ReturnToHome","ReturnToHolding","RotatingCollection","Reserve","LostReserve","CancelReserve","TransferCancellation","Recall","RecallCancellation","LibraryFloatLimit"]}
107
  is_nullable: 1
107
  is_nullable: 1
108
108
109
what triggered the transfer
109
what triggered the transfer
Lines 188-193 __PACKAGE__->add_columns( Link Here
188
        "TransferCancellation",
188
        "TransferCancellation",
189
        "Recall",
189
        "Recall",
190
        "RecallCancellation",
190
        "RecallCancellation",
191
        "LibraryFloatLimit",
191
      ],
192
      ],
192
    },
193
    },
193
    is_nullable => 1,
194
    is_nullable => 1,
Lines 275-282 __PACKAGE__->belongs_to( Link Here
275
);
276
);
276
277
277
278
278
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-10-03 16:48:17
279
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-07-02 11:14:12
279
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:BkhtfptiDqKKSv/hmCQy3w
280
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:qJ8/zlwESoKfSq3JJY8Jug
280
281
281
sub koha_object_class {
282
sub koha_object_class {
282
    'Koha::Item::Transfer';
283
    'Koha::Item::Transfer';
Lines 285-288 sub koha_objects_class { Link Here
285
    'Koha::Item::Transfers';
286
    'Koha::Item::Transfers';
286
}
287
}
287
288
288
1;
289
1;
(-)a/Koha/Schema/Result/Itemtype.pm (-2 / +16 lines)
Lines 293-298 __PACKAGE__->has_many( Link Here
293
  { cascade_copy => 0, cascade_delete => 0 },
293
  { cascade_copy => 0, cascade_delete => 0 },
294
);
294
);
295
295
296
=head2 library_float_limits
297
298
Type: has_many
299
300
Related object: L<Koha::Schema::Result::LibraryFloatLimit>
301
302
=cut
303
304
__PACKAGE__->has_many(
305
  "library_float_limits",
306
  "Koha::Schema::Result::LibraryFloatLimit",
307
  { "foreign.itemtype" => "self.itemtype" },
308
  { cascade_copy => 0, cascade_delete => 0 },
309
);
310
296
=head2 old_reserves
311
=head2 old_reserves
297
312
298
Type: has_many
313
Type: has_many
Lines 380-383 sub koha_objects_class { Link Here
380
    'Koha::ItemTypes';
395
    'Koha::ItemTypes';
381
}
396
}
382
397
383
1;
398
1;
384
- 

Return to bug 28530