2019-07-02 14:21:01 +00:00
|
|
|
package Pear::LocalLoop::Import::LCCCsv::Transactions;
|
|
|
|
use Moo;
|
2019-07-05 15:52:32 +00:00
|
|
|
use DateTime;
|
|
|
|
use DateTime::Format::Strptime;
|
2019-07-02 14:21:01 +00:00
|
|
|
|
|
|
|
extends qw/Pear::LocalLoop::Import::LCCCsv/;
|
|
|
|
|
2019-07-14 14:15:14 +00:00
|
|
|
has target_entity_id => (
|
|
|
|
is => 'ro',
|
|
|
|
required => 1,
|
|
|
|
);
|
|
|
|
|
|
|
|
has target_entity => (
|
|
|
|
is => 'lazy',
|
|
|
|
builder => sub {
|
|
|
|
my $self = shift;
|
|
|
|
my $entity = $self->schema->resultset('Entity')->find($self->target_entity_id);
|
|
|
|
Pear::LocalLoop::Error->throw("Cannot find LCC Entity, did you pass the right id?") unless $entity;
|
|
|
|
return $entity;
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
2019-07-05 15:52:32 +00:00
|
|
|
has '+csv_required_columns' => (
|
2019-07-14 14:15:14 +00:00
|
|
|
builder => sub {return [ (
|
|
|
|
'transaction_id',
|
|
|
|
'supplier_id',
|
|
|
|
'net_amount',
|
|
|
|
'vat amount',
|
|
|
|
'gross_amount',
|
|
|
|
) ]},
|
2019-07-05 15:52:32 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
sub import_csv {
|
|
|
|
my ($self) = @_;
|
|
|
|
|
|
|
|
my $rows = $self->csv_data;
|
2019-07-14 14:15:14 +00:00
|
|
|
my $lcc_org = $self->target_entity;
|
|
|
|
|
|
|
|
foreach my $row (@{$rows}) {
|
2019-07-10 16:23:27 +00:00
|
|
|
$self->_row_to_result($row, $lcc_org);
|
2019-07-05 15:52:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sub _row_to_result {
|
2019-07-14 14:15:14 +00:00
|
|
|
my ($self, $row, $lcc_org) = @_;
|
2019-07-05 15:52:32 +00:00
|
|
|
|
2019-07-14 14:15:14 +00:00
|
|
|
my $supplier_id = $row->{supplier_id};
|
2019-07-05 16:56:21 +00:00
|
|
|
|
2019-07-14 14:15:14 +00:00
|
|
|
my $organisation = $self->schema->resultset('Organisation')->find({
|
|
|
|
'external_reference.external_id' => $supplier_id
|
|
|
|
}, { join => 'external_reference' });
|
2019-07-05 16:56:21 +00:00
|
|
|
|
2019-07-14 14:15:14 +00:00
|
|
|
unless ($organisation) {
|
|
|
|
Pear::LocalLoop::Error->throw("Cannot find an organisation with supplier_id $supplier_id");
|
|
|
|
}
|
2019-07-05 15:52:32 +00:00
|
|
|
|
2019-07-14 14:15:14 +00:00
|
|
|
my $date_formatter = DateTime::Format::Strptime->new(
|
|
|
|
pattern => '%m/%d/%Y',
|
|
|
|
time_zone => 'Europe/London'
|
|
|
|
);
|
2019-07-05 15:52:32 +00:00
|
|
|
|
2019-07-12 15:08:02 +00:00
|
|
|
my $paid_date = ( $row->{paid_date} ?
|
|
|
|
$date_formatter->parse_datetime($row->{paid_date}) :
|
|
|
|
$date_formatter->parse_datetime($row->{invoice_date}) );
|
2019-07-05 15:52:32 +00:00
|
|
|
|
2019-07-14 14:15:14 +00:00
|
|
|
my $gross_value = $row->{gross_amount};
|
|
|
|
$gross_value =~ s/,//g;
|
|
|
|
my $sales_tax_value = $row->{"vat amount"};
|
|
|
|
$sales_tax_value =~ s/,//g;
|
|
|
|
my $net_value = $row->{net_amount};
|
|
|
|
$net_value =~ s/,//g;
|
|
|
|
|
|
|
|
# TODO negative values are sometimes present
|
|
|
|
$self->external_result->find_or_create_related('transactions', {
|
|
|
|
external_id => $row->{transaction_id},
|
|
|
|
transaction => {
|
|
|
|
seller => $organisation->entity,
|
|
|
|
buyer => $lcc_org,
|
|
|
|
purchase_time => $paid_date,
|
|
|
|
value => $gross_value * 100000,
|
|
|
|
meta => {
|
|
|
|
gross_value => $gross_value * 100000,
|
|
|
|
sales_tax_value => $sales_tax_value * 100000,
|
|
|
|
net_value => $net_value * 100000,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
});
|
2019-07-02 14:21:01 +00:00
|
|
|
}
|
|
|
|
|
2019-07-05 15:52:32 +00:00
|
|
|
1;
|