Main Koha release repository https://koha-community.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

194 lines
3.4 KiB

use utf8;
package Koha::Schema::Result::CashRegister;
# Created by DBIx::Class::Schema::Loader
# DO NOT MODIFY THE FIRST PART OF THIS FILE
=head1 NAME
Koha::Schema::Result::CashRegister
=cut
use strict;
use warnings;
use base 'DBIx::Class::Core';
=head1 TABLE: C<cash_registers>
=cut
__PACKAGE__->table("cash_registers");
=head1 ACCESSORS
=head2 id
data_type: 'integer'
is_auto_increment: 1
is_nullable: 0
unique identifier for each account register
=head2 name
data_type: 'varchar'
is_nullable: 0
size: 24
the user friendly identifier for each account register
=head2 description
data_type: 'longtext'
is_nullable: 0
the user friendly description for each account register
=head2 branch
data_type: 'varchar'
is_foreign_key: 1
is_nullable: 0
size: 10
the foreign key the library this account register belongs
=head2 branch_default
data_type: 'tinyint'
default_value: 0
is_nullable: 0
boolean flag to denote that this till is the branch default
=head2 starting_float
data_type: 'decimal'
is_nullable: 1
size: [28,6]
the starting float this account register should be assigned
=head2 archived
data_type: 'tinyint'
default_value: 0
is_nullable: 0
boolean flag to denote if this till is archived or not
=cut
__PACKAGE__->add_columns(
"id",
{ data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
"name",
{ data_type => "varchar", is_nullable => 0, size => 24 },
"description",
{ data_type => "longtext", is_nullable => 0 },
"branch",
{ data_type => "varchar", is_foreign_key => 1, is_nullable => 0, size => 10 },
"branch_default",
{ data_type => "tinyint", default_value => 0, is_nullable => 0 },
"starting_float",
{ data_type => "decimal", is_nullable => 1, size => [28, 6] },
"archived",
{ data_type => "tinyint", default_value => 0, is_nullable => 0 },
);
=head1 PRIMARY KEY
=over 4
=item * L</id>
=back
=cut
__PACKAGE__->set_primary_key("id");
=head1 UNIQUE CONSTRAINTS
=head2 C<name>
=over 4
=item * L</name>
=item * L</branch>
=back
=cut
__PACKAGE__->add_unique_constraint("name", ["name", "branch"]);
=head1 RELATIONS
=head2 accountlines
Type: has_many
Related object: L<Koha::Schema::Result::Accountline>
=cut
__PACKAGE__->has_many(
"accountlines",
"Koha::Schema::Result::Accountline",
{ "foreign.register_id" => "self.id" },
{ cascade_copy => 0, cascade_delete => 0 },
);
=head2 branch
Type: belongs_to
Related object: L<Koha::Schema::Result::Branch>
=cut
__PACKAGE__->belongs_to(
"branch",
"Koha::Schema::Result::Branch",
{ branchcode => "branch" },
{ is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" },
);
=head2 cash_register_actions
Type: has_many
Related object: L<Koha::Schema::Result::CashRegisterAction>
=cut
__PACKAGE__->has_many(
"cash_register_actions",
"Koha::Schema::Result::CashRegisterAction",
{ "foreign.register_id" => "self.id" },
{ cascade_copy => 0, cascade_delete => 0 },
);
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-01-21 13:39:29
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:NNSzc20vEH34dmEsTb5K0Q
__PACKAGE__->add_columns(
'+archived' => { is_boolean => 1 },
'+branch_default' => { is_boolean => 1 },
);
sub koha_objects_class {
'Koha::Cash::Registers';
}
sub koha_object_class {
'Koha::Cash::Register';
}
# You can replace this text with custom code or comments, and it will be preserved on regeneration
1;