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

(-)a/C4/Stats.pm (-2 / +1 lines)
Lines 85-91 sub UpdateStats { Link Here
85
    return () if ! defined $params;
85
    return () if ! defined $params;
86
# change these arrays if new types of transaction or new parameters are allowed
86
# change these arrays if new types of transaction or new parameters are allowed
87
    my @allowed_keys = qw (type branch amount other itemnumber itemtype borrowernumber ccode location categorycode interface);
87
    my @allowed_keys = qw (type branch amount other itemnumber itemtype borrowernumber ccode location categorycode interface);
88
    my @allowed_circulation_types = qw (renew issue localuse return onsite_checkout recall);
88
    my @allowed_circulation_types = qw (renew issue localuse return onsite_checkout recall item_found item_lost);
89
    my @allowed_accounts_types = qw (writeoff payment);
89
    my @allowed_accounts_types = qw (writeoff payment);
90
    my @circulation_mandatory_keys = qw (type branch borrowernumber itemnumber ccode itemtype);
90
    my @circulation_mandatory_keys = qw (type branch borrowernumber itemnumber ccode itemtype);
91
    my @accounts_mandatory_keys = qw (type branch borrowernumber amount);
91
    my @accounts_mandatory_keys = qw (type branch borrowernumber amount);
92
- 

Return to bug 33608