Bug 23355: Add register details page
This patch adds a new page which can be accessed via the menu to the left of the point of sale page. This new page displays a list of transactions since the last 'cashup' action, a summary of transaction amounts and a button to allow the recording of a new 'cashup action. Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
This commit is contained in:
parent
16b3a16374
commit
fcb545b4ae
4 changed files with 270 additions and 1 deletions
|
@ -1,5 +1,11 @@
|
|||
<div id="navmenu">
|
||||
<div id="navmenulist">
|
||||
[% IF ( CAN_user_cash_management_cashup_cash_registers ) %]
|
||||
<h5>Point of sale</h5>
|
||||
<ul>
|
||||
<li><a href="/cgi-bin/koha/pos/register.pl">Register details</a></li>
|
||||
</ul>
|
||||
[% END %]
|
||||
[% IF ( CAN_user_parameters_manage_cash_registers || CAN_user_parameters_manage_accounts) %]
|
||||
<h5>Administration</h5>
|
||||
<ul>
|
||||
|
|
|
@ -173,7 +173,6 @@
|
|||
[% END %]
|
||||
|
||||
[% MACRO jsinclude BLOCK %]
|
||||
[% Asset.js("js/admin-menu.js") | $raw %]
|
||||
[% INCLUDE 'format_price.inc' %]
|
||||
[% INCLUDE 'datatables.inc' %]
|
||||
[% Asset.js("lib/jquery/plugins/jquery.jeditable.mini.js") | $raw %]
|
||||
|
|
180
koha-tmpl/intranet-tmpl/prog/en/modules/pos/register.tt
Normal file
180
koha-tmpl/intranet-tmpl/prog/en/modules/pos/register.tt
Normal file
|
@ -0,0 +1,180 @@
|
|||
[% USE raw %]
|
||||
[% USE Asset %]
|
||||
[% USE Koha %]
|
||||
[% USE KohaDates %]
|
||||
[% USE Price %]
|
||||
[% SET footerjs = 1 %]
|
||||
[% PROCESS 'accounts.inc' %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Koha › Cashup</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
[% Asset.css("lib/jquery/plugins/rowGroup/stylesheets/rowGroup.dataTables.min.css") | $raw %]
|
||||
</head>
|
||||
|
||||
<body id="register" class="pos">
|
||||
[% INCLUDE 'header.inc' %]
|
||||
[% INCLUDE 'circ-search.inc' %]
|
||||
|
||||
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/pos/pay.pl">Point of sale</a> › Register details</div>
|
||||
|
||||
<div class="main container-fluid">
|
||||
<div class="row">
|
||||
<div class="col-sm-10 col-sm-push-2">
|
||||
|
||||
[% IF ( error_registers ) %]
|
||||
<div id="error_message" class="dialog alert">
|
||||
You must have at least one cash register associated with this branch before you can record payments.
|
||||
</div>
|
||||
[% ELSE %]
|
||||
|
||||
<div id="toolbar" class="btn-toolbar">
|
||||
<a id="cashup" href="/cgi-bin/koha/pos/register.pl?op=cashup" class="btn btn-default"><i class="fa fa-money"></i> Record cashup</a>
|
||||
</div>
|
||||
|
||||
<h1>Register transaction details for [% register.name | html %]</h1>
|
||||
|
||||
<h2>Summary</h2>
|
||||
<ul>
|
||||
[% IF register.last_cashup %]
|
||||
<li>Last cashup: [% register.last_cashup.timestamp | $KohaDates with_hours => 1 %]</li>
|
||||
[% END %]
|
||||
<li>Float: [% register.starting_float | $Price %]</li>
|
||||
<li>Total income (cash): [% accountlines.credits_total * -1 | $Price %] ([% accountlines.credits_total(payment_type => 'CASH') * -1 | $Price %])</li>
|
||||
<li>Total outgoing (cash): [% accountlines.debits_total * -1 | $Price %] ([% accountlines.debits_total( payment_type => 'CASH') * -1 | $Price %])</li>
|
||||
<li>Total bankable: [% accountlines.total( payment_type => 'CASH') * -1 | $Price %]</li>
|
||||
</ul>
|
||||
|
||||
[% IF register.last_cashup %]
|
||||
<h2>Transactions since [% register.last_cashup.timestamp | $KohaDates with_hours => 1 %]</h2>
|
||||
[% ELSE %]
|
||||
<h2>Transactions to date</h2>
|
||||
[% END %]
|
||||
<table id="sales" class="table_sales">
|
||||
<thead>
|
||||
<th>
|
||||
ID
|
||||
</th>
|
||||
<th>
|
||||
DATA
|
||||
</th>
|
||||
<th>
|
||||
Transaction
|
||||
</th>
|
||||
<th>
|
||||
Description
|
||||
</th>
|
||||
<th>
|
||||
Price
|
||||
</th>
|
||||
<th>
|
||||
Total
|
||||
</th>
|
||||
<th>
|
||||
Actions
|
||||
</th>
|
||||
</thead>
|
||||
<tbody>
|
||||
[% FOREACH accountline IN accountlines %]
|
||||
[% IF accountline.is_credit %]
|
||||
[% FOREACH credit IN accountline.credit_offsets %]
|
||||
[% IF credit.debit %]
|
||||
<tr>
|
||||
<td>
|
||||
[% accountline.accountlines_id %]
|
||||
</td>
|
||||
<td>
|
||||
{ "type": "credit", "description": "[%- PROCESS account_type_description account=accountline -%] ([% accountline.payment_type | html %])", "amount": "[% accountline.amount * -1 | $Price %]" }
|
||||
</td>
|
||||
<td></td>
|
||||
<td>
|
||||
[%- PROCESS account_type_description account=credit.debit -%]
|
||||
[%- IF credit.debit.description -%] ([% credit.debit.description | html %])[%- END -%]
|
||||
[%- IF ( credit.debit.itemnumber ) -%] (<a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% credit.debit.item.biblionumber | uri %]&itemnumber=[% credit.debit.itemnumber | uri %]">[% credit.debit.item.biblio.title | html %]</a>)[%- END -%]
|
||||
</td>
|
||||
<td>
|
||||
[% credit.debit.amount | $Price %]
|
||||
</td>
|
||||
<td></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
[% END %]
|
||||
[% END %]
|
||||
[% ELSE %]
|
||||
[% FOREACH debit IN accountline.debit_offsets %]
|
||||
[% IF debit.credit %]
|
||||
<tr>
|
||||
<td>
|
||||
[% accountline.accountlines_id %]
|
||||
</td>
|
||||
<td>
|
||||
{ "type": "debit", "description": "[%- PROCESS account_type_description account=accountline -%] ([% accountline.payment_type | html %])", "amount": "[% accountline.amount * -1 | $Price %]" }
|
||||
</td>
|
||||
<td></td>
|
||||
<td>
|
||||
[%- PROCESS account_type_description account=debit.credit -%]
|
||||
</td>
|
||||
<td>
|
||||
[%- IF debit.credit.description %][% debit.credit.description | html %][%- END -%]
|
||||
[%- IF ( debit.credit.itemnumber ) -%] (<a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% debit.credit.item.biblionumber | uri %]&itemnumber=[% debit.credit.itemnumber | uri %]">[% debit.credit.item.biblio.title | html %]</a>)[%- END -%]
|
||||
</td>
|
||||
<td>
|
||||
[% debit.credit.amount | $Price %]
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
[% END %]
|
||||
[% END %]
|
||||
[% END %]
|
||||
[% END %]
|
||||
</tbody>
|
||||
<tfoot>
|
||||
<tr>
|
||||
<td colspan="5">Total income: </td>
|
||||
<td>[% accountlines.total * -1 | $Price %]</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</tfoot>
|
||||
</table>
|
||||
[% END %]
|
||||
</div>
|
||||
|
||||
<div class="col-sm-2 col-sm-pull-10">
|
||||
<aside>
|
||||
[% INCLUDE 'pos-menu.inc' %]
|
||||
</aside>
|
||||
</div>
|
||||
</div><!-- /.row -->
|
||||
|
||||
[% MACRO jsinclude BLOCK %]
|
||||
[% INCLUDE 'datatables.inc' %]
|
||||
[% Asset.js("lib/jquery/plugins/rowGroup/dataTables.rowGroup.min.js") | $raw %]
|
||||
<script>
|
||||
var sales_table = $("#sales").dataTable($.extend(true, {}, dataTablesDefaults, {
|
||||
orderFixed: [ 0, 'asc'],
|
||||
columnDefs: [ {
|
||||
targets: [ 0, 1 ],
|
||||
visible: false
|
||||
}],
|
||||
rowGroup: {
|
||||
dataSrc: 0,
|
||||
startRender: function ( rows, group ) {
|
||||
var details = JSON.parse(rows.data().pluck(1).pop());
|
||||
return $('<tr class="'+details.type+'"/>')
|
||||
.append( '<td>'+group+'</td>' )
|
||||
.append( '<td colspan="2">'+details.description+'</td>' )
|
||||
.append( '<td>'+details.amount+'</td>' )
|
||||
.append( '<td><button class="printReceipt btn btn-default btn-xs" data-accountline="'+group+'"><i class="fa fa-print"></i> Print receipt</button></td>');
|
||||
},
|
||||
endRender: null,
|
||||
}
|
||||
}));
|
||||
|
||||
$(".printReceipt").click(function() {
|
||||
var accountlines_id = $(this).data('accountline');
|
||||
var win = window.open('/cgi-bin/koha/pos/printreceipt.pl?action=print&accountlines_id=' + accountlines_id, '_blank');
|
||||
win.focus();
|
||||
});
|
||||
</script>
|
||||
[% END %]
|
||||
|
||||
[% INCLUDE 'intranet-bottom.inc' %]
|
84
pos/register.pl
Executable file
84
pos/register.pl
Executable file
|
@ -0,0 +1,84 @@
|
|||
#!/usr/bin/perl
|
||||
#
|
||||
# c 2020 PTFS-Europe Ltd
|
||||
#
|
||||
# This file is part of Koha.
|
||||
#
|
||||
# Koha is free software; you can redistribute it and/or modify it under the
|
||||
# terms of the GNU General Public License as published by the Free Software
|
||||
# Foundation; either version 2 of the License, or (at your option) any later
|
||||
# version.
|
||||
#
|
||||
# Koha is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
||||
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License along with
|
||||
# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
|
||||
# Suite 330, Boston, MA 02111-1307 USA
|
||||
#
|
||||
|
||||
use Modern::Perl;
|
||||
use CGI;
|
||||
use C4::Auth;
|
||||
use C4::Output;
|
||||
use C4::Context;
|
||||
|
||||
use Koha::Cash::Registers;
|
||||
use Koha::Database;
|
||||
|
||||
my $input = CGI->new();
|
||||
|
||||
my ( $template, $loggedinuser, $cookie, $user_flags ) = get_template_and_user(
|
||||
{
|
||||
template_name => 'pos/register.tt',
|
||||
query => $input,
|
||||
type => 'intranet',
|
||||
authnotrequired => 0,
|
||||
flagsrequired => { cash_management => 'cashup' },
|
||||
}
|
||||
);
|
||||
my $logged_in_user = Koha::Patrons->find($loggedinuser) or die "Not logged in";
|
||||
|
||||
my $library_id = C4::Context->userenv->{'branch'};
|
||||
my $registerid = $input->param('registerid');
|
||||
my $registers = Koha::Cash::Registers->search(
|
||||
{ branch => $library_id, archived => 0 },
|
||||
{ order_by => { '-asc' => 'name' } }
|
||||
);
|
||||
|
||||
if ( !$registers->count ) {
|
||||
$template->param( error_registers => 1 );
|
||||
}
|
||||
else {
|
||||
if ( !$registerid ) {
|
||||
my $default_register = Koha::Cash::Registers->find(
|
||||
{ branch => $library_id, branch_default => 1 } );
|
||||
$registerid = $default_register->id if $default_register;
|
||||
}
|
||||
$registerid = $registers->next->id if !$registerid;
|
||||
|
||||
$template->param(
|
||||
registerid => $registerid,
|
||||
registers => $registers,
|
||||
);
|
||||
|
||||
my $cash_register = Koha::Cash::Registers->find( { id => $registerid } );
|
||||
my $accountlines = $cash_register->outstanding_accountlines();
|
||||
$template->param(
|
||||
register => $cash_register,
|
||||
accountlines => $accountlines
|
||||
);
|
||||
|
||||
my $op = $input->param('op') // '';
|
||||
if ( $op eq 'cashup' ) {
|
||||
$cash_register->add_cashup(
|
||||
{
|
||||
staff_id => $logged_in_user->id,
|
||||
amount => $cash_register->outstanding_accountlines->total
|
||||
}
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
output_html_with_http_headers( $input, $cookie, $template->output );
|
Loading…
Reference in a new issue