Added major merge code for merging organisations

This commit is contained in:
Tom Bloor 2017-11-17 18:10:16 +00:00
parent a0cdaac370
commit 14410b475a
No known key found for this signature in database
GPG key ID: 4657C7EBE42CC5CC
5 changed files with 219 additions and 0 deletions

View file

@ -12,6 +12,11 @@ sub register {
}
return $value;
});
$app->helper( format_currency_from_db => sub {
my ( $c, $value ) = @_;
return sprintf( '£%.2f', $value / 100000 );
});
}
1;