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

(-)a/Koha/CirculationRules.pm (-19 / +20 lines)
Lines 50-58 our $RULE_KINDS = { Link Here
50
        scope => [ 'branchcode' ],
50
        scope => [ 'branchcode' ],
51
    },
51
    },
52
52
53
    patron_maxissueqty => {
54
        scope => [ 'branchcode', 'categorycode', 'checkout_type' ],
55
    },
56
    max_holds => {
53
    max_holds => {
57
        scope => [ 'branchcode', 'categorycode' ],
54
        scope => [ 'branchcode', 'categorycode' ],
58
    },
55
    },
Lines 67-75 our $RULE_KINDS = { Link Here
67
        scope => [ 'branchcode', 'itemtype' ],
64
        scope => [ 'branchcode', 'itemtype' ],
68
    },
65
    },
69
66
67
    patron_maxissueqty => {
68
        scope => [ 'branchcode', 'categorycode', 'checkout_type' ],
69
    },
70
70
    article_requests => {
71
    article_requests => {
71
        scope => [ 'branchcode', 'categorycode', 'itemtype' ],
72
        scope => [ 'branchcode', 'categorycode', 'itemtype' ],
72
    },
73
    },
74
    holds_per_day => {
75
        scope => [ 'branchcode', 'categorycode', 'itemtype' ],
76
    },
77
    holds_per_record => {
78
        scope => [ 'branchcode', 'categorycode', 'itemtype' ],
79
    },
80
    onshelfholds => {
81
        scope => [ 'branchcode', 'categorycode', 'itemtype' ],
82
    },
83
    opacitemholds => {
84
        scope => [ 'branchcode', 'categorycode', 'itemtype' ],
85
    },
86
    reservesallowed => {
87
        scope => [ 'branchcode', 'categorycode', 'itemtype' ],
88
    },
89
73
    auto_renew => {
90
    auto_renew => {
74
        scope => [ 'branchcode', 'categorycode', 'itemtype', 'checkout_type' ],
91
        scope => [ 'branchcode', 'categorycode', 'itemtype', 'checkout_type' ],
75
    },
92
    },
Lines 97-108 our $RULE_KINDS = { Link Here
97
    hardduedatecompare => {
114
    hardduedatecompare => {
98
        scope => [ 'branchcode', 'categorycode', 'itemtype', 'checkout_type' ],
115
        scope => [ 'branchcode', 'categorycode', 'itemtype', 'checkout_type' ],
99
    },
116
    },
100
    holds_per_day => {
101
        scope => [ 'branchcode', 'categorycode', 'itemtype' ],
102
    },
103
    holds_per_record => {
104
        scope => [ 'branchcode', 'categorycode', 'itemtype' ],
105
    },
106
    issuelength => {
117
    issuelength => {
107
        scope => [ 'branchcode', 'categorycode', 'itemtype', 'checkout_type' ],
118
        scope => [ 'branchcode', 'categorycode', 'itemtype', 'checkout_type' ],
108
    },
119
    },
Lines 127-138 our $RULE_KINDS = { Link Here
127
    norenewalbefore => {
138
    norenewalbefore => {
128
        scope => [ 'branchcode', 'categorycode', 'itemtype', 'checkout_type' ],
139
        scope => [ 'branchcode', 'categorycode', 'itemtype', 'checkout_type' ],
129
    },
140
    },
130
    onshelfholds => {
131
        scope => [ 'branchcode', 'categorycode', 'itemtype' ],
132
    },
133
    opacitemholds => {
134
        scope => [ 'branchcode', 'categorycode', 'itemtype' ],
135
    },
136
    overduefinescap => {
141
    overduefinescap => {
137
        scope => [ 'branchcode', 'categorycode', 'itemtype', 'checkout_type' ],
142
        scope => [ 'branchcode', 'categorycode', 'itemtype', 'checkout_type' ],
138
    },
143
    },
Lines 145-153 our $RULE_KINDS = { Link Here
145
    rentaldiscount => {
150
    rentaldiscount => {
146
        scope => [ 'branchcode', 'categorycode', 'itemtype', 'checkout_type' ],
151
        scope => [ 'branchcode', 'categorycode', 'itemtype', 'checkout_type' ],
147
    },
152
    },
148
    reservesallowed => {
149
        scope => [ 'branchcode', 'categorycode', 'itemtype' ],
150
    },
151
    suspension_chargeperiod => {
153
    suspension_chargeperiod => {
152
        scope => [ 'branchcode', 'categorycode', 'itemtype', 'checkout_type' ],
154
        scope => [ 'branchcode', 'categorycode', 'itemtype', 'checkout_type' ],
153
    },
155
    },
154
- 

Return to bug 25089