39 lines
933 B
JavaScript
39 lines
933 B
JavaScript
|
|
// ==================
|
|
// 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);
|
|
|
|
});
|
|
|
|
|
|
}); |