<<

NAME

Koha::Schema::Result::CashRegisterAction

TABLE: cash_register_actions

ACCESSORS

id

  data_type: 'integer'
  is_auto_increment: 1
  is_nullable: 0

unique identifier for each account register action

code

  data_type: 'varchar'
  is_nullable: 0
  size: 24

action code denoting the type of action recorded (enum),

register_id

  data_type: 'integer'
  is_foreign_key: 1
  is_nullable: 0

id of cash_register this action belongs to,

manager_id

  data_type: 'integer'
  is_foreign_key: 1
  is_nullable: 0

staff member performing the action

amount

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

amount recorded in action (signed)

timestamp

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

PRIMARY KEY

RELATIONS

manager

Type: belongs_to

Related object: Koha::Schema::Result::Borrower

register

Type: belongs_to

Related object: Koha::Schema::Result::CashRegister

<<