Merge branch 'TBSliver/More-Upload-Fix' into development
This commit is contained in:
commit
f771e5e85c
1 changed files with 16 additions and 10 deletions
|
@ -147,11 +147,14 @@ sub post_upload {
|
||||||
}
|
}
|
||||||
|
|
||||||
unless ( defined $organisation ) {
|
unless ( defined $organisation ) {
|
||||||
return $c->render( json => {
|
return $c->render(
|
||||||
|
json => {
|
||||||
success => Mojo::JSON->false,
|
success => Mojo::JSON->false,
|
||||||
message => 'Error Finding Organisation',
|
message => 'Error Finding Organisation',
|
||||||
error => 'organisation_error',
|
error => 'organisation_error',
|
||||||
});
|
},
|
||||||
|
status => 400,
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
my $transaction_value = $validation->param('transaction_value');
|
my $transaction_value = $validation->param('transaction_value');
|
||||||
|
@ -171,11 +174,14 @@ sub post_upload {
|
||||||
);
|
);
|
||||||
|
|
||||||
unless ( defined $new_transaction ) {
|
unless ( defined $new_transaction ) {
|
||||||
return $c->render( json => {
|
return $c->render(
|
||||||
|
json => {
|
||||||
success => Mojo::JSON->false,
|
success => Mojo::JSON->false,
|
||||||
message => 'Error Adding Transaction',
|
message => 'Error Adding Transaction',
|
||||||
error => 'transaction_error',
|
error => 'transaction_error',
|
||||||
});
|
},
|
||||||
|
status => 400,
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
return $c->render( json => {
|
return $c->render( json => {
|
||||||
|
|
Reference in a new issue