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

(-)a/Koha/Schema/Result/AccountDebitType.pm (-3 / +12 lines)
Lines 71-76 boolean flag to denote if this debit type is available at point of sale Link Here
71
71
72
boolean flag to denote if this till is archived or not
72
boolean flag to denote if this till is archived or not
73
73
74
=head2 restricts_checkouts
75
76
  data_type: 'tinyint'
77
  default_value: 1
78
  is_nullable: 0
79
80
boolean flag to denote if the noissuescharge syspref for this debit type is active
81
74
=cut
82
=cut
75
83
76
__PACKAGE__->add_columns(
84
__PACKAGE__->add_columns(
Lines 88-93 __PACKAGE__->add_columns( Link Here
88
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
96
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
89
  "archived",
97
  "archived",
90
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
98
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
99
  "restricts_checkouts",
100
  { data_type => "tinyint", default_value => 1, is_nullable => 0 },
91
);
101
);
92
102
93
=head1 PRIMARY KEY
103
=head1 PRIMARY KEY
Lines 135-142 __PACKAGE__->has_many( Link Here
135
);
145
);
136
146
137
147
138
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-01-21 13:39:29
148
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-01-10 14:49:18
139
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ulpJRbi7H40EXr1QG+URKg
149
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:9+mMPMSWcc/PwryYNQ2Jqg
140
150
141
__PACKAGE__->add_columns(
151
__PACKAGE__->add_columns(
142
    '+is_system' => { is_boolean => 1 }
152
    '+is_system' => { is_boolean => 1 }
143
- 

Return to bug 32450