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

(-)a/Koha/Schema/Result/Aqcontact.pm (-5 / +16 lines)
Lines 126-131 is this the primary contact for acquisitions messages Link Here
126
126
127
is this the primary contact for serials messages
127
is this the primary contact for serials messages
128
128
129
=head2 edi_error_notification
130
131
  data_type: 'tinyint'
132
  default_value: 0
133
  is_nullable: 0
134
135
should this contact receive EDI error notifications (e.g. duplicate invoices)
136
129
=head2 booksellerid
137
=head2 booksellerid
130
138
131
  data_type: 'integer'
139
  data_type: 'integer'
Lines 161-166 __PACKAGE__->add_columns( Link Here
161
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
169
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
162
  "serialsprimary",
170
  "serialsprimary",
163
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
171
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
172
  "edi_error_notification",
173
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
164
  "booksellerid",
174
  "booksellerid",
165
  { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
175
  { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
166
);
176
);
Lines 199-209 __PACKAGE__->belongs_to( Link Here
199
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:IefjqDsoXPLWKSfhYGne1A
209
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:IefjqDsoXPLWKSfhYGne1A
200
210
201
__PACKAGE__->add_columns(
211
__PACKAGE__->add_columns(
202
    '+orderacquisition' => { is_boolean => 1 },
212
    '+orderacquisition'       => { is_boolean => 1 },
203
    '+claimacquisition' => { is_boolean => 1 },
213
    '+claimacquisition'       => { is_boolean => 1 },
204
    '+claimissues'      => { is_boolean => 1 },
214
    '+claimissues'            => { is_boolean => 1 },
205
    '+acqprimary'       => { is_boolean => 1 },
215
    '+acqprimary'             => { is_boolean => 1 },
206
    '+serialsprimary'   => { is_boolean => 1 },
216
    '+serialsprimary'         => { is_boolean => 1 },
217
    '+edi_error_notification' => { is_boolean => 1 },
207
);
218
);
208
219
209
=head2 koha_object_class
220
=head2 koha_object_class
(-)a/Koha/Schema/Result/VendorEdiAccount.pm (-3 / +2 lines)
Lines 248-255 __PACKAGE__->belongs_to( Link Here
248
);
248
);
249
249
250
250
251
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-11-03 20:27:30
251
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-11-26 00:00:00
252
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:1sHAak6V/HC2E1AUHzDapg
252
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:original_schema_bug_41297
253
253
254
__PACKAGE__->add_columns(
254
__PACKAGE__->add_columns(
255
    '+auto_orders'       => { is_boolean => 1 },
255
    '+auto_orders'       => { is_boolean => 1 },
256
- 

Return to bug 41297