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

(-)a/Koha/Schema/Result/Statistic.pm (-3 / +11 lines)
Lines 62-67 transaction type (localuse, issue, return, renew, writeoff, payment) Link Here
62
62
63
used by SIP
63
used by SIP
64
64
65
=head2 illrequest_id
66
67
  data_type: 'integer'
68
  is_nullable: 1
69
70
foreign key from the illrequests table, links transaction to a specific illrequest
71
65
=head2 itemnumber
72
=head2 itemnumber
66
73
67
  data_type: 'integer'
74
  data_type: 'integer'
Lines 133-138 __PACKAGE__->add_columns( Link Here
133
  { data_type => "varchar", is_nullable => 1, size => 16 },
140
  { data_type => "varchar", is_nullable => 1, size => 16 },
134
  "other",
141
  "other",
135
  { data_type => "longtext", is_nullable => 1 },
142
  { data_type => "longtext", is_nullable => 1 },
143
  "illrequest_id",
144
  { data_type => "integer", is_nullable => 1 },
136
  "itemnumber",
145
  "itemnumber",
137
  { data_type => "integer", is_nullable => 1 },
146
  { data_type => "integer", is_nullable => 1 },
138
  "itemtype",
147
  "itemtype",
Lines 150-157 __PACKAGE__->add_columns( Link Here
150
);
159
);
151
160
152
161
153
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-05-10 17:08:44
162
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-03-03 12:24:20
154
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:3mznfs//6bH21hFpyZl7lw
163
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ULsT1tRHMfQ06eZTvSykHA
155
164
156
165
157
# You can replace this text with custom content, and it will be preserved on regeneration
166
# You can replace this text with custom content, and it will be preserved on regeneration
158
- 

Return to bug 37901