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

(-)a/C4/Items.pm (-2 / +1 lines)
Lines 2128-2134 C<items.withdrawn> Link Here
2128
2128
2129
sub _set_defaults_for_add {
2129
sub _set_defaults_for_add {
2130
    my $item = shift;
2130
    my $item = shift;
2131
    $item->{dateaccessioned} || output_pref({ dt => dt_from_string, dateformat => 'iso', dateonly => 1 });
2131
    $item->{dateaccessioned} ||= output_pref({ dt => dt_from_string, dateformat => 'iso', dateonly => 1 });
2132
    $item->{$_} ||= 0 for (qw( notforloan damaged itemlost withdrawn));
2132
    $item->{$_} ||= 0 for (qw( notforloan damaged itemlost withdrawn));
2133
}
2133
}
2134
2134
2135
- 

Return to bug 13813