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

(-)a/Koha/Schema/Result/Branchtransfer.pm (-11 / +4 lines)
Lines 103-121 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","CancelRecall"]}
106
  extra: {list => ["Manual","StockrotationAdvance","StockrotationRepatriation","ReturnToHome","ReturnToHolding","RotatingCollection","Reserve","LostReserve","CancelReserve","Recall","CancelRecall"]}
107
  is_nullable: 1
107
  is_nullable: 1
108
108
109
what triggered the transfer
110
111
=head2 cancellation_reason
109
=head2 cancellation_reason
112
110
113
  data_type: 'enum'
111
  data_type: 'enum'
114
  extra: {list => ["Manual","StockrotationAdvance","StockrotationRepatriation","ReturnToHome","ReturnToHolding","RotatingCollection","Reserve","LostReserve","CancelReserve","ItemLost","WrongTransfer","Recall","CancelRecall"]}
112
  extra: {list => ["Manual","StockrotationAdvance","StockrotationRepatriation","ReturnToHome","ReturnToHolding","RotatingCollection","Reserve","LostReserve","CancelReserve","ItemLost","WrongTransfer"]}
115
  is_nullable: 1
113
  is_nullable: 1
116
114
117
what triggered the transfer cancellation
118
119
=cut
115
=cut
120
116
121
__PACKAGE__->add_columns(
117
__PACKAGE__->add_columns(
Lines 185-191 __PACKAGE__->add_columns( Link Here
185
        "Reserve",
181
        "Reserve",
186
        "LostReserve",
182
        "LostReserve",
187
        "CancelReserve",
183
        "CancelReserve",
188
        "TransferCancellation",
189
        "Recall",
184
        "Recall",
190
        "CancelRecall",
185
        "CancelRecall",
191
      ],
186
      ],
Lines 208-215 __PACKAGE__->add_columns( Link Here
208
        "CancelReserve",
203
        "CancelReserve",
209
        "ItemLost",
204
        "ItemLost",
210
        "WrongTransfer",
205
        "WrongTransfer",
211
        "Recall",
212
        "CancelRecall",
213
      ],
206
      ],
214
    },
207
    },
215
    is_nullable => 1,
208
    is_nullable => 1,
Lines 276-283 __PACKAGE__->belongs_to( Link Here
276
);
269
);
277
270
278
271
279
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-03-15 06:51:43
272
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-04-22 19:20:00
280
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:PRXo3jKKZT7MhzT1EbqpWg
273
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:NnrSjl31x6ahyRl8E/HHVQ
281
274
282
sub koha_object_class {
275
sub koha_object_class {
283
    'Koha::Item::Transfer';
276
    'Koha::Item::Transfer';

Return to bug 30600