<<

NAME

Koha::Schema::Result::AccountDebitType

TABLE: account_debit_types

ACCESSORS

code

  data_type: 'varchar'
  is_nullable: 0
  size: 80

description

  data_type: 'varchar'
  is_nullable: 1
  size: 200

can_be_invoiced

  data_type: 'tinyint'
  default_value: 1
  is_nullable: 0

boolean flag to denote if this debit type is available for manual invoicing

can_be_sold

  data_type: 'tinyint'
  default_value: 0
  is_nullable: 0

boolean flag to denote if this debit type is available at point of sale

default_amount

  data_type: 'decimal'
  is_nullable: 1
  size: [28,6]

is_system

  data_type: 'tinyint'
  default_value: 0
  is_nullable: 0

archived

  data_type: 'tinyint'
  default_value: 0
  is_nullable: 0

boolean flag to denote if this till is archived or not

restricts_checkouts

  data_type: 'tinyint'
  default_value: 1
  is_nullable: 0

boolean flag to denote if the noissuescharge syspref for this debit type is active

PRIMARY KEY

RELATIONS

account_debit_types_branches

Type: has_many

Related object: Koha::Schema::Result::AccountDebitTypesBranch

accountlines

Type: has_many

Related object: Koha::Schema::Result::Accountline

<<