Added major merge code for merging organisations
This commit is contained in:
parent
a0cdaac370
commit
14410b475a
5 changed files with 219 additions and 0 deletions
|
@ -12,6 +12,11 @@ sub register {
|
|||
}
|
||||
return $value;
|
||||
});
|
||||
|
||||
$app->helper( format_currency_from_db => sub {
|
||||
my ( $c, $value ) = @_;
|
||||
return sprintf( '£%.2f', $value / 100000 );
|
||||
});
|
||||
}
|
||||
|
||||
1;
|
||||
|
|
Reference in a new issue