Bug 24434: DBIC Update
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
This commit is contained in:
parent
a99f0a77d6
commit
28a154a02c
1 changed files with 4 additions and 3 deletions
|
@ -111,7 +111,7 @@ what triggered the transfer
|
|||
=head2 cancellation_reason
|
||||
|
||||
data_type: 'enum'
|
||||
extra: {list => ["Manual","StockrotationAdvance","StockrotationRepatriation","ReturnToHome","ReturnToHolding","RotatingCollection","Reserve","LostReserve","CancelReserve","ItemLost"]}
|
||||
extra: {list => ["Manual","StockrotationAdvance","StockrotationRepatriation","ReturnToHome","ReturnToHolding","RotatingCollection","Reserve","LostReserve","CancelReserve","ItemLost","WrongTransfer"]}
|
||||
is_nullable: 1
|
||||
|
||||
what triggered the transfer cancellation
|
||||
|
@ -205,6 +205,7 @@ __PACKAGE__->add_columns(
|
|||
"LostReserve",
|
||||
"CancelReserve",
|
||||
"ItemLost",
|
||||
"WrongTransfer",
|
||||
],
|
||||
},
|
||||
is_nullable => 1,
|
||||
|
@ -271,8 +272,8 @@ __PACKAGE__->belongs_to(
|
|||
);
|
||||
|
||||
|
||||
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-04-23 09:48:46
|
||||
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:7iCCrApSJnoleyL9p3odQg
|
||||
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-06-08 08:13:08
|
||||
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:+ABUZOo6IHbiRH1LTy3t+A
|
||||
|
||||
sub koha_object_class {
|
||||
'Koha::Item::Transfer';
|
||||
|
|
Loading…
Reference in a new issue