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

(-)a/Koha/Schema/Result/Aqorder.pm (-3 / +10 lines)
Lines 406-411 Type of number above usually 'QLI' Link Here
406
406
407
reports received from suppliers
407
reports received from suppliers
408
408
409
=head2 estimated_delivery_date
410
411
  data_type: 'date'
412
  datetime_undef_if_invalid: 1
413
  is_nullable: 1
414
409
=cut
415
=cut
410
416
411
__PACKAGE__->add_columns(
417
__PACKAGE__->add_columns(
Lines 517-522 __PACKAGE__->add_columns( Link Here
517
  { data_type => "varchar", is_nullable => 1, size => 3 },
523
  { data_type => "varchar", is_nullable => 1, size => 3 },
518
  "suppliers_report",
524
  "suppliers_report",
519
  { data_type => "mediumtext", is_nullable => 1 },
525
  { data_type => "mediumtext", is_nullable => 1 },
526
  "estimated_delivery_date",
527
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
520
);
528
);
521
529
522
=head1 PRIMARY KEY
530
=head1 PRIMARY KEY
Lines 754-761 Composing rels: L</aqorder_users> -> borrowernumber Link Here
754
__PACKAGE__->many_to_many("borrowernumbers", "aqorder_users", "borrowernumber");
762
__PACKAGE__->many_to_many("borrowernumbers", "aqorder_users", "borrowernumber");
755
763
756
764
757
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-01-21 13:39:29
765
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2022-07-15 09:33:17
758
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:c1YBLkG64bdFakf4/cGjXA
766
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:japQaaVH2svTNfJ9M8cHCw
759
767
760
__PACKAGE__->belongs_to(
768
__PACKAGE__->belongs_to(
761
  "basket",
769
  "basket",
762
- 

Return to bug 15348