|
Lines 136-141
__PACKAGE__->add_columns(
Link Here
|
| 136 |
'+is_system' => { is_boolean => 1 } |
136 |
'+is_system' => { is_boolean => 1 } |
| 137 |
); |
137 |
); |
| 138 |
|
138 |
|
|
|
139 |
__PACKAGE__->add_columns( |
| 140 |
"+can_be_sold" => { is_boolean => 1 } |
| 141 |
); |
| 142 |
|
| 143 |
__PACKAGE__->add_columns( |
| 144 |
"+can_be_invoiced" => { is_boolean => 1 } |
| 145 |
); |
| 146 |
|
| 139 |
sub koha_objects_class { |
147 |
sub koha_objects_class { |
| 140 |
'Koha::Account::DebitTypes'; |
148 |
'Koha::Account::DebitTypes'; |
| 141 |
} |
149 |
} |
| 142 |
- |
|
|