Martin Renvoize
bc45249291
Add a transfer_reasons include file for easy translation of the transer reason codes. Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
14 lines
763 B
PHP
14 lines
763 B
PHP
[%- BLOCK transfer_reason -%]
|
|
[%- SWITCH transfer.reason -%]
|
|
[%- CASE 'Manual' -%]Manual
|
|
[%- CASE 'StockrotationAdvance' -%]Stock rotation advance
|
|
[%- CASE 'StockrotationRepatriation' -%]Stock rotation repatriation
|
|
[%- CASE 'ReturnToHome' -%]Automatic return to home
|
|
[%- CASE 'ReturnToHolding' -%]Automatic return to holding
|
|
[%- CASE 'RotatingCollection' -%]Rotating collection
|
|
[%- CASE 'Reserve' -%]Hold
|
|
[%- CASE 'LostReserve' -%]Hold lost
|
|
[%- CASE 'CancelReserve' -%]Hold cancelled
|
|
[%- CASE -%][% transfer.reason | html %]
|
|
[%- END -%]
|
|
[%- END -%]
|