2017-09-05 12:44:58 +00:00
|
|
|
package Pear::LocalLoop::Controller::Admin::Transactions;
|
|
|
|
use Mojo::Base 'Mojolicious::Controller';
|
|
|
|
|
2018-03-15 16:02:17 +00:00
|
|
|
use List::Util qw/ max sum /;
|
|
|
|
|
2017-09-05 12:44:58 +00:00
|
|
|
has result_set => sub {
|
2021-03-20 12:09:50 +00:00
|
|
|
my $c = shift;
|
|
|
|
return $c->schema->resultset('Transaction');
|
2017-09-05 12:44:58 +00:00
|
|
|
};
|
|
|
|
|
2021-03-20 19:03:59 +00:00
|
|
|
## no critic (Subroutines::ProhibitBuiltinHomonyms)
|
2018-03-15 16:02:17 +00:00
|
|
|
sub index {
|
2021-03-20 19:03:59 +00:00
|
|
|
## use critic
|
2021-03-20 12:09:50 +00:00
|
|
|
my $c = shift;
|
|
|
|
|
|
|
|
my $pending_transaction_rs =
|
|
|
|
$c->schema->resultset('Organisation')->search( { pending => 1 } )
|
|
|
|
->entity->sales;
|
|
|
|
|
|
|
|
my $driver = $c->schema->storage->dbh->{Driver}->{Name};
|
|
|
|
my $week_transaction_rs =
|
|
|
|
$c->schema->resultset( 'ViewQuantisedTransaction' . $driver )->search(
|
|
|
|
{},
|
|
|
|
{
|
|
|
|
select => [
|
|
|
|
{ count => 'me.value', '-as' => 'count' },
|
|
|
|
{ sum => 'me.value', '-as' => 'sum_value' },
|
|
|
|
'quantised_weeks',
|
|
|
|
],
|
|
|
|
group_by => 'quantised_weeks',
|
|
|
|
order_by => { '-asc' => 'quantised_weeks' },
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
my @all_weeks = $week_transaction_rs->all;
|
|
|
|
my $first_week_count =
|
|
|
|
defined $all_weeks[0] ? $all_weeks[0]->get_column('count') || 0 : 0;
|
|
|
|
my $first_week_value =
|
|
|
|
defined $all_weeks[0]
|
|
|
|
? $all_weeks[0]->get_column('sum_value') / 100000 || 0
|
|
|
|
: 0;
|
|
|
|
my $second_week_count =
|
|
|
|
defined $all_weeks[1] ? $all_weeks[1]->get_column('count') || 0 : 0;
|
|
|
|
my $second_week_value =
|
|
|
|
defined $all_weeks[1]
|
|
|
|
? $all_weeks[1]->get_column('sum_value') / 100000 || 0
|
|
|
|
: 0;
|
|
|
|
|
|
|
|
my $transaction_rs = $c->schema->resultset('Transaction');
|
|
|
|
my $value_rs_col = $transaction_rs->get_column('value');
|
|
|
|
my $max_value = $value_rs_col->max / 100000 || 0;
|
|
|
|
my $avg_value = sprintf( '%.2f', $value_rs_col->func('AVG') / 100000 ) || 0;
|
|
|
|
my $sum_value = $value_rs_col->sum / 100000 || 0;
|
|
|
|
my $count = $transaction_rs->count || 0;
|
|
|
|
|
|
|
|
my $placeholder = 'Placeholder';
|
|
|
|
$c->stash(
|
|
|
|
placeholder => $placeholder,
|
|
|
|
pending_trans => $pending_transaction_rs->count,
|
|
|
|
weeks => {
|
|
|
|
first_count => $first_week_count,
|
|
|
|
second_count => $second_week_count,
|
|
|
|
first_value => $first_week_value,
|
|
|
|
second_value => $second_week_value,
|
|
|
|
max => $max_value,
|
|
|
|
avg => $avg_value,
|
|
|
|
sum => $sum_value,
|
|
|
|
count => $count,
|
|
|
|
},
|
|
|
|
);
|
2021-03-20 23:26:52 +00:00
|
|
|
|
2021-03-20 15:02:00 +00:00
|
|
|
return 1;
|
2018-03-15 16:02:17 +00:00
|
|
|
}
|
|
|
|
|
2021-03-20 19:03:59 +00:00
|
|
|
## no critic (Subroutines::ProhibitBuiltinHomonyms)
|
2017-09-05 12:44:58 +00:00
|
|
|
sub read {
|
2021-03-20 19:03:59 +00:00
|
|
|
## use critic
|
2021-03-20 12:09:50 +00:00
|
|
|
my $c = shift;
|
2017-09-05 12:44:58 +00:00
|
|
|
|
2021-03-20 12:09:50 +00:00
|
|
|
my $id = $c->param('id');
|
2017-09-05 12:44:58 +00:00
|
|
|
|
2021-03-20 12:09:50 +00:00
|
|
|
if ( my $transaction = $c->result_set->find($id) ) {
|
|
|
|
$c->stash( transaction => $transaction );
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$c->flash( error => 'No transaction found' );
|
|
|
|
$c->redirect_to('/admin/transactions');
|
|
|
|
}
|
2021-03-20 23:26:52 +00:00
|
|
|
|
2021-03-20 15:02:00 +00:00
|
|
|
return 1;
|
2017-09-05 12:44:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sub image {
|
2021-03-20 12:09:50 +00:00
|
|
|
my $c = shift;
|
2017-09-05 12:44:58 +00:00
|
|
|
|
2021-03-20 12:09:50 +00:00
|
|
|
my $id = $c->param('id');
|
2017-09-05 12:44:58 +00:00
|
|
|
|
2021-03-20 12:09:50 +00:00
|
|
|
my $transaction = $c->result_set->find($id);
|
2017-09-05 12:44:58 +00:00
|
|
|
|
2021-03-20 12:09:50 +00:00
|
|
|
if ( $transaction->proof_image ) {
|
|
|
|
$c->reply->asset( $c->get_file_from_uuid( $transaction->proof_image ) );
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$c->reply->static('image/no_transaction.jpg');
|
|
|
|
}
|
2021-03-20 23:26:52 +00:00
|
|
|
|
2021-03-20 15:02:00 +00:00
|
|
|
return 1;
|
2017-09-05 12:44:58 +00:00
|
|
|
}
|
|
|
|
|
2021-03-20 19:03:59 +00:00
|
|
|
## no critic (Subroutines::ProhibitBuiltinHomonyms)
|
2017-09-07 11:53:01 +00:00
|
|
|
sub delete {
|
2021-03-20 19:03:59 +00:00
|
|
|
## use critic
|
2021-03-20 12:09:50 +00:00
|
|
|
my $c = shift;
|
2017-09-07 11:53:01 +00:00
|
|
|
|
2021-03-20 12:09:50 +00:00
|
|
|
my $id = $c->param('id');
|
2017-09-07 11:53:01 +00:00
|
|
|
|
2021-03-20 12:09:50 +00:00
|
|
|
if ( my $transaction = $c->result_set->find($id) ) {
|
|
|
|
if ( defined $transaction->category ) {
|
|
|
|
$transaction->category->delete;
|
|
|
|
}
|
|
|
|
$transaction->delete;
|
|
|
|
$c->flash( success => 'Successfully deleted transaction' );
|
|
|
|
$c->redirect_to('/admin/transactions');
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$c->flash( error => 'No transaction found' );
|
|
|
|
$c->redirect_to('/admin/transactions');
|
2018-01-16 14:52:16 +00:00
|
|
|
}
|
2021-03-20 23:26:52 +00:00
|
|
|
|
2021-03-20 15:02:00 +00:00
|
|
|
return 1;
|
2017-09-07 11:53:01 +00:00
|
|
|
}
|
|
|
|
|
2018-03-15 16:02:17 +00:00
|
|
|
sub pg_or_sqlite {
|
2021-03-20 12:09:50 +00:00
|
|
|
my ( $c, $pg_sql, $sqlite_sql ) = @_;
|
|
|
|
|
|
|
|
my $driver = $c->schema->storage->dbh->{Driver}->{Name};
|
|
|
|
|
|
|
|
if ( $driver eq 'Pg' ) {
|
|
|
|
return \$pg_sql;
|
|
|
|
}
|
|
|
|
elsif ( $driver eq 'SQLite' ) {
|
|
|
|
return \$sqlite_sql;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$c->app->log->warn('Unknown Driver Used');
|
|
|
|
return;
|
|
|
|
}
|
2018-03-15 16:02:17 +00:00
|
|
|
}
|
|
|
|
|
2017-09-05 12:44:58 +00:00
|
|
|
1;
|