Bug 8007: Discharge - DBIx changes
authorYohann Dufour <dufour.yohann@gmail.com>
Mon, 4 Aug 2014 14:09:27 +0000 (16:09 +0200)
committerTomas Cohen Arazi <tomascohen@gmail.com>
Thu, 30 Apr 2015 15:33:49 +0000 (12:33 -0300)
Signed-off-by: Lucie <lucie.rousseaux@dracenie.com>
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@gmail.com>
Koha/Schema/Result/Borrower.pm
Koha/Schema/Result/BorrowerDebarment.pm
Koha/Schema/Result/Discharge.pm [new file with mode: 0644]

index 04b7c8d..bc83c78 100644 (file)
@@ -828,6 +828,21 @@ __PACKAGE__->has_many(
   { cascade_copy => 0, cascade_delete => 0 },
 );
 
+=head2 discharges
+
+Type: has_many
+
+Related object: L<Koha::Schema::Result::Discharge>
+
+=cut
+
+__PACKAGE__->has_many(
+  "discharges",
+  "Koha::Schema::Result::Discharge",
+  { "foreign.borrower" => "self.borrowernumber" },
+  { cascade_copy => 0, cascade_delete => 0 },
+);
+
 =head2 hold_fill_targets
 
 Type: has_many
index 3620873..45a25ff 100644 (file)
@@ -45,7 +45,7 @@ __PACKAGE__->table("borrower_debarments");
 
   data_type: 'enum'
   default_value: 'MANUAL'
-  extra: {list => ["SUSPENSION","OVERDUES","MANUAL"]}
+  extra: {list => ["SUSPENSION","OVERDUES","MANUAL","DISCHARGE"]}
   is_nullable: 0
 
 =head2 comment
@@ -84,7 +84,7 @@ __PACKAGE__->add_columns(
   {
     data_type => "enum",
     default_value => "MANUAL",
-    extra => { list => ["SUSPENSION", "OVERDUES", "MANUAL"] },
+    extra => { list => ["SUSPENSION", "OVERDUES", "MANUAL", "DISCHARGE"] },
     is_nullable => 0,
   },
   "comment",
@@ -136,8 +136,8 @@ __PACKAGE__->belongs_to(
 );
 
 
-# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-31 01:30:23
-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Vq6rOYGJBK8Mw2YFAX52Vg
+# Created by DBIx::Class::Schema::Loader v0.07025 @ 2014-01-07 17:25:44
+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:4KkoPNcgZoANIScMWUyS/w
 
 
 # You can replace this text with custom code or comments, and it will be preserved on regeneration
diff --git a/Koha/Schema/Result/Discharge.pm b/Koha/Schema/Result/Discharge.pm
new file mode 100644 (file)
index 0000000..8f9c60c
--- /dev/null
@@ -0,0 +1,91 @@
+use utf8;
+package Koha::Schema::Result::Discharge;
+
+# Created by DBIx::Class::Schema::Loader
+# DO NOT MODIFY THE FIRST PART OF THIS FILE
+
+=head1 NAME
+
+Koha::Schema::Result::Discharge
+
+=cut
+
+use strict;
+use warnings;
+
+use base 'DBIx::Class::Core';
+
+=head1 TABLE: C<discharges>
+
+=cut
+
+__PACKAGE__->table("discharges");
+
+=head1 ACCESSORS
+
+=head2 borrower
+
+  data_type: 'integer'
+  is_foreign_key: 1
+  is_nullable: 1
+
+=head2 needed
+
+  data_type: 'timestamp'
+  datetime_undef_if_invalid: 1
+  is_nullable: 1
+
+=head2 validated
+
+  data_type: 'timestamp'
+  datetime_undef_if_invalid: 1
+  is_nullable: 1
+
+=cut
+
+__PACKAGE__->add_columns(
+  "borrower",
+  { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
+  "needed",
+  {
+    data_type => "timestamp",
+    datetime_undef_if_invalid => 1,
+    is_nullable => 1,
+  },
+  "validated",
+  {
+    data_type => "timestamp",
+    datetime_undef_if_invalid => 1,
+    is_nullable => 1,
+  },
+);
+
+=head1 RELATIONS
+
+=head2 borrower
+
+Type: belongs_to
+
+Related object: L<Koha::Schema::Result::Borrower>
+
+=cut
+
+__PACKAGE__->belongs_to(
+  "borrower",
+  "Koha::Schema::Result::Borrower",
+  { borrowernumber => "borrower" },
+  {
+    is_deferrable => 1,
+    join_type     => "LEFT",
+    on_delete     => "CASCADE",
+    on_update     => "CASCADE",
+  },
+);
+
+
+# Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-01-08 18:15:13
+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:uq7Zb0SNf2mD3cpC4oub9A
+
+
+# You can replace this text with custom code or comments, and it will be preserved on regeneration
+1;