added report for All Users Login Activity
This commit is contained in:
+1
-8
@@ -292,13 +292,6 @@ class Users extends Base {
|
|||||||
|
|
||||||
public function getUserByUserName($user_name) {
|
public function getUserByUserName($user_name) {
|
||||||
|
|
||||||
// $SQL = "select view_users.*
|
|
||||||
// from view_users
|
|
||||||
// where user_id = '{$user_name}'
|
|
||||||
// or user_client_name = '{$user_name}'";
|
|
||||||
//
|
|
||||||
// return $this->getTable("user", $SQL);
|
|
||||||
|
|
||||||
$SQL = "select view_users.*
|
$SQL = "select view_users.*
|
||||||
from view_users
|
from view_users
|
||||||
where user_id = ?
|
where user_id = ?
|
||||||
@@ -326,7 +319,7 @@ class Users extends Base {
|
|||||||
|
|
||||||
public function getUsers() {
|
public function getUsers() {
|
||||||
|
|
||||||
$SQL = "select view_users.* from view_users";
|
$SQL = "select view_users.* from view_users order by view_users.user_name";
|
||||||
|
|
||||||
return $this->getTable("allusers", $SQL);
|
return $this->getTable("allusers", $SQL);
|
||||||
}
|
}
|
||||||
|
|||||||
+196
-172
@@ -3,227 +3,251 @@
|
|||||||
// Select Report
|
// Select Report
|
||||||
// =============
|
// =============
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function () {
|
||||||
|
|
||||||
var $application = $("#APPLICATION_MNEMONIC").val(),
|
var $application = $("#APPLICATION_MNEMONIC").val(),
|
||||||
$sessionStorage = JSON.parse(sessionStorage.getItem($application) || "{}");
|
$sessionStorage = JSON.parse(sessionStorage.getItem($application) || "{}");
|
||||||
|
|
||||||
// -----------
|
// -----------
|
||||||
// Find Button
|
// Find Button
|
||||||
// -----------
|
// -----------
|
||||||
|
|
||||||
$(".btnFind").on("click", function() {
|
$(".btnFind").on("click", function () {
|
||||||
|
|
||||||
$sessionStorage.action = "Reports.selectReport";
|
$sessionStorage.action = "Reports.selectReport";
|
||||||
$sessionStorage.pagination = "first";
|
$sessionStorage.pagination = "first";
|
||||||
|
|
||||||
sessionStorage.setItem($application, JSON.stringify($sessionStorage));
|
|
||||||
|
|
||||||
$("#spinner-dialog").modal("show");
|
|
||||||
|
|
||||||
formSubmit($sessionStorage);
|
|
||||||
|
|
||||||
});
|
|
||||||
|
|
||||||
$("#select_report").on("keyup", function(e) {
|
|
||||||
if (e.key === "Enter") {
|
|
||||||
$(".btnFind").trigger("click");
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
// -----------------
|
|
||||||
// Clear Find Button
|
|
||||||
// -----------------
|
|
||||||
|
|
||||||
$(".btnClearFind").on("click", function() {
|
|
||||||
|
|
||||||
$("#select_report").val("").trigger("change");
|
|
||||||
|
|
||||||
$sessionStorage.action = "Reports.selectReport";
|
|
||||||
$sessionStorage.pagination = "first";
|
|
||||||
|
|
||||||
sessionStorage.setItem($application, JSON.stringify($sessionStorage));
|
|
||||||
|
|
||||||
$("#spinner-dialog").modal("show");
|
|
||||||
|
|
||||||
formSubmit($sessionStorage);
|
|
||||||
|
|
||||||
});
|
|
||||||
|
|
||||||
// --------------------
|
|
||||||
// Show Per Page Change
|
|
||||||
// --------------------
|
|
||||||
|
|
||||||
$("#reports_per_page").on("change", function() {
|
|
||||||
|
|
||||||
$sessionStorage.alerts_per_page = $(this).val();
|
|
||||||
$sessionStorage.action = "Reports.selectReport";
|
|
||||||
$sessionStorage.pagination = "first";
|
|
||||||
|
|
||||||
sessionStorage.setItem($application, JSON.stringify($sessionStorage));
|
|
||||||
|
|
||||||
$("#spinner-dialog").modal("show");
|
|
||||||
|
|
||||||
formSubmit($sessionStorage);
|
|
||||||
|
|
||||||
});
|
|
||||||
|
|
||||||
// ------------------
|
|
||||||
// Pagination Buttons
|
|
||||||
// ------------------
|
|
||||||
|
|
||||||
$(".btnPagination").on("click", function() {
|
|
||||||
|
|
||||||
$sessionStorage.action = "Reports.selectReport";
|
|
||||||
$sessionStorage.pagination = $(this).data("pagination");
|
|
||||||
|
|
||||||
sessionStorage.setItem($application, JSON.stringify($sessionStorage));
|
|
||||||
|
|
||||||
$("#spinner-dialog").modal("show");
|
|
||||||
|
|
||||||
formSubmit($sessionStorage);
|
|
||||||
|
|
||||||
delete $sessionStorage.pagination;
|
|
||||||
|
|
||||||
sessionStorage.setItem($application, JSON.stringify($sessionStorage));
|
|
||||||
|
|
||||||
});
|
|
||||||
|
|
||||||
// -----------
|
|
||||||
// Done Button
|
|
||||||
// -----------
|
|
||||||
|
|
||||||
$(".btnDone").on("click", function() {
|
|
||||||
|
|
||||||
formSubmit({ action : "" });
|
|
||||||
|
|
||||||
});
|
|
||||||
|
|
||||||
// ---------------------------
|
|
||||||
// Process the selected Report
|
|
||||||
// ---------------------------
|
|
||||||
|
|
||||||
$("#reports-table tbody").on("click touch", "tr", function(e) {
|
|
||||||
|
|
||||||
e.preventDefault();
|
|
||||||
|
|
||||||
switch ($(this).data("report-type")) {
|
|
||||||
|
|
||||||
case "Report" :
|
|
||||||
|
|
||||||
$sessionStorage.action = $(this).data("report-class");
|
|
||||||
$sessionStorage.printReturn = "Reports.selectReport";
|
|
||||||
|
|
||||||
sessionStorage.setItem($application, JSON.stringify($sessionStorage));
|
sessionStorage.setItem($application, JSON.stringify($sessionStorage));
|
||||||
|
|
||||||
var target = $(this).data("report-target").trim();
|
$("#spinner-dialog").modal("show");
|
||||||
|
|
||||||
formSubmit($sessionStorage, target);
|
|
||||||
|
|
||||||
break;
|
|
||||||
|
|
||||||
case "Download" :
|
|
||||||
|
|
||||||
$sessionStorage.action = $(this).data("report-class");
|
|
||||||
$sessionStorage.downloadReturn = "Reports.selectReport";
|
|
||||||
|
|
||||||
sessionStorage.setItem($application, JSON.stringify($sessionStorage));
|
|
||||||
|
|
||||||
formSubmit($sessionStorage);
|
formSubmit($sessionStorage);
|
||||||
|
|
||||||
break;
|
});
|
||||||
|
|
||||||
case "Email" :
|
$("#select_report").on("keyup", function (e) {
|
||||||
|
if (e.key === "Enter") {
|
||||||
|
$(".btnFind").trigger("click");
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
break;
|
// -----------------
|
||||||
|
// Clear Find Button
|
||||||
|
// -----------------
|
||||||
|
|
||||||
case "Graph" :
|
$(".btnClearFind").on("click", function () {
|
||||||
|
|
||||||
$sessionStorage.action = $(this).data("report-class");
|
$("#select_report").val("").trigger("change");
|
||||||
$sessionStorage.graphReturn = "Reports.selectReport";
|
|
||||||
|
$sessionStorage.action = "Reports.selectReport";
|
||||||
|
$sessionStorage.pagination = "first";
|
||||||
|
|
||||||
sessionStorage.setItem($application, JSON.stringify($sessionStorage));
|
sessionStorage.setItem($application, JSON.stringify($sessionStorage));
|
||||||
|
|
||||||
|
$("#spinner-dialog").modal("show");
|
||||||
|
|
||||||
formSubmit($sessionStorage);
|
formSubmit($sessionStorage);
|
||||||
|
|
||||||
break;
|
});
|
||||||
|
|
||||||
case "Upload" :
|
// --------------------
|
||||||
|
// Show Per Page Change
|
||||||
|
// --------------------
|
||||||
|
|
||||||
break;
|
$("#reports_per_page").on("change", function () {
|
||||||
|
|
||||||
default :
|
$sessionStorage.alerts_per_page = $(this).val();
|
||||||
|
$sessionStorage.action = "Reports.selectReport";
|
||||||
|
$sessionStorage.pagination = "first";
|
||||||
|
|
||||||
return false;
|
sessionStorage.setItem($application, JSON.stringify($sessionStorage));
|
||||||
|
|
||||||
break;
|
$("#spinner-dialog").modal("show");
|
||||||
|
|
||||||
}
|
formSubmit($sessionStorage);
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
// -------------------
|
// ------------------
|
||||||
// Save Changed Inputs
|
// Pagination Buttons
|
||||||
// -------------------
|
// ------------------
|
||||||
|
|
||||||
$(".autosave").on("change", function(e) {
|
$(".btnPagination").on("click", function () {
|
||||||
|
|
||||||
switch (e.target.type) {
|
$sessionStorage.action = "Reports.selectReport";
|
||||||
|
$sessionStorage.pagination = $(this).data("pagination");
|
||||||
|
|
||||||
case "text" : $sessionStorage[e.target.name] = $(this).val(); break;
|
sessionStorage.setItem($application, JSON.stringify($sessionStorage));
|
||||||
case "radio" : $sessionStorage[e.target.name] = $(this).val(); break;
|
|
||||||
case "checkbox" : $sessionStorage[e.target.name] = $(this).prop("checked"); break;
|
|
||||||
case "select-one" : $sessionStorage[e.target.name] = $(this).val(); break;
|
|
||||||
case "hidden" : $sessionStorage[e.target.name] = $(this).val(); break;
|
|
||||||
|
|
||||||
default : $sessionStorage[e.target.name] = $(this).val(); break;
|
$("#spinner-dialog").modal("show");
|
||||||
|
|
||||||
}
|
formSubmit($sessionStorage);
|
||||||
|
|
||||||
sessionStorage.setItem($application, JSON.stringify($sessionStorage));
|
delete $sessionStorage.pagination;
|
||||||
|
|
||||||
});
|
sessionStorage.setItem($application, JSON.stringify($sessionStorage));
|
||||||
|
|
||||||
// ----------------
|
});
|
||||||
// Initalize Inputs
|
|
||||||
// ----------------
|
|
||||||
|
|
||||||
$.each($sessionStorage, function(name, value) {
|
// -----------
|
||||||
|
// Done Button
|
||||||
|
// -----------
|
||||||
|
|
||||||
var $input = $(":input").filter("[name='" + name + "']");
|
$(".btnDone").on("click", function () {
|
||||||
|
|
||||||
if ($input.length > 0) {
|
formSubmit({action: ""});
|
||||||
|
|
||||||
switch ($input.prop("type")) {
|
});
|
||||||
|
|
||||||
case "text" : $input.val(value); break;
|
// ---------------------------
|
||||||
case "radio" : $input.filter("[value=" + value + "]").prop("checked", true); break;
|
// Process the selected Report
|
||||||
case "checkbox" : $input.prop("checked", value); break;
|
// ---------------------------
|
||||||
case "select-one" : $input.val(value); break;
|
|
||||||
case "hidden" : $input.val(value); break;
|
|
||||||
|
|
||||||
default : $input.val(value); break;
|
$("#reports-table tbody").on("click touch", "tr", function (e) {
|
||||||
|
|
||||||
}
|
e.preventDefault();
|
||||||
|
|
||||||
}
|
switch ($(this).data("report-type")) {
|
||||||
|
|
||||||
});
|
case "Report" :
|
||||||
|
|
||||||
// ------------------
|
$sessionStorage.action = $(this).data("report-class");
|
||||||
// Save preset Inputs
|
$sessionStorage.printReturn = "Reports.selectReport";
|
||||||
// ------------------
|
|
||||||
|
|
||||||
$("input[type=radio]:checked").trigger("change");
|
sessionStorage.setItem($application, JSON.stringify($sessionStorage));
|
||||||
|
|
||||||
// -----------------
|
var target = $(this).data("report-target").trim();
|
||||||
// Per Page Dropdown
|
|
||||||
// -----------------
|
|
||||||
|
|
||||||
$("#reports_per_page").on("change", function() {
|
formSubmit($sessionStorage, target);
|
||||||
|
|
||||||
$(".btnFind").trigger("click");
|
break;
|
||||||
|
|
||||||
});
|
case "Download" :
|
||||||
|
|
||||||
|
$sessionStorage.action = $(this).data("report-class");
|
||||||
|
$sessionStorage.downloadReturn = "Reports.selectReport";
|
||||||
|
|
||||||
|
sessionStorage.setItem($application, JSON.stringify($sessionStorage));
|
||||||
|
|
||||||
|
formSubmit($sessionStorage);
|
||||||
|
|
||||||
|
break;
|
||||||
|
|
||||||
|
case "Email" :
|
||||||
|
|
||||||
|
break;
|
||||||
|
|
||||||
|
case "Graph" :
|
||||||
|
|
||||||
|
$sessionStorage.action = $(this).data("report-class");
|
||||||
|
$sessionStorage.graphReturn = "Reports.selectReport";
|
||||||
|
|
||||||
|
sessionStorage.setItem($application, JSON.stringify($sessionStorage));
|
||||||
|
|
||||||
|
formSubmit($sessionStorage);
|
||||||
|
|
||||||
|
break;
|
||||||
|
|
||||||
|
case "Upload" :
|
||||||
|
|
||||||
|
break;
|
||||||
|
|
||||||
|
default :
|
||||||
|
|
||||||
|
return false;
|
||||||
|
|
||||||
|
break;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
// -------------------
|
||||||
|
// Save Changed Inputs
|
||||||
|
// -------------------
|
||||||
|
|
||||||
|
$(".autosave").on("change", function (e) {
|
||||||
|
|
||||||
|
switch (e.target.type) {
|
||||||
|
|
||||||
|
case "text" :
|
||||||
|
$sessionStorage[e.target.name] = $(this).val();
|
||||||
|
break;
|
||||||
|
case "radio" :
|
||||||
|
$sessionStorage[e.target.name] = $(this).val();
|
||||||
|
break;
|
||||||
|
case "checkbox" :
|
||||||
|
$sessionStorage[e.target.name] = $(this).prop("checked");
|
||||||
|
break;
|
||||||
|
case "select-one" :
|
||||||
|
$sessionStorage[e.target.name] = $(this).val();
|
||||||
|
break;
|
||||||
|
case "hidden" :
|
||||||
|
$sessionStorage[e.target.name] = $(this).val();
|
||||||
|
break;
|
||||||
|
|
||||||
|
default :
|
||||||
|
$sessionStorage[e.target.name] = $(this).val();
|
||||||
|
break;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
sessionStorage.setItem($application, JSON.stringify($sessionStorage));
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
// ----------------
|
||||||
|
// Initalize Inputs
|
||||||
|
// ----------------
|
||||||
|
|
||||||
|
$.each($sessionStorage, function (name, value) {
|
||||||
|
|
||||||
|
var $input = $(":input").filter("[name='" + name + "']");
|
||||||
|
|
||||||
|
if ($input.length > 0) {
|
||||||
|
|
||||||
|
switch ($input.prop("type")) {
|
||||||
|
|
||||||
|
case "text" :
|
||||||
|
$input.val(value);
|
||||||
|
break;
|
||||||
|
case "radio" :
|
||||||
|
$input.filter("[value=" + value + "]").prop("checked", true);
|
||||||
|
break;
|
||||||
|
case "checkbox" :
|
||||||
|
$input.prop("checked", value);
|
||||||
|
break;
|
||||||
|
case "select-one" :
|
||||||
|
$input.val(value);
|
||||||
|
break;
|
||||||
|
case "hidden" :
|
||||||
|
$input.val(value);
|
||||||
|
break;
|
||||||
|
|
||||||
|
default :
|
||||||
|
$input.val(value);
|
||||||
|
break;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
// ------------------
|
||||||
|
// Save preset Inputs
|
||||||
|
// ------------------
|
||||||
|
|
||||||
|
$("input[type=radio]:checked").trigger("change");
|
||||||
|
|
||||||
|
// -----------------
|
||||||
|
// Per Page Dropdown
|
||||||
|
// -----------------
|
||||||
|
|
||||||
|
$("#reports_per_page").on("change", function () {
|
||||||
|
|
||||||
|
$(".btnFind").trigger("click");
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
@@ -0,0 +1,179 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
require_once ("tcpdf/tcpdf.php");
|
||||||
|
|
||||||
|
// ===========================
|
||||||
|
// Print a User Login Activity
|
||||||
|
// ===========================
|
||||||
|
|
||||||
|
class Print_UserLoginActivity extends Base {
|
||||||
|
|
||||||
|
// ==================
|
||||||
|
// Class Constructor.
|
||||||
|
// ==================
|
||||||
|
|
||||||
|
public function __construct($output_type = "normal") {
|
||||||
|
|
||||||
|
set_error_handler(array($this, "displayError"));
|
||||||
|
|
||||||
|
date_default_timezone_set(self::TIMEZONE);
|
||||||
|
}
|
||||||
|
|
||||||
|
// ================
|
||||||
|
// Print the Report
|
||||||
|
// ================
|
||||||
|
|
||||||
|
public function print($user_serial = 0, $output_type = "normal") {
|
||||||
|
|
||||||
|
$report = new User_LoginActivity();
|
||||||
|
|
||||||
|
$report->output_type = $output_type;
|
||||||
|
|
||||||
|
ob_clean();
|
||||||
|
|
||||||
|
if ($output_type == "string") {
|
||||||
|
return $report->render();
|
||||||
|
} else {
|
||||||
|
$report->render();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ==========================
|
||||||
|
// Class to Generate the .pdf
|
||||||
|
// ==========================
|
||||||
|
|
||||||
|
class User_LoginActivity extends TCPDF {
|
||||||
|
|
||||||
|
// Variables
|
||||||
|
|
||||||
|
public $user_serial = 0;
|
||||||
|
public $first_page = true;
|
||||||
|
public $output_type = "normal";
|
||||||
|
|
||||||
|
// ================
|
||||||
|
// Debug an Object.
|
||||||
|
// ================
|
||||||
|
|
||||||
|
public function debug($object = "") {
|
||||||
|
|
||||||
|
echo "<pre>";
|
||||||
|
print_r($object);
|
||||||
|
exit();
|
||||||
|
}
|
||||||
|
|
||||||
|
// =================
|
||||||
|
// Render the Report
|
||||||
|
// =================
|
||||||
|
|
||||||
|
public function render() {
|
||||||
|
|
||||||
|
set_time_limit(0);
|
||||||
|
|
||||||
|
// Get the data for the report
|
||||||
|
|
||||||
|
$users = (new Users())->getUsers();
|
||||||
|
|
||||||
|
// Set report defaults
|
||||||
|
|
||||||
|
$this->title = "All Users Login Activity";
|
||||||
|
|
||||||
|
$this->SetFont("Calibri");
|
||||||
|
$this->SetMargins(10, 30, 10);
|
||||||
|
$this->SetHeaderMargin(10);
|
||||||
|
$this->SetFooterMargin(10);
|
||||||
|
$this->setCellPaddings(0, 0, 0, 0);
|
||||||
|
$this->setCellMargins(2, 0, 0, 0);
|
||||||
|
|
||||||
|
$this->addPage("P", "LETTER");
|
||||||
|
|
||||||
|
// ------------------------
|
||||||
|
// Print the Users Activity
|
||||||
|
// ------------------------
|
||||||
|
|
||||||
|
$this->SetFont("Calibri", "B", 10);
|
||||||
|
|
||||||
|
$rowCount = 0;
|
||||||
|
|
||||||
|
foreach ($users as $user) {
|
||||||
|
|
||||||
|
$this->stripeLine($rowCount, 60);
|
||||||
|
|
||||||
|
$rowCount++;
|
||||||
|
|
||||||
|
$user_name = (string) $user->user_name;
|
||||||
|
$users_login = (string) $user->user_login_verbose ?: 'Never Logged In';
|
||||||
|
|
||||||
|
$this->Cell(20, 0, $user_name, 0, 0, "C", false, "", 0);
|
||||||
|
$this->Cell(20, 0, $users_login, 0, 0, "L", false, "", 0);
|
||||||
|
$this->Ln();
|
||||||
|
}
|
||||||
|
|
||||||
|
// --------------
|
||||||
|
// Return the pdf
|
||||||
|
// --------------
|
||||||
|
|
||||||
|
if ($this->output_type == "string") {
|
||||||
|
return $this->Output("UserLoginActivity.pdf", "S");
|
||||||
|
} else {
|
||||||
|
$this->Output("UserLoginActivity.pdf");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ======
|
||||||
|
// Header
|
||||||
|
// ======
|
||||||
|
|
||||||
|
public function Header() {
|
||||||
|
|
||||||
|
$this->setCellPaddings(0, 0, 0, 0);
|
||||||
|
$this->setCellMargins(2, 0, 0, 0);
|
||||||
|
|
||||||
|
$this->Image('images/dec-international-logo.png', 10, 7, 25, 10);
|
||||||
|
|
||||||
|
$this->SetFont("Calibri", "B", 16);
|
||||||
|
|
||||||
|
$this->Cell(0, 6, "Users Login Activity", 0, 1, "C");
|
||||||
|
|
||||||
|
$this->Ln(5);
|
||||||
|
|
||||||
|
$this->SetFont("Calibri", "B", 12);
|
||||||
|
|
||||||
|
$this->Cell(20, 0, "User Name", "B", 0, "C", false, "", 3);
|
||||||
|
$this->Cell(50, 0, "Last Login", "B", 0, "L", false, "", 3);
|
||||||
|
|
||||||
|
$this->SetFont("Calibri", "B", 10);
|
||||||
|
}
|
||||||
|
|
||||||
|
// ======
|
||||||
|
// Footer
|
||||||
|
// ======
|
||||||
|
|
||||||
|
public function Footer() {
|
||||||
|
|
||||||
|
$this->SetFont("Calibri", "I", 8);
|
||||||
|
|
||||||
|
$X = $this->GetX();
|
||||||
|
|
||||||
|
$this->Cell(0, 10, "DEC-International, LLC", 0, false, "C");
|
||||||
|
|
||||||
|
$this->SetX($X);
|
||||||
|
|
||||||
|
$this->Cell(40, 10, "Page " . $this->getAliasNumPage() . "/" . $this->getAliasNbPages(), 0, false, "L");
|
||||||
|
$this->Cell(0, 10, date("Y-m-d g:i A"), 0, false, "R");
|
||||||
|
}
|
||||||
|
|
||||||
|
// =======================
|
||||||
|
// Stripe the printed line
|
||||||
|
// =======================
|
||||||
|
|
||||||
|
private function stripeLine($pRowCount = 0, $pRowWidth = 0) {
|
||||||
|
|
||||||
|
$this->SetFillColor(($pRowCount % 2) ? 220 : 255);
|
||||||
|
$X = $this->GetX();
|
||||||
|
$this->Cell($pRowWidth, 0, "", 0, 0, "L", true);
|
||||||
|
$this->SetX($X);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
||||||
@@ -2,9 +2,9 @@
|
|||||||
|
|
||||||
require_once ("tcpdf/tcpdf.php");
|
require_once ("tcpdf/tcpdf.php");
|
||||||
|
|
||||||
// ============================
|
// ==========================
|
||||||
// Print a User Summary Sheet
|
// Print a User Summary Sheet
|
||||||
// ============================
|
// ==========================
|
||||||
|
|
||||||
class Print_UserSummary extends Base {
|
class Print_UserSummary extends Base {
|
||||||
|
|
||||||
|
|||||||
@@ -31,7 +31,8 @@
|
|||||||
|
|
|
|
||||||
<xsl:value-of select="//subscriptions/record/subscription_full_title"/>
|
<xsl:value-of select="//subscriptions/record/subscription_full_title"/>
|
||||||
<span class="ms-auto">
|
<span class="ms-auto">
|
||||||
Available Records: <xsl:value-of select="format-number(//userstotalavailablerecords/record/count, '#,##0')" />
|
Available Records:
|
||||||
|
<xsl:value-of select="format-number(//userstotalavailablerecords/record/count, '#,##0')" />
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user