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

(-)a/Koha/Schema/Result/Branchtransfer.pm (-4 / +4 lines)
Lines 111-117 what triggered the transfer Link Here
111
=head2 cancellation_reason
111
=head2 cancellation_reason
112
112
113
  data_type: 'enum'
113
  data_type: 'enum'
114
  extra: {list => ["Manual","StockrotationAdvance","StockrotationRepatriation","ReturnToHome","ReturnToHolding","RotatingCollection","Reserve","LostReserve","CancelReserve","ItemLost"]}
114
  extra: {list => ["Manual","StockrotationAdvance","StockrotationRepatriation","ReturnToHome","ReturnToHolding","RotatingCollection","Reserve","LostReserve","CancelReserve","ItemLost","WrongTransfer"]}
115
  is_nullable: 1
115
  is_nullable: 1
116
116
117
what triggered the transfer cancellation
117
what triggered the transfer cancellation
Lines 205-210 __PACKAGE__->add_columns( Link Here
205
        "LostReserve",
205
        "LostReserve",
206
        "CancelReserve",
206
        "CancelReserve",
207
        "ItemLost",
207
        "ItemLost",
208
        "WrongTransfer",
208
      ],
209
      ],
209
    },
210
    },
210
    is_nullable => 1,
211
    is_nullable => 1,
Lines 271-278 __PACKAGE__->belongs_to( Link Here
271
);
272
);
272
273
273
274
274
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-04-23 09:48:46
275
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-06-08 08:13:08
275
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:7iCCrApSJnoleyL9p3odQg
276
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:+ABUZOo6IHbiRH1LTy3t+A
276
277
277
sub koha_object_class {
278
sub koha_object_class {
278
    'Koha::Item::Transfer';
279
    'Koha::Item::Transfer';
279
- 

Return to bug 24434