View | Details | Raw Unified | Return to bug 23355
Collapse All | Expand All

(-)a/Koha/Schema/Result/Borrower.pm (-2 / +22 lines)
Lines 929-934 __PACKAGE__->belongs_to( Link Here
929
  { is_deferrable => 1, on_delete => "RESTRICT", on_update => "RESTRICT" },
929
  { is_deferrable => 1, on_delete => "RESTRICT", on_update => "RESTRICT" },
930
);
930
);
931
931
932
=head2 cash_register_actions
933
934
Type: has_many
935
936
Related object: L<Koha::Schema::Result::CashRegisterAction>
937
938
=cut
939
940
__PACKAGE__->has_many(
941
  "cash_register_actions",
942
  "Koha::Schema::Result::CashRegisterAction",
943
  { "foreign.manager_id" => "self.borrowernumber" },
944
  { cascade_copy => 0, cascade_delete => 0 },
945
);
946
932
=head2 categorycode
947
=head2 categorycode
933
948
934
Type: belongs_to
949
Type: belongs_to
Lines 1634-1642 Composing rels: L</aqorder_users> -> ordernumber Link Here
1634
1649
1635
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber");
1650
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber");
1636
1651
1652
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-07-23 13:21:02
1653
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:f25Xar862YgzWuWq5/LIRA
1637
1654
1638
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-10-10 14:31:00
1655
__PACKAGE__->belongs_to(
1639
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:GjJLIOViIFRm185Yjl9vYA
1656
    "guarantor",
1657
    "Koha::Schema::Result::Borrower",
1658
    { borrowernumber => "guarantorid" },
1659
);
1640
1660
1641
__PACKAGE__->add_columns(
1661
__PACKAGE__->add_columns(
1642
    '+anonymized'    => { is_boolean => 1 },
1662
    '+anonymized'    => { is_boolean => 1 },
(-)a/Koha/Schema/Result/CashRegister.pm (-2 / +17 lines)
Lines 144-152 __PACKAGE__->belongs_to( Link Here
144
  { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" },
144
  { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" },
145
);
145
);
146
146
147
=head2 cash_register_actions
147
148
148
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-07-23 13:14:31
149
Type: has_many
149
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:TfGf0U/vWS7IviRlvDdE1w
150
151
Related object: L<Koha::Schema::Result::CashRegisterAction>
152
153
=cut
154
155
__PACKAGE__->has_many(
156
  "cash_register_actions",
157
  "Koha::Schema::Result::CashRegisterAction",
158
  { "foreign.register_id" => "self.id" },
159
  { cascade_copy => 0, cascade_delete => 0 },
160
);
161
162
163
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-07-23 13:21:03
164
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:zP8my0Zp5bSARTBfws4n1A
150
165
151
__PACKAGE__->add_columns(
166
__PACKAGE__->add_columns(
152
    '+archived'       => { is_boolean => 1 },
167
    '+archived'       => { is_boolean => 1 },
(-)a/Koha/Schema/Result/CashRegisterAction.pm (-1 / +135 lines)
Line 0 Link Here
0
- 
1
use utf8;
2
package Koha::Schema::Result::CashRegisterAction;
3
4
# Created by DBIx::Class::Schema::Loader
5
# DO NOT MODIFY THE FIRST PART OF THIS FILE
6
7
=head1 NAME
8
9
Koha::Schema::Result::CashRegisterAction
10
11
=cut
12
13
use strict;
14
use warnings;
15
16
use base 'DBIx::Class::Core';
17
18
=head1 TABLE: C<cash_register_actions>
19
20
=cut
21
22
__PACKAGE__->table("cash_register_actions");
23
24
=head1 ACCESSORS
25
26
=head2 id
27
28
  data_type: 'integer'
29
  is_auto_increment: 1
30
  is_nullable: 0
31
32
=head2 code
33
34
  data_type: 'varchar'
35
  is_nullable: 0
36
  size: 24
37
38
=head2 register_id
39
40
  data_type: 'integer'
41
  is_foreign_key: 1
42
  is_nullable: 0
43
44
=head2 manager_id
45
46
  data_type: 'integer'
47
  is_foreign_key: 1
48
  is_nullable: 0
49
50
=head2 amount
51
52
  data_type: 'decimal'
53
  is_nullable: 1
54
  size: [28,6]
55
56
=head2 timestamp
57
58
  data_type: 'timestamp'
59
  datetime_undef_if_invalid: 1
60
  default_value: current_timestamp
61
  is_nullable: 0
62
63
=cut
64
65
__PACKAGE__->add_columns(
66
  "id",
67
  { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
68
  "code",
69
  { data_type => "varchar", is_nullable => 0, size => 24 },
70
  "register_id",
71
  { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
72
  "manager_id",
73
  { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
74
  "amount",
75
  { data_type => "decimal", is_nullable => 1, size => [28, 6] },
76
  "timestamp",
77
  {
78
    data_type => "timestamp",
79
    datetime_undef_if_invalid => 1,
80
    default_value => \"current_timestamp",
81
    is_nullable => 0,
82
  },
83
);
84
85
=head1 PRIMARY KEY
86
87
=over 4
88
89
=item * L</id>
90
91
=back
92
93
=cut
94
95
__PACKAGE__->set_primary_key("id");
96
97
=head1 RELATIONS
98
99
=head2 manager
100
101
Type: belongs_to
102
103
Related object: L<Koha::Schema::Result::Borrower>
104
105
=cut
106
107
__PACKAGE__->belongs_to(
108
  "manager",
109
  "Koha::Schema::Result::Borrower",
110
  { borrowernumber => "manager_id" },
111
  { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" },
112
);
113
114
=head2 register
115
116
Type: belongs_to
117
118
Related object: L<Koha::Schema::Result::CashRegister>
119
120
=cut
121
122
__PACKAGE__->belongs_to(
123
  "register",
124
  "Koha::Schema::Result::CashRegister",
125
  { id => "register_id" },
126
  { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" },
127
);
128
129
130
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-07-23 13:21:03
131
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Oaee+hS82IEJHHBGuOXDtw
132
133
134
# You can replace this text with custom code or comments, and it will be preserved on regeneration
135
1;

Return to bug 23355