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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc (+5 lines)
Lines 195-200 Link Here
195
                    </li>
195
                    </li>
196
                [% END %]
196
                [% END %]
197
            [% END %]
197
            [% END %]
198
                [% IF patron.category.category_type == 'I' %]
199
                    <li [% IF ( quotaview ) %]class="active">[% END %]>
200
                        <a href="/cgi-bin/koha/members/circulation_quota.pl?borrowernumber=[% patron.borrowernumber | uri %]">Circulation quota</a>
201
                    </li>
202
                [% END %]
198
            [% IF CAN_user_borrowers_edit_borrowers %]
203
            [% IF CAN_user_borrowers_edit_borrowers %]
199
                [% IF ( IntranetReadingHistoryHolds ) %]
204
                [% IF ( IntranetReadingHistoryHolds ) %]
200
                    <li [% IF holdshistoryview %]class="active"[% END %]>
205
                    <li [% IF holdshistoryview %]class="active"[% END %]>
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/modals/quota.inc (+75 lines)
Line 0 Link Here
1
<!-- Add/Edit quota modal -->
2
<div class="modal" id="quotaModal" tabindex="-1" role="dialog" aria-labelledby="quotaLabel">
3
    <form method="get" id="quotaForm">
4
        <div class="modal-dialog">
5
            <div class="modal-content">
6
                <div class="modal-header">
7
                    <h1 class="modal-title" id="quotaLabel"></h1>
8
                    <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
9
                </div>
10
                <div class="modal-body overflow-visible">
11
                    <div id="quota_result"></div>
12
                    <input type="hidden" name="quota_id" id="quota_id">
13
                    <input type="hidden" name="patron_id" id="patron_id">
14
                    <fieldset class="rows">
15
                        <ol>
16
                            <li>
17
                                <label class="required" for="description">Description: </label>
18
                                <input type="text" id="quota_description" name="description" required="required">
19
                                <span class="required">Required</span>
20
                            </li>
21
                            <li>
22
                                <label for="quota_from" class="required">
23
                                    Start date:
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>
27
                                <div class="hint">[% INCLUDE 'date-format.inc' %]</div>
28
                            </li>
29
                            <li>
30
                                <label for="quota_to" class="required">
31
                                    End date:
32
                                </label>
33
                                <input type="text" id="quota_to" name="end_date" maxlength="10"  size="10" class="flatpickr" />
34
                                <span class="required">Required</span>
35
                                <div class="hint">[% INCLUDE 'date-format.inc' %]</div>
36
                            </li>
37
                            <li>
38
                                <label class="required" for="allocation">Loan allocation: </label>
39
                                <input type="number" min="0" id="quota_allocation" name="allocation" required="required">
40
                                <span class="required">Required</span>
41
                            </li>
42
                        </ol>
43
                    </fieldset> <!-- /.brief -->
44
                </div> <!-- /.modal-body -->
45
                <div class="modal-footer">
46
                    <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>
48
                </div> <!-- /.modal-footer -->
49
            </div> <!-- /.modal-content -->
50
        </div> <!-- /.modal-dialog -->
51
    </form>
52
</div> <!-- /#quotaModal -->
53
54
<!-- Delete Quota modal form -->
55
<div id="deleteQuotaModal" class="modal" tabindex="-1" role="dialog" aria-labelledby="deleteQuotaModalLabel">
56
    <form method="delete" id="deleteForm">
57
        <input type="hidden" name="quota_id" id="quota_id_delete">
58
        <input type="hidden" name="patron_id" id="patron_id_delete">
59
        <div class="modal-dialog" role="document">
60
            <div class="modal-content">
61
                <div class="modal-header">
62
                    <h4 class="modal-title" id="deleteQuotaModalLabel">Delete quota</h4>
63
                    <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
64
                </div>
65
                <div class="modal-body">
66
                    <p>Are you sure you want to delete this quota?</p>
67
                </div>
68
                <div class="modal-footer">
69
                    <button type="submit" id="deleteQuotaModaConfirmBtn" class="btn btn-default approve"><i class="fa fa-check" aria-hidden="true"></i> Yes</button>
70
                    <button type="button" id="deleteQuotaModaCancelBtn" data-bs-dismiss="modal" class="btn btn-default deny"><i class="fa fa-times" aria-hidden="true"></i> No</button>
71
                </div>
72
            </div>
73
        </div>
74
    </form>
75
</div>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/circulation_quota.tt (+145 lines)
Line 0 Link Here
1
[% USE raw %]
2
[% USE Asset %]
3
[% USE KohaDates %]
4
[% USE Koha %]
5
[% USE AuthorisedValues %]
6
[% USE Branches %]
7
[% USE TablesSettings %]
8
[% PROCESS 'i18n.inc' %]
9
[% SET footerjs = 1 %]
10
[% INCLUDE 'doc-head-open.inc' %]
11
<title>[% FILTER collapse %]
12
    [% t("Circulation quota for") | html %] [% INCLUDE 'patron-title.inc' no_html = 1 %]
13
    [% t("Patrons") | html %] &rsaquo;
14
    [% t("Koha") | html %]
15
[% END %]</title>
16
[% INCLUDE 'doc-head-close.inc' %]
17
</head>
18
19
<body id="pat_readingrec" class="pat">
20
[% WRAPPER 'header.inc' %]
21
    [% INCLUDE 'patron-search-header.inc' %]
22
[% END %]
23
24
[% WRAPPER 'sub-header.inc' %]
25
    [% WRAPPER breadcrumbs %]
26
        [% WRAPPER breadcrumb_item %]
27
            <a href="/cgi-bin/koha/members/members-home.pl">Patrons</a>
28
        [% END %]
29
        [% WRAPPER breadcrumb_item %]
30
            <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% patron.borrowernumber | uri %]">[% INCLUDE 'patron-title.inc' %]</a>
31
        [% END %]
32
        [% WRAPPER breadcrumb_item bc_active= 1 %]
33
            <span>Circulation quotas</span>
34
        [% END %]
35
    [% END #/ WRAPPER breadcrumbs %]
36
[% END #/ WRAPPER sub-header.inc %]
37
38
<div class="main container-fluid">
39
    <div class="row">
40
        <div class="col-md-10 order-md-2 order-sm-1">
41
            <main>
42
                [% INCLUDE 'messages.inc' %]
43
                [% INCLUDE 'members-toolbar.inc' %]
44
                <h1>Circulation quota for [% INCLUDE 'patron-title.inc' %]</h1>
45
                [% IF patron.guarantor_relationships.count > 0 %]
46
                <div class="page-section">
47
                    <h2>Guarantors quota</h2>
48
                    <table id="guarantors_quota"></table>
49
                </div>
50
                [% END %]
51
                <div class="page-section">
52
                    <h2>Organization quota</h2>
53
54
                    <div id="quota-toobar" class="btn-toolbar">
55
                        <button class="btn btn-default" data-bs-toggle="modal" data-bs-target="#quotaModal" data-patron="[% patron.borrowernumber | html %]"><i class="fa fa-plus" aria-hidden="true"></i> Add a new quota</button>
56
                    </div>
57
58
                    <table id="patrons_quota"></table>
59
                </div>
60
            </main>
61
        </div> <!-- /.col-md-10.order-md-2.order-sm-1 -->
62
63
        <div class="col-md-2 order-sm-2 order-md-1">
64
            <aside>
65
                [% INCLUDE 'circ-menu.inc' %]
66
            </aside>
67
        </div> <!-- /.col-md-2.order-sm-2.order-md-1 -->
68
    </div> <!-- /.row -->
69
70
    [% INCLUDE 'modals/quota.inc' %]
71
72
[% MACRO jsinclude BLOCK %]
73
    [% INCLUDE 'str/members-menu.inc' %]
74
    [% Asset.js("js/members-menu.js") | $raw %]
75
    [% INCLUDE 'calendar.inc' %]
76
    [% INCLUDE 'datatables.inc' %]
77
    [% INCLUDE 'js-date-format.inc' %]
78
    [% INCLUDE 'js-patron-format.inc' %]
79
    [% Asset.js("js/modals/quota.js") | $raw %]]
80
    <script>
81
        var quota_url= "/api/v1/patrons/%s/quotas".format(borrowernumber);
82
        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
            {
99
                "data": "start_date",
100
                "title": _("Start date"),
101
                "searchable": true,
102
                "orderable": true,
103
                "render": function(data, type, row, meta) {
104
                    return $date(row.start_date);
105
                }
106
            },
107
            {
108
                "data": "end_date",
109
                "title": _("End date"),
110
                "searchable": true,
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>
143
[% END %]
144
145
[% INCLUDE 'intranet-bottom.inc' %]
(-)a/koha-tmpl/intranet-tmpl/prog/js/modals/quota.js (+168 lines)
Line 0 Link Here
1
(() => {
2
    document
3
        .getElementById("quotaModal")
4
        ?.addEventListener("show.bs.modal", handleShowQuotaModal);
5
    document
6
        .getElementById("quotaForm")
7
        ?.addEventListener("submit", handleQuotaSubmit);
8
    document
9
        .getElementById("deleteQuotaModal")
10
        ?.addEventListener("show.bs.modal", handleShowDeleteModal);
11
    document
12
        .getElementById("deleteForm")
13
        ?.addEventListener("submit", handleDeleteSubmit);
14
15
    async function handleQuotaSubmit(e) {
16
        e.preventDefault();
17
18
        const target = e.target;
19
        if (!(target instanceof HTMLFormElement)) {
20
            return;
21
        }
22
23
        const formData = new FormData(target);
24
        const quotaId = formData.get("quota_id");
25
        const patronId = formData.get("patron_id");
26
        const description = formData.get("description");
27
        const startDate = formData.get("start_date");
28
        const endDate = formData.get("end_date");
29
        const allocation = formData.get("allocation");
30
31
        const quotaUrl = quotaId ? `/api/v1/patrons/${patronId}/quotas/${quotaId}` : `/api/v1/patrons/${patronId}/quotas`;
32
        let [error, response] = await catchError(
33
            fetch(quotaUrl, {
34
                method: quotaId ? "PUT" : "POST",
35
                body: JSON.stringify({
36
                    patron_id: patronId,
37
                    description: description,
38
                    start_date: startDate,
39
                    end_date: endDate,
40
                    allocation: allocation
41
                }),
42
                headers: {
43
                    "Content-Type": "application/json",
44
                },
45
            })
46
        );
47
        if (error || !response.ok) {
48
            const alertContainer = document.getElementById(
49
                "quota_result"
50
            );
51
            alertContainer.outerHTML = `
52
                <div id="quota_result" class="alert alert-danger">
53
                    ${__("Failure")}
54
                </div>
55
            `;
56
57
            return;
58
        }
59
60
        quota_success = true;
61
        quota_table?.api().ajax.reload();
62
63
        $("#quotaModal").modal("hide");
64
        return;
65
    }
66
67
    function handleShowQuotaModal(e) {
68
        const button = e.relatedTarget;
69
        if (!button) {
70
            return;
71
        }
72
73
        const quotaModalLabel = document.getElementById("quotaLabel");
74
        const quotaModalSubmit = document.getElementById("quotaFormSubmit");
75
76
        const quotaIdInput = document.getElementById("quota_id");
77
        const quotaPatronInput = document.getElementById("patron_id");
78
        const quotaDescriptionInput = document.getElementById("quota_description");
79
        const quotaStartDateInput = document.getElementById("quota_from");
80
        const quotaEndDateInput = document.getElementById("quota_to");
81
        const quotaAllocationInput = document.getElementById("quota_allocation");
82
83
        const quota = button.dataset.quota;
84
        if (quota) {
85
            quotaIdInput.value = quota;
86
            quotaModalLabel.textContent = _("Edit quota");
87
            quotaModalSubmit.innerHTML = "<i class=\"fa fa-check\"></i> " + _("Update");
88
            quotaDescriptionInput.value = button.dataset.description;
89
            quotaStartDateInput._flatpickr.setDate(button.dataset.start_date, 1);
90
            quotaEndDateInput._flatpickr.setDate(button.dataset.end_date, 1);
91
            quotaAllocationInput.value = button.dataset.allocation;
92
        } else {
93
            quotaIdInput.value = null;
94
            quotaModalLabel.textContent = _("Add quota");
95
            quotaModalSubmit.innerHTML = "<i class=\"fa fa-fw fa-plus\"></i> " + _("Add");
96
            quotaDescriptionInput.value = null;
97
            quotaStartDateInput.value = null;
98
            quotaEndDateInput.value = null;
99
            quotaAllocationInput.value = null;
100
        }
101
102
        const patron = button.dataset.patron;
103
        quotaPatronInput.value = patron;
104
105
        return;
106
    }
107
108
    async function handleDeleteSubmit(e) {
109
        e.preventDefault();
110
111
        const target = e.target;
112
        if (!(target instanceof HTMLFormElement)) {
113
            return;
114
        }
115
116
        const formData = new FormData(target);
117
        const quotaId = formData.get("quota_id");
118
        const patronId = formData.get("patron_id");
119
120
        const quotaUrl = `/api/v1/patrons/${patronId}/quotas/${quotaId}`;
121
        let [error, response] = await catchError(
122
            fetch(quotaUrl, {
123
                method: "DELETE",
124
                headers: {
125
                    "Content-Type": "application/json",
126
                },
127
            })
128
        );
129
        if (error || !response.ok) {
130
            const alertContainer = document.getElementById(
131
                "quota_result"
132
            );
133
            alertContainer.outerHTML = `
134
                <div id="quota_result" class="alert alert-danger">
135
                    ${__("Failure")}
136
                </div>
137
            `;
138
139
            return;
140
        }
141
142
        quota_table?.api().ajax.reload();
143
144
        $("#deleteQuotaModal").modal("hide");
145
        return;
146
    }
147
148
    function handleShowDeleteModal(e) {
149
        const button = e.relatedTarget;
150
        if (!button) {
151
            return;
152
        }
153
154
        const quotaIdInput = document.getElementById("quota_id_delete");
155
        const quotaPatronInput = document.getElementById("patron_id_delete");
156
157
        const quota = button.dataset.quota;
158
        quotaIdInput.value = quota;
159
        const patron = button.dataset.patron;
160
        quotaPatronInput.value = patron;
161
162
        return;
163
    }
164
165
    function catchError(promise) {
166
        return promise.then(data => [undefined, data]).catch(error => [error]);
167
    }
168
})();
(-)a/members/circulation_quota.pl (-1 / +62 lines)
Line 0 Link Here
0
- 
1
#!/usr/bin/perl
2
3
# Copyright 2025 PTFS Europe
4
#
5
# This file is part of Koha.
6
#
7
# Koha is free software; you can redistribute it and/or modify it
8
# under the terms of the GNU General Public License as published by
9
# the Free Software Foundation; either version 3 of the License, or
10
# (at your option) any later version.
11
#
12
# Koha is distributed in the hope that it will be useful, but
13
# WITHOUT ANY WARRANTY; without even the implied warranty of
14
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
# GNU General Public License for more details.
16
#
17
# You should have received a copy of the GNU General Public License
18
# along with Koha; if not, see <http://www.gnu.org/licenses>.
19
20
use Modern::Perl;
21
22
use CGI qw ( -utf8 );
23
24
use C4::Auth        qw( get_template_and_user );
25
use C4::Output      qw( output_and_exit_if_error output_and_exit output_html_with_http_headers );
26
use List::MoreUtils qw( any uniq );
27
use Koha::DateUtils qw( dt_from_string );
28
use Koha::ActionLogs;
29
30
use Koha::Patrons;
31
use Koha::Patron::Categories;
32
33
my $input = CGI->new;
34
35
my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
36
    {
37
        template_name => "members/circulation_quota.tt",
38
        query         => $input,
39
        type          => "intranet",
40
        flagsrequired => { borrowers => 'edit_borrowers' },
41
    }
42
);
43
44
my $op = $input->param('op') || '';
45
my $patron;
46
if ( $input->param('borrowernumber') ) {
47
    my $borrowernumber = $input->param('borrowernumber');
48
    $patron = Koha::Patrons->find($borrowernumber);
49
}
50
51
my $logged_in_user = Koha::Patrons->find($loggedinuser);
52
output_and_exit_if_error(
53
    $input, $cookie, $template,
54
    { module => 'members', logged_in_user => $logged_in_user, current_patron => $patron }
55
);
56
57
$template->param(
58
    patron    => $patron,
59
    quotaview => 1
60
);
61
output_html_with_http_headers $input, $cookie, $template->output;
62

Return to bug 38924