use Getopt::Long qw( GetOptions );
use Pod::Usage qw( pod2usage );
use C4::Log qw( cronlogaction );
use Koha::Account::Lines;
use Koha::DateUtils qw( dt_from_string );
use Koha::Script -cron;
my $command_line_options = join( " ", @ARGV );
cronlogaction( { info => $command_line_options } );
my ( $help, $verbose, @type, $before, $after, @category_code, $file, $confirm );
GetOptions(
'h|help' => \$help,
}
cronlogaction( { action => 'End', info => "COMPLETED" } );
exit(0);
__END__
-