<<

NAME

Koha::Schema::Result::Iso18626Request

TABLE: iso18626_requests

ACCESSORS

iso18626_request_id

  data_type: 'integer'
  is_auto_increment: 1
  is_nullable: 0

Internal request number

supplyingAgencyId

  accessor: 'supplying_agency_id'
  data_type: 'varchar'
  is_nullable: 1
  size: 80

Supplying agency ID

iso18626_requesting_agency_id

  data_type: 'integer'
  is_foreign_key: 1
  is_nullable: 0

Associated ISO18626 requesting agency

created_on

  data_type: 'timestamp'
  datetime_undef_if_invalid: 1
  default_value: current_timestamp
  is_nullable: 0

Date and time the request was created

updated_on

  data_type: 'timestamp'
  datetime_undef_if_invalid: 1
  default_value: current_timestamp
  is_nullable: 0

Date and time the request was last updated

requestingAgencyRequestId

  accessor: 'requesting_agency_request_id'
  data_type: 'varchar'
  is_nullable: 1
  size: 80

Requesting agency request ID or number

status

  data_type: 'enum'
  default_value: 'RequestReceived'
  extra: {list => ["RequestReceived","ExpectToSupply","WillSupply","Loaned","Overdue","Recalled","RetryPossible","Unfilled","HoldReturn","ReleaseHoldReturn","CopyCompleted","LoanCompleted","CompletedWithoutReturn","Cancelled"]}
  is_nullable: 1

Current ISO18626 status of request

service_type

  data_type: 'enum'
  extra: {list => ["Copy","Loan","CopyOrLoan"]}
  is_nullable: 0

ISO18626 service type

pending_requesting_agency_action

  data_type: 'enum'
  extra: {list => ["Cancel","Renew"]}
  is_nullable: 1

ISO18626 Requesting Agency action that requires a manual response (yes or no)

hold_id

  data_type: 'integer'
  is_foreign_key: 1
  is_nullable: 1

ID of the hold related to this ISO18626 request

issue_id

  data_type: 'integer'
  is_foreign_key: 1
  is_nullable: 1

ID of the checkout related to this ISO18626 request

biblio_id

  data_type: 'integer'
  is_foreign_key: 1
  is_nullable: 1

ID of the biblio related to this ISO18626 request

PRIMARY KEY

UNIQUE CONSTRAINTS

uniq_issue_id

uniq_reserve_id

RELATIONS

biblio

Type: belongs_to

Related object: Koha::Schema::Result::Biblio

hold

Type: belongs_to

Related object: Koha::Schema::Result::Reserve

iso18626_messages

Type: has_many

Related object: Koha::Schema::Result::Iso18626Message

iso18626_requesting_agency

Type: belongs_to

Related object: Koha::Schema::Result::Iso18626RequestingAgency

issue

Type: belongs_to

Related object: Koha::Schema::Result::Issue

koha_object_class

Missing POD for koha_object_class.

koha_objects_class

Missing POD for koha_objects_class.

<<