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

(-)a/Koha/Cash/Register.pm (-2 / +1 lines)
Lines 178-184 sub make_default { Link Here
178
        sub {
178
        sub {
179
            my $registers =
179
            my $registers =
180
              Koha::Cash::Registers->search( { branch => $self->branch } );
180
              Koha::Cash::Registers->search( { branch => $self->branch } );
181
            $registers->update( { branch_default => 0 } );
181
            $registers->update( { branch_default => 0 }, { no_triggers => 1 } );
182
            $self->set( { branch_default => 1 } );
182
            $self->set( { branch_default => 1 } );
183
            $self->SUPER::store;
183
            $self->SUPER::store;
184
        }
184
        }
185
- 

Return to bug 23185