|
Lines 31-37
sub filter {
Link Here
|
| 31 |
$config->{on_editing} //= 0; |
31 |
$config->{on_editing} //= 0; |
| 32 |
return $config->{on_editing} |
32 |
return $config->{on_editing} |
| 33 |
? Koha::Number::Price->new( $value )->format_for_editing |
33 |
? Koha::Number::Price->new( $value )->format_for_editing |
| 34 |
: Koha::Number::Price->new( $value )->format; |
34 |
: Koha::Number::Price->new( $value )->format( $config ); |
| 35 |
} |
35 |
} |
| 36 |
|
36 |
|
| 37 |
1; |
37 |
1; |
| 38 |
- |
|
|