<<

NAME

Koha::Schema::Result::MarcOrderAccount

TABLE: marc_order_accounts

ACCESSORS

id

  data_type: 'integer'
  is_auto_increment: 1
  is_nullable: 0

unique identifier and primary key

description

  data_type: 'varchar'
  is_nullable: 0
  size: 250

description of this account

vendor_id

  data_type: 'integer'
  is_foreign_key: 1
  is_nullable: 1

vendor id for this account

budget_id

  data_type: 'integer'
  is_foreign_key: 1
  is_nullable: 1

budget id for this account

download_directory

  data_type: 'mediumtext'
  is_nullable: 1

download directory for this account

matcher_id

  data_type: 'integer'
  is_nullable: 1

the id of the match rule used (matchpoints.matcher_id)

overlay_action

  data_type: 'varchar'
  is_nullable: 1
  size: 50

how to handle duplicate records

nomatch_action

  data_type: 'varchar'
  is_nullable: 1
  size: 50

how to handle records where no match is found

item_action

  data_type: 'varchar'
  is_nullable: 1
  size: 50

what to do with item records

parse_items

  data_type: 'tinyint'
  is_nullable: 1

should items be parsed

record_type

  data_type: 'varchar'
  is_nullable: 1
  size: 50

type of record in the file

encoding

  data_type: 'varchar'
  is_nullable: 1
  size: 50

file encoding

match_field

  data_type: 'varchar'
  is_nullable: 1
  size: 10

the field that a vendor account has been mapped to in a marc record

match_value

  data_type: 'varchar'
  is_nullable: 1
  size: 50

the value to be matched against the marc record

PRIMARY KEY

RELATIONS

budget

Type: belongs_to

Related object: Koha::Schema::Result::Aqbudget

vendor

Type: belongs_to

Related object: Koha::Schema::Result::Aqbookseller

<<