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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/modals/quota.inc (-20 / +40 lines)
Lines 9-61 Link Here
9
                </div>
9
                </div>
10
                <div class="modal-body overflow-visible">
10
                <div class="modal-body overflow-visible">
11
                    <div id="quota_result"></div>
11
                    <div id="quota_result"></div>
12
                    <input type="hidden" name="quota_id" id="quota_id">
12
                    <input type="hidden" name="quota_id" id="quota_id" />
13
                    <input type="hidden" name="patron_id" id="patron_id">
13
                    <input type="hidden" name="patron_id" id="patron_id" />
14
                    <fieldset class="rows">
14
                    <fieldset class="rows">
15
                        <ol>
15
                        <ol>
16
                            <li>
16
                            <li>
17
                                <label class="required" for="description">Description: </label>
17
                                <label class="required" for="description">Description: </label>
18
                                <input type="text" id="quota_description" name="description" required="required">
18
                                <input type="text" id="quota_description" name="description" required="required" />
19
                                <span class="required">Required</span>
19
                                <span class="required">Required</span>
20
                            </li>
20
                            </li>
21
                            <li>
21
                            <li>
22
                                <label for="quota_from" class="required">
22
                                <label for="quota_from" class="required"> Start date: </label>
23
                                    Start date:
23
                                <input type="text" id="quota_from" name="start_date" maxlength="10" size="10" class="flatpickr" data-date_to="quota_to" />
24
                                </label>
25
                                <input type="text" id="quota_from" name="start_date"  maxlength="10" size="10" class="flatpickr" data-date_to="quota_to" />
26
                                <span class="required">Required</span>
24
                                <span class="required">Required</span>
27
                                <div class="hint">[% INCLUDE 'date-format.inc' %]</div>
25
                                <div class="hint">[% INCLUDE 'date-format.inc' %]</div>
28
                            </li>
26
                            </li>
29
                            <li>
27
                            <li>
30
                                <label for="quota_to" class="required">
28
                                <label for="quota_to" class="required"> End date: </label>
31
                                    End date:
29
                                <input type="text" id="quota_to" name="end_date" maxlength="10" size="10" class="flatpickr" />
32
                                </label>
33
                                <input type="text" id="quota_to" name="end_date" maxlength="10"  size="10" class="flatpickr" />
34
                                <span class="required">Required</span>
30
                                <span class="required">Required</span>
35
                                <div class="hint">[% INCLUDE 'date-format.inc' %]</div>
31
                                <div class="hint">[% INCLUDE 'date-format.inc' %]</div>
36
                            </li>
32
                            </li>
37
                            <li>
33
                            <li>
38
                                <label class="required" for="allocation">Loan allocation: </label>
34
                                <label class="required" for="allocation">Loan allocation: </label>
39
                                <input type="number" min="0" id="quota_allocation" name="allocation" required="required">
35
                                <input type="text" inputmode="numeric" pattern="[0-9]{1,4}" id="quota_allocation" name="allocation" title="a number between 0 and 9999 (inclusive)" required="required" />
40
                                <span class="required">Required</span>
36
                                <span class="required">Required</span>
41
                            </li>
37
                            </li>
42
                        </ol>
38
                        </ol>
43
                    </fieldset> <!-- /.brief -->
39
                    </fieldset>
44
                </div> <!-- /.modal-body -->
40
                    <!-- /.brief -->
41
                </div>
42
                <!-- /.modal-body -->
45
                <div class="modal-footer">
43
                <div class="modal-footer">
46
                    <button type="submit" class="btn btn-primary approve" id="quotaFormSubmit"></button>
44
                    <button type="submit" class="btn btn-primary approve" id="quotaFormSubmit"></button>
47
                    <button type="button" class="btn btn-default deny cancel" data-bs-dismiss="modal"><i class="fa fa-times"></i> Cancel</button>
45
                    <button type="button" class="btn btn-default deny cancel" data-bs-dismiss="modal"><i class="fa fa-times"></i> Cancel</button>
48
                </div> <!-- /.modal-footer -->
46
                </div>
49
            </div> <!-- /.modal-content -->
47
                <!-- /.modal-footer -->
50
        </div> <!-- /.modal-dialog -->
48
            </div>
49
            <!-- /.modal-content -->
50
        </div>
51
        <!-- /.modal-dialog -->
51
    </form>
52
    </form>
52
</div> <!-- /#quotaModal -->
53
</div>
54
<!-- /#quotaModal -->
53
55
54
<!-- Delete Quota modal form -->
56
<!-- Delete Quota modal form -->
55
<div id="deleteQuotaModal" class="modal" tabindex="-1" role="dialog" aria-labelledby="deleteQuotaModalLabel">
57
<div id="deleteQuotaModal" class="modal" tabindex="-1" role="dialog" aria-labelledby="deleteQuotaModalLabel">
56
    <form method="delete" id="deleteForm">
58
    <form method="delete" id="deleteForm">
57
        <input type="hidden" name="quota_id" id="quota_id_delete">
59
        <input type="hidden" name="quota_id" id="quota_id_delete" />
58
        <input type="hidden" name="patron_id" id="patron_id_delete">
60
        <input type="hidden" name="patron_id" id="patron_id_delete" />
59
        <div class="modal-dialog" role="document">
61
        <div class="modal-dialog" role="document">
60
            <div class="modal-content">
62
            <div class="modal-content">
61
                <div class="modal-header">
63
                <div class="modal-header">
Lines 73-75 Link Here
73
        </div>
75
        </div>
74
    </form>
76
    </form>
75
</div>
77
</div>
78
79
<!-- Quota usage modal -->
80
<div id="quotaUsageModal" class="modal" tabindex="-1" role="dialog" aria-labelledby="quotaUsageModalLabel">
81
    <div class="modal-dialog" role="document">
82
        <div class="modal-content">
83
            <div class="modal-header">
84
                <h4 class="modal-title" id="quotaUsageModalLabel">Quota usage details</h4>
85
                <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
86
            </div>
87
            <div class="modal-body">
88
                <table id="usage_detail"></table>
89
            </div>
90
            <div class="modal-footer">
91
                <button type="button" id="quotaUsageModalCloseBtn" data-bs-dismiss="modal" class="btn btn-default deny"><i class="fa fa-times" aria-hidden="true"></i> Close</button>
92
            </div>
93
        </div>
94
    </div>
95
</div>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/circulation_quota.tt (-77 / +105 lines)
Lines 8-18 Link Here
8
[% PROCESS 'i18n.inc' %]
8
[% PROCESS 'i18n.inc' %]
9
[% SET footerjs = 1 %]
9
[% SET footerjs = 1 %]
10
[% INCLUDE 'doc-head-open.inc' %]
10
[% INCLUDE 'doc-head-open.inc' %]
11
<title>[% FILTER collapse %]
11
<title
12
    [% t("Circulation quota for") | html %] [% INCLUDE 'patron-title.inc' no_html = 1 %]
12
    >[% FILTER collapse %]
13
    [% t("Patrons") | html %] &rsaquo;
13
        [% t("Circulation quota for") | html %]
14
    [% t("Koha") | html %]
14
        [% INCLUDE 'patron-title.inc' no_html = 1 %]
15
[% END %]</title>
15
        [% t("Patrons") | html %]
16
        &rsaquo; [% t("Koha") | html %]
17
    [% END %]</title
18
>
16
[% INCLUDE 'doc-head-close.inc' %]
19
[% INCLUDE 'doc-head-close.inc' %]
17
</head>
20
</head>
18
21
Lines 43-52 Link Here
43
                [% INCLUDE 'members-toolbar.inc' %]
46
                [% INCLUDE 'members-toolbar.inc' %]
44
                <h1>Circulation quota for [% INCLUDE 'patron-title.inc' %]</h1>
47
                <h1>Circulation quota for [% INCLUDE 'patron-title.inc' %]</h1>
45
                [% IF patron.guarantor_relationships.count > 0 %]
48
                [% IF patron.guarantor_relationships.count > 0 %]
46
                <div class="page-section">
49
                    <div class="page-section">
47
                    <h2>Guarantors quota</h2>
50
                        <h2>Guarantors quota</h2>
48
                    <table id="guarantors_quota"></table>
51
                        <table id="guarantors_quota"></table>
49
                </div>
52
                    </div>
50
                [% END %]
53
                [% END %]
51
                <div class="page-section">
54
                <div class="page-section">
52
                    <h2>Organization quota</h2>
55
                    <h2>Organization quota</h2>
Lines 58-73 Link Here
58
                    <table id="patrons_quota"></table>
61
                    <table id="patrons_quota"></table>
59
                </div>
62
                </div>
60
            </main>
63
            </main>
61
        </div> <!-- /.col-md-10.order-md-2.order-sm-1 -->
64
        </div>
65
        <!-- /.col-md-10.order-md-2.order-sm-1 -->
62
66
63
        <div class="col-md-2 order-sm-2 order-md-1">
67
        <div class="col-md-2 order-sm-2 order-md-1">
64
            <aside>
68
            <aside> [% INCLUDE 'circ-menu.inc' %] </aside>
65
                [% INCLUDE 'circ-menu.inc' %]
69
        </div>
66
            </aside>
70
        <!-- /.col-md-2.order-sm-2.order-md-1 -->
67
        </div> <!-- /.col-md-2.order-sm-2.order-md-1 -->
71
    </div>
68
    </div> <!-- /.row -->
72
    <!-- /.row -->
69
73
</div>
70
    [% INCLUDE 'modals/quota.inc' %]
74
[% INCLUDE 'modals/quota.inc' %]
71
75
72
[% MACRO jsinclude BLOCK %]
76
[% MACRO jsinclude BLOCK %]
73
    [% INCLUDE 'str/members-menu.inc' %]
77
    [% INCLUDE 'str/members-menu.inc' %]
Lines 76-145 Link Here
76
    [% INCLUDE 'datatables.inc' %]
80
    [% INCLUDE 'datatables.inc' %]
77
    [% INCLUDE 'js-date-format.inc' %]
81
    [% INCLUDE 'js-date-format.inc' %]
78
    [% INCLUDE 'js-patron-format.inc' %]
82
    [% INCLUDE 'js-patron-format.inc' %]
83
    [% INCLUDE 'js-biblio-format.inc' %]
79
    [% Asset.js("js/modals/quota.js") | $raw %]]
84
    [% Asset.js("js/modals/quota.js") | $raw %]]
80
    <script>
85
    <script>
81
        var quota_url= "/api/v1/patrons/%s/quotas".format(borrowernumber);
86
        var quota_url = "/api/v1/patrons/%s/quotas".format(borrowernumber);
82
        let quota_table = $('#patrons_quota').kohaTable({
87
        let quota_table = $("#patrons_quota").kohaTable(
83
            "ajax": {
84
                "url": quota_url
85
            },
86
            "embed": [
87
            ],
88
            "columns": [{
89
                "data": "id",
90
                "title": _("Quota ID"),
91
                "visible": false
92
            },
93
            {
94
                "data": "description",
95
                "title": _("Description"),
96
                "visible": true,
97
            },
98
            {
88
            {
99
                "data": "start_date",
89
                ajax: {
100
                "title": _("Start date"),
90
                    url: quota_url,
101
                "searchable": true,
91
                },
102
                "orderable": true,
92
                embed: [],
103
                "render": function(data, type, row, meta) {
93
                columns: [
104
                    return $date(row.start_date);
94
                    {
105
                }
95
                        data: "id",
96
                        title: _("Quota ID"),
97
                        visible: false,
98
                    },
99
                    {
100
                        data: "description",
101
                        title: _("Description"),
102
                        visible: true,
103
                    },
104
                    {
105
                        data: "start_date",
106
                        title: _("Start date"),
107
                        searchable: true,
108
                        orderable: true,
109
                        render: function (data, type, row, meta) {
110
                            return $date(row.start_date);
111
                        },
112
                    },
113
                    {
114
                        data: "end_date",
115
                        title: _("End date"),
116
                        searchable: true,
117
                        orderable: true,
118
                        render: function (data, type, row, meta) {
119
                            return $date(row.end_date);
120
                        },
121
                    },
122
                    {
123
                        data: "allocation:used",
124
                        title: _("Allocation (Used:Total)"),
125
                        searchable: true,
126
                        orderable: true,
127
                        render: function (data, type, row, meta) {
128
                            let render = '<div class="d-flex">';
129
                            render += '<div class="p-2 flex-grow-1">';
130
                            render += used + " : " + row.allocation;
131
                            render += '</div><div class="p-2">';
132
                            render += '<span class="text-end">(<a href="#" data-bs-toggle="modal" data-bs-target="#quotaUsageModal" data-quota="%s" data-patron="%s">%s</a>)</span>'.format(row.id, row.patron_id, _("details"));
133
                            render += "</div></div>";
134
                            return render;
135
                        },
136
                    },
137
                    {
138
                        data: "",
139
                        title: _("Actions"),
140
                        class: "actions",
141
                        searchable: false,
142
                        orderable: false,
143
                        render: function (data, type, row, meta) {
144
                            let result =
145
                                '<button type="button" class="btn btn-default btn-xs edit-action" data-bs-toggle="modal" data-bs-target="#quotaModal" data-quota="%s" data-patron="%s" data-description="%s" data-start_date="%s" data-end_date="%s" data-allocation="%s"><i class="fa fa-pencil" aria-hidden="true"></i> %s</button>'.format(
146
                                    row.id,
147
                                    row.patron_id,
148
                                    row.description,
149
                                    row.start_date,
150
                                    row.end_date,
151
                                    row.allocation,
152
                                    _("Edit")
153
                                );
154
                            if (row.used === 0) {
155
                                result +=
156
                                    '<button type="button" class="btn btn-default btn-xs delete-action" data-bs-toggle="modal" data-bs-target="#deleteQuotaModal" data-quota="%s" data-patron="%s"><i class="fa fa-trash-can" aria-hidden="true"></i> %s</button>'.format(
157
                                        row.id,
158
                                        row.patron_id,
159
                                        _("Delete")
160
                                    );
161
                            }
162
                            return result;
163
                        },
164
                    },
165
                ],
106
            },
166
            },
107
            {
167
            undefined,
108
                "data": "end_date",
168
            0,
109
                "title": _("End date"),
169
            undefined
110
                "searchable": true,
170
        );
111
                "orderable": true,
112
                "render": function(data, type, row, meta) {
113
                    return $date(row.end_date);
114
                }
115
            },
116
            {
117
                "data": "allocation:used",
118
                "title": _("Allocation (Used:Total)"),
119
                "searchable": true,
120
                "orderable": true,
121
                "render": function(data, type, row, meta) {
122
                    let used = row.used > row.allocation ? "<span class='text-danger'>" + row.used + "</span>" : "<span class='text-success'>" + row.used + "</span>";
123
                    return used + " : " + row.allocation;
124
                }
125
            },
126
            {
127
                "data": "",
128
                "title": _("Actions"),
129
                "class": "actions",
130
                "searchable": false,
131
                "orderable": false,
132
                "render": function(data, type, row, meta) {
133
                    let result = '<button type="button" class="btn btn-default btn-xs edit-action" data-bs-toggle="modal" data-bs-target="#quotaModal" data-quota="%s" data-patron="%s" data-description="%s" data-start_date="%s" data-end_date="%s" data-allocation="%s"><i class="fa fa-pencil" aria-hidden="true"></i> %s</button>'.format(row.id, row.patron_id, row.description, row.start_date, row.end_date, row.allocation, _("Edit"));
134
                    if ( row.used === 0 ) {
135
                        result += '<button type="button" class="btn btn-default btn-xs delete-action" data-bs-toggle="modal" data-bs-target="#deleteQuotaModal" data-quota="%s" data-patron="%s"><i class="fa fa-trash-can" aria-hidden="true"></i> %s</button>'.format(row.id, row.patron_id, _("Delete"));
136
                    }
137
                    return result;
138
                }
139
            }]
140
        }, undefined, 0, undefined);
141
142
    </script>
171
    </script>
143
[% END %]
172
[% END %]
144
145
[% INCLUDE 'intranet-bottom.inc' %]
173
[% INCLUDE 'intranet-bottom.inc' %]
(-)a/koha-tmpl/intranet-tmpl/prog/js/modals/quota.js (-16 / +97 lines)
Lines 11-16 Link Here
11
    document
11
    document
12
        .getElementById("deleteForm")
12
        .getElementById("deleteForm")
13
        ?.addEventListener("submit", handleDeleteSubmit);
13
        ?.addEventListener("submit", handleDeleteSubmit);
14
    document
15
        .getElementById("quotaUsageModal")
16
        ?.addEventListener("show.bs.modal", handleShowQuotaUsageModal);
14
17
15
    async function handleQuotaSubmit(e) {
18
    async function handleQuotaSubmit(e) {
16
        e.preventDefault();
19
        e.preventDefault();
Lines 28-34 Link Here
28
        const endDate = formData.get("end_date");
31
        const endDate = formData.get("end_date");
29
        const allocation = formData.get("allocation");
32
        const allocation = formData.get("allocation");
30
33
31
        const quotaUrl = quotaId ? `/api/v1/patrons/${patronId}/quotas/${quotaId}` : `/api/v1/patrons/${patronId}/quotas`;
34
        const quotaUrl = quotaId
35
            ? `/api/v1/patrons/${patronId}/quotas/${quotaId}`
36
            : `/api/v1/patrons/${patronId}/quotas`;
32
        let [error, response] = await catchError(
37
        let [error, response] = await catchError(
33
            fetch(quotaUrl, {
38
            fetch(quotaUrl, {
34
                method: quotaId ? "PUT" : "POST",
39
                method: quotaId ? "PUT" : "POST",
Lines 37-43 Link Here
37
                    description: description,
42
                    description: description,
38
                    start_date: startDate,
43
                    start_date: startDate,
39
                    end_date: endDate,
44
                    end_date: endDate,
40
                    allocation: allocation
45
                    allocation: allocation,
41
                }),
46
                }),
42
                headers: {
47
                headers: {
43
                    "Content-Type": "application/json",
48
                    "Content-Type": "application/json",
Lines 45-53 Link Here
45
            })
50
            })
46
        );
51
        );
47
        if (error || !response.ok) {
52
        if (error || !response.ok) {
48
            const alertContainer = document.getElementById(
53
            const alertContainer = document.getElementById("quota_result");
49
                "quota_result"
50
            );
51
            alertContainer.outerHTML = `
54
            alertContainer.outerHTML = `
52
                <div id="quota_result" class="alert alert-danger">
55
                <div id="quota_result" class="alert alert-danger">
53
                    ${__("Failure")}
56
                    ${__("Failure")}
Lines 75-98 Link Here
75
78
76
        const quotaIdInput = document.getElementById("quota_id");
79
        const quotaIdInput = document.getElementById("quota_id");
77
        const quotaPatronInput = document.getElementById("patron_id");
80
        const quotaPatronInput = document.getElementById("patron_id");
78
        const quotaDescriptionInput = document.getElementById("quota_description");
81
        const quotaDescriptionInput =
82
            document.getElementById("quota_description");
79
        const quotaStartDateInput = document.getElementById("quota_from");
83
        const quotaStartDateInput = document.getElementById("quota_from");
80
        const quotaEndDateInput = document.getElementById("quota_to");
84
        const quotaEndDateInput = document.getElementById("quota_to");
81
        const quotaAllocationInput = document.getElementById("quota_allocation");
85
        const quotaAllocationInput =
86
            document.getElementById("quota_allocation");
82
87
83
        const quota = button.dataset.quota;
88
        const quota = button.dataset.quota;
84
        if (quota) {
89
        if (quota) {
85
            quotaIdInput.value = quota;
90
            quotaIdInput.value = quota;
86
            quotaModalLabel.textContent = _("Edit quota");
91
            quotaModalLabel.textContent = __("Edit quota");
87
            quotaModalSubmit.innerHTML = "<i class=\"fa fa-check\"></i> " + _("Update");
92
            quotaModalSubmit.innerHTML =
93
                '<i class="fa fa-check"></i> ' + __("Update");
88
            quotaDescriptionInput.value = button.dataset.description;
94
            quotaDescriptionInput.value = button.dataset.description;
89
            quotaStartDateInput._flatpickr.setDate(button.dataset.start_date, 1);
95
            quotaStartDateInput._flatpickr.setDate(
96
                button.dataset.start_date,
97
                1
98
            );
90
            quotaEndDateInput._flatpickr.setDate(button.dataset.end_date, 1);
99
            quotaEndDateInput._flatpickr.setDate(button.dataset.end_date, 1);
91
            quotaAllocationInput.value = button.dataset.allocation;
100
            quotaAllocationInput.value = button.dataset.allocation;
92
        } else {
101
        } else {
93
            quotaIdInput.value = null;
102
            quotaIdInput.value = null;
94
            quotaModalLabel.textContent = _("Add quota");
103
            quotaModalLabel.textContent = __("Add quota");
95
            quotaModalSubmit.innerHTML = "<i class=\"fa fa-fw fa-plus\"></i> " + _("Add");
104
            quotaModalSubmit.innerHTML =
105
                '<i class="fa fa-fw fa-plus"></i> ' + __("Add");
96
            quotaDescriptionInput.value = null;
106
            quotaDescriptionInput.value = null;
97
            quotaStartDateInput.value = null;
107
            quotaStartDateInput.value = null;
98
            quotaEndDateInput.value = null;
108
            quotaEndDateInput.value = null;
Lines 127-135 Link Here
127
            })
137
            })
128
        );
138
        );
129
        if (error || !response.ok) {
139
        if (error || !response.ok) {
130
            const alertContainer = document.getElementById(
140
            const alertContainer = document.getElementById("quota_result");
131
                "quota_result"
132
            );
133
            alertContainer.outerHTML = `
141
            alertContainer.outerHTML = `
134
                <div id="quota_result" class="alert alert-danger">
142
                <div id="quota_result" class="alert alert-danger">
135
                    ${__("Failure")}
143
                    ${__("Failure")}
Lines 162-167 Link Here
162
        return;
170
        return;
163
    }
171
    }
164
172
173
    function handleShowQuotaUsageModal(e) {
174
        const button = e.relatedTarget;
175
        if (!button) {
176
            return;
177
        }
178
179
        const quota = button.dataset.quota;
180
        const patron = button.dataset.patron;
181
182
        // Destroy any existing DataTable instance to prevent duplication
183
        if ($.fn.DataTable.isDataTable("#usage_detail")) {
184
            $("#usage_detail").DataTable().destroy();
185
        }
186
187
        // Initialize DataTable
188
        let usage_url = "/api/v1/patrons/%s/quotas/%s/usages".format(
189
            patron,
190
            quota
191
        );
192
        $("#usage_detail").kohaTable({
193
            ajax: {
194
                url: usage_url,
195
            },
196
            embed: ["patron", "checkout.item.biblio"],
197
            columns: [
198
                {
199
                    title: __("Date"),
200
                    data: "creation_date",
201
                    searchable: true,
202
                    orderable: true,
203
                    render: function (data, type, row, meta) {
204
                        return $date(row.creation_date);
205
                    },
206
                },
207
                {
208
                    title: __("Patron"),
209
                    data: "patron",
210
                    render: function (data, type, row, meta) {
211
                        return $patron_to_html(row.patron, {
212
                            display_cardnumber: false,
213
                            url: true,
214
                        });
215
                    },
216
                },
217
                {
218
                    title: __("Item"),
219
                    data: "checkout.item.biblio.title",
220
                    render: function (data, type, row, meta) {
221
                        if (row.checkout) {
222
                            return $biblio_to_html(row.checkout.item.biblio, {
223
                                link: 1,
224
                            });
225
                        } else {
226
                            return __("Circulation history removed");
227
                        }
228
                    },
229
                },
230
                {
231
                    title: __("Usage Type"),
232
                    data: "type",
233
                    searchable: true,
234
                    orderable: true,
235
                    render: function (data, type, row, meta) {
236
                        return row.type;
237
                    },
238
                },
239
            ],
240
            paging: true,
241
            searching: true,
242
            lengthChange: false,
243
        });
244
        return;
245
    }
246
165
    function catchError(promise) {
247
    function catchError(promise) {
166
        return promise.then(data => [undefined, data]).catch(error => [error]);
248
        return promise.then(data => [undefined, data]).catch(error => [error]);
167
    }
249
    }
168
- 

Return to bug 38924