<<

NAME

Koha::Illrequest::SupplierUpdate - Represents a single request update from a supplier

SYNOPSIS

Object-oriented class that provides an object allowing us to interact with an update from a supplier

DESCRIPTION

Object-oriented class that provides an object allowing us to interact with an update from a supplier

API

Class Methods

new

    my $update = Koha::Illrequest::SupplierUpdate->new(
        $source_type,
        $source_name,
        $update
    );

Create a new Koha::Illrequest::SupplierUpdate object.

attach_processor

    Koha::Illrequest::SupplierUpdate->attach_processor($processor);

Pushes a processor function onto the 'processors' arrayref

run_processors

    Koha::Illrequest::SupplierUpdate->run_processors();

Iterates all processors on this object and runs each

AUTHOR

Andrew Isherwood <andrew.isherwood@ptfs-europe.com>

<<