ACL for hardware class config, RT#85057
[freeside.git] / FS / FS / Cron / lnp_vitelity.pm
1 package FS::Cron::lnp_vitelity;
2 use base qw( Exporter );
3
4 use vars qw( @EXPORT_OK );
5 use FS::Record qw( qsearch );
6 use FS::part_export;
7
8 @EXPORT_OK = qw( lnp_vitelity );
9
10 sub lnp_vitelity {
11   $_->check_lnp foreach qsearch('part_export', {exporttype=>'vitelity'} );
12 }
13
14 1;