added initial possible schema and ability to submit on transaction
This commit is contained in:
parent
7aa93bf380
commit
786cd1618a
2 changed files with 45 additions and 1 deletions
|
@ -187,7 +187,7 @@ sub post_upload {
|
|||
my $file = defined $upload ? $c->store_file_from_upload( $upload ) : undef;
|
||||
my $category = $validation->param('category');
|
||||
my $essential = $validation->param('essential');
|
||||
my $recurring_type = $validation->('recurring');
|
||||
my $recurring_period = $validation->('recurring');
|
||||
my $distance = $c->get_distance_from_coords( $user->entity->type_object, $organisation );
|
||||
|
||||
my $new_transaction = $organisation->entity->create_related(
|
||||
|
@ -220,6 +220,13 @@ sub post_upload {
|
|||
});
|
||||
}
|
||||
|
||||
if ( defined $recurring_period ) {
|
||||
$c->schema->resultset('TransactionRecurring')->create({
|
||||
recurring_period => $recurring_period,
|
||||
transaction_id => $new_transaction->id,
|
||||
});
|
||||
}
|
||||
|
||||
return $c->render( json => {
|
||||
success => Mojo::JSON->true,
|
||||
message => 'Upload Successful',
|
||||
|
|
37
lib/Pear/LocalLoop/Schema/Result/TransactionRecurring.pm
Normal file
37
lib/Pear/LocalLoop/Schema/Result/TransactionRecurring.pm
Normal file
|
@ -0,0 +1,37 @@
|
|||
package Pear::LocalLoop::Schema::Result::TransactionRecurring;
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
use base 'DBIx::Class::Core';
|
||||
|
||||
__PACKAGE__->table("transaction_recurring");
|
||||
|
||||
__PACKAGE__->add_columns(
|
||||
"id" => {
|
||||
data_type => "integer",
|
||||
is_auto_increment => 1,
|
||||
is_nullable => 0,
|
||||
},
|
||||
"transaction_id" => {
|
||||
data_type => 'integer',
|
||||
is_nullable => 0,
|
||||
is_foreign_key => 1,
|
||||
},
|
||||
"recurring_period" => {
|
||||
data_type => "varchar",
|
||||
size => 255,
|
||||
is_nullable => 0,
|
||||
},
|
||||
);
|
||||
|
||||
__PACKAGE__->add_unique_constraint(["transaction_id"]);
|
||||
|
||||
__PACKAGE__->belongs_to(
|
||||
"transaction",
|
||||
"Pear::LocalLoop::Schema::Result::Transaction",
|
||||
"transaction_id",
|
||||
{ cascade_delete => 0 },
|
||||
);
|
||||
|
||||
1;
|
Reference in a new issue