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

(-)a/Koha/Schema/Result/Deleteditem.pm (+24 lines)
Lines 186-191 authorized value defining this item as withdrawn (MARC21 952$0) Link Here
186
186
187
the date and time an item was last marked as withdrawn, NULL if not withdrawn
187
the date and time an item was last marked as withdrawn, NULL if not withdrawn
188
188
189
=head2 floating
190
191
  data_type: 'tinyint'
192
  default_value: 0
193
  is_nullable: 0
194
195
if set, the item does not return to its homebranch after being returned (overrides circulation rules)
196
197
=head2 floating_on
198
199
  data_type: 'datetime'
200
  datetime_undef_if_invalid: 1
201
  is_nullable: 1
202
203
the date and time an item was last marked as floating, NULL if not floating
204
189
=head2 itemcallnumber
205
=head2 itemcallnumber
190
206
191
  data_type: 'varchar'
207
  data_type: 'varchar'
Lines 453-458 __PACKAGE__->add_columns( Link Here
453
    datetime_undef_if_invalid => 1,
469
    datetime_undef_if_invalid => 1,
454
    is_nullable => 1,
470
    is_nullable => 1,
455
  },
471
  },
472
  "floating",
473
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
474
  "floating_on",
475
  {
476
    data_type => "datetime",
477
    datetime_undef_if_invalid => 1,
478
    is_nullable => 1,
479
  },
456
  "itemcallnumber",
480
  "itemcallnumber",
457
  { data_type => "varchar", is_nullable => 1, size => 255 },
481
  { data_type => "varchar", is_nullable => 1, size => 255 },
458
  "coded_location_qualifier",
482
  "coded_location_qualifier",
(-)a/Koha/Schema/Result/Item.pm (-1 / +24 lines)
Lines 189-194 authorized value defining this item as withdrawn (MARC21 952$0) Link Here
189
189
190
the date and time an item was last marked as withdrawn, NULL if not withdrawn
190
the date and time an item was last marked as withdrawn, NULL if not withdrawn
191
191
192
=head2 floating
193
194
  data_type: 'tinyint'
195
  default_value: 0
196
  is_nullable: 0
197
198
if set, the item does not return to its homebranch after being returned (overrides circulation rules)
199
200
=head2 floating_on
201
202
  data_type: 'datetime'
203
  datetime_undef_if_invalid: 1
204
  is_nullable: 1
205
206
the date and time an item was last marked as floating, NULL if not floating
207
192
=head2 itemcallnumber
208
=head2 itemcallnumber
193
209
194
  data_type: 'varchar'
210
  data_type: 'varchar'
Lines 467-472 __PACKAGE__->add_columns( Link Here
467
    datetime_undef_if_invalid => 1,
483
    datetime_undef_if_invalid => 1,
468
    is_nullable => 1,
484
    is_nullable => 1,
469
  },
485
  },
486
  "floating",
487
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
488
  "floating_on",
489
  {
490
    data_type => "datetime",
491
    datetime_undef_if_invalid => 1,
492
    is_nullable => 1,
493
  },
470
  "itemcallnumber",
494
  "itemcallnumber",
471
  { data_type => "varchar", is_nullable => 1, size => 255 },
495
  { data_type => "varchar", is_nullable => 1, size => 255 },
472
  "coded_location_qualifier",
496
  "coded_location_qualifier",
473
- 

Return to bug 33075