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

(-)a/C4/Reserves.pm (-6 / +2 lines)
Lines 23-41 package C4::Reserves; Link Here
23
23
24
use strict;
24
use strict;
25
#use warnings; FIXME - Bug 2505
25
#use warnings; FIXME - Bug 2505
26
26
use C4::Accounts;
27
use C4::Accounts;
27
use C4::Biblio;
28
use C4::Biblio;
28
use C4::Circulation;
29
use C4::Circulation;
29
use C4::Context;
30
use C4::Context;
30
use C4::Items;
31
use C4::Items;
31
use C4::Members;
32
33
# for _koha_notify_reserve
34
use C4::Letters;
32
use C4::Letters;
35
use C4::Log;
33
use C4::Log;
36
use C4::Members qw();
37
use C4::Members::Messaging;
34
use C4::Members::Messaging;
38
35
use C4::Members;
39
use Koha::Account::Lines;
36
use Koha::Account::Lines;
40
use Koha::Biblios;
37
use Koha::Biblios;
41
use Koha::Calendar;
38
use Koha::Calendar;
Lines 48-54 use Koha::IssuingRules; Link Here
48
use Koha::ItemTypes;
45
use Koha::ItemTypes;
49
use Koha::Items;
46
use Koha::Items;
50
use Koha::Libraries;
47
use Koha::Libraries;
51
use Koha::Libraries;
52
use Koha::Old::Hold;
48
use Koha::Old::Hold;
53
use Koha::Patrons;
49
use Koha::Patrons;
54
50
(-)a/Koha/Schema/Result/Accountline.pm (-10 / +2 lines)
Lines 40-51 __PACKAGE__->table("accountlines"); Link Here
40
  is_foreign_key: 1
40
  is_foreign_key: 1
41
  is_nullable: 1
41
  is_nullable: 1
42
42
43
=head2 accountno
44
45
  data_type: 'smallint'
46
  default_value: 0
47
  is_nullable: 0
48
49
=head2 itemnumber
43
=head2 itemnumber
50
44
51
  data_type: 'integer'
45
  data_type: 'integer'
Lines 126-133 __PACKAGE__->add_columns( Link Here
126
  { data_type => "integer", is_nullable => 1 },
120
  { data_type => "integer", is_nullable => 1 },
127
  "borrowernumber",
121
  "borrowernumber",
128
  { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
122
  { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
129
  "accountno",
130
  { data_type => "smallint", default_value => 0, is_nullable => 0 },
131
  "itemnumber",
123
  "itemnumber",
132
  { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
124
  { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
133
  "date",
125
  "date",
Lines 264-271 __PACKAGE__->belongs_to( Link Here
264
);
256
);
265
257
266
258
267
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-01-03 16:10:04
259
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-03-11 15:18:19
268
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:BO7iSB+QzoJNuZ8Uttba6A
260
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:vrZgLS4lFNQlWXHLGDeXJA
269
261
270
sub koha_objects_class {
262
sub koha_objects_class {
271
    'Koha::Account::Lines';
263
    'Koha::Account::Lines';
(-)a/Koha/Schema/Result/SocialData.pm (-3 / +4 lines)
Lines 26-31 __PACKAGE__->table("social_data"); Link Here
26
=head2 isbn
26
=head2 isbn
27
27
28
  data_type: 'varchar'
28
  data_type: 'varchar'
29
  default_value: (empty string)
29
  is_nullable: 0
30
  is_nullable: 0
30
  size: 30
31
  size: 30
31
32
Lines 64-70 __PACKAGE__->table("social_data"); Link Here
64
65
65
__PACKAGE__->add_columns(
66
__PACKAGE__->add_columns(
66
  "isbn",
67
  "isbn",
67
  { data_type => "varchar", is_nullable => 0, size => 30 },
68
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 30 },
68
  "num_critics",
69
  "num_critics",
69
  { data_type => "integer", is_nullable => 1 },
70
  { data_type => "integer", is_nullable => 1 },
70
  "num_critics_pro",
71
  "num_critics_pro",
Lines 92-99 __PACKAGE__->add_columns( Link Here
92
__PACKAGE__->set_primary_key("isbn");
93
__PACKAGE__->set_primary_key("isbn");
93
94
94
95
95
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2018-11-13 15:24:28
96
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-03-11 15:18:21
96
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:l44tYFEfIKX0xXzj6AHInQ
97
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:VSgglsYCYVTVWOzD7hIrLg
97
98
98
99
99
# You can replace this text with custom content, and it will be preserved on regeneration
100
# You can replace this text with custom content, and it will be preserved on regeneration
(-)a/Koha/Schema/Result/Statistic.pm (-11 / +2 lines)
Lines 35-46 __PACKAGE__->table("statistics"); Link Here
35
  is_nullable: 1
35
  is_nullable: 1
36
  size: 10
36
  size: 10
37
37
38
=head2 proccode
39
40
  data_type: 'varchar'
41
  is_nullable: 1
42
  size: 4
43
44
=head2 value
38
=head2 value
45
39
46
  data_type: 'double precision'
40
  data_type: 'double precision'
Lines 108-115 __PACKAGE__->add_columns( Link Here
108
  },
102
  },
109
  "branch",
103
  "branch",
110
  { data_type => "varchar", is_nullable => 1, size => 10 },
104
  { data_type => "varchar", is_nullable => 1, size => 10 },
111
  "proccode",
112
  { data_type => "varchar", is_nullable => 1, size => 4 },
113
  "value",
105
  "value",
114
  { data_type => "double precision", is_nullable => 1, size => [16, 4] },
106
  { data_type => "double precision", is_nullable => 1, size => [16, 4] },
115
  "type",
107
  "type",
Lines 133-140 __PACKAGE__->add_columns( Link Here
133
);
125
);
134
126
135
127
136
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-09-26 16:15:09
128
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-03-11 15:18:21
137
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:OECp3uSP488L8TUoS1HseQ
129
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:FFi5MupRV2uIu340ihDv3Q
138
130
139
131
140
# You can replace this text with custom content, and it will be preserved on regeneration
132
# You can replace this text with custom content, and it will be preserved on regeneration
141
- 

Return to bug 22330