first commit

This commit is contained in:
2026-07-03 15:46:56 -04:00
commit bf8532aa1e
1545 changed files with 450330 additions and 0 deletions
+39
View File
@@ -0,0 +1,39 @@
// ==================
// View Budget Months
// ==================
$(document).ready(function () {
var $application = $("#APPLICATION_MNEMONIC").val(), $sessionStorage = JSON.parse(sessionStorage.getItem($application) || "{}");
// -----------
// Done Button
// -----------
$(".btnDone").on("click", function () {
formSubmit({action: "Budgets.viewBudgets"});
});
// -------------------
// Budget Months Table
// -------------------
$("#budgetmonth-table tbody").on("click touch", "tr", function (e) {
e.preventDefault();
$sessionStorage.action = "BudgetDetails.viewBudgetDetails";
$sessionStorage.budgetmonth_serial = $(this).data("budgetmonth-serial");
$sessionStorage.viewBudgetMonths = "Budgets.viewBudgets";
sessionStorage.setItem($application, JSON.stringify($sessionStorage));
formSubmit($sessionStorage);
});
});