Added in importing Supplier CSV

This commit is contained in:
Finn 2019-07-05 15:30:31 +01:00
parent 4b7550f569
commit bf4b092a12
No known key found for this signature in database
GPG key ID: 7455B4B17685B598
17 changed files with 4696 additions and 23 deletions

View file

@ -2,12 +2,6 @@ package Pear::LocalLoop::Import::LCCCsv;
use Moo;
use Pear::LocalLoop::Error;
with qw/
Pear::LocalLoop::Import::Role::ExternalName
Pear::LocalLoop::Import::Role::Schema
Pear::LocalLoop::Import::Role::CSV
/;
has external_name => (
is => 'ro',
default => 'LCC CSV',
@ -20,4 +14,10 @@ has csv_required_columns => (
},
);
1;
with qw/
Pear::LocalLoop::Import::Role::ExternalName
Pear::LocalLoop::Import::Role::Schema
Pear::LocalLoop::Import::Role::CSV
/;
1;