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 124-135 our $RULE_KINDS = { Link Here
124
    norenewalbefore => {
135
    norenewalbefore => {
125
        scope => [ 'branchcode', 'categorycode', 'itemtype', 'checkout_type' ],
136
        scope => [ 'branchcode', 'categorycode', 'itemtype', 'checkout_type' ],
126
    },
137
    },
127
    onshelfholds => {
128
        scope => [ 'branchcode', 'categorycode', 'itemtype' ],
129
    },
130
    opacitemholds => {
131
        scope => [ 'branchcode', 'categorycode', 'itemtype' ],
132
    },
133
    overduefinescap => {
138
    overduefinescap => {
134
        scope => [ 'branchcode', 'categorycode', 'itemtype', 'checkout_type' ],
139
        scope => [ 'branchcode', 'categorycode', 'itemtype', 'checkout_type' ],
135
    },
140
    },
Lines 142-150 our $RULE_KINDS = { Link Here
142
    rentaldiscount => {
147
    rentaldiscount => {
143
        scope => [ 'branchcode', 'categorycode', 'itemtype', 'checkout_type' ],
148
        scope => [ 'branchcode', 'categorycode', 'itemtype', 'checkout_type' ],
144
    },
149
    },
145
    reservesallowed => {
146
        scope => [ 'branchcode', 'categorycode', 'itemtype' ],
147
    },
148
    suspension_chargeperiod => {
150
    suspension_chargeperiod => {
149
        scope => [ 'branchcode', 'categorycode', 'itemtype', 'checkout_type' ],
151
        scope => [ 'branchcode', 'categorycode', 'itemtype', 'checkout_type' ],
150
    },
152
    },
151
- 

Return to bug 25089