Goals: Add option to percent goal to use available funds (#1254)

This commit is contained in:
youngcw
2023-07-04 06:35:23 -07:00
committed by GitHub
parent 050f48ac2a
commit c1b99958f4
2 changed files with 14 additions and 3 deletions

View File

@@ -90,13 +90,14 @@ async function processTemplate(month, force) {
// so the remainders don't get skiped
if (remainder_found) lowestPriority = remainder_priority;
let sheetName = monthUtils.sheetForMonth(month);
let available_start = await getSheetValue(sheetName, `to-budget`);
for (let priority = 0; priority <= lowestPriority; priority++) {
// setup scaling for remainder
let remainder_scale = 1;
if (priority === lowestPriority) {
let sheetName = monthUtils.sheetForMonth(month);
let budgetAvailable = await getSheetValue(sheetName, `to-budget`);
remainder_scale = Math.round(budgetAvailable / remainder_weight_total);
let available_now = await getSheetValue(sheetName, `to-budget`);
remainder_scale = Math.round(available_now / remainder_weight_total);
}
for (let c = 0; c < categories.length; c++) {
@@ -150,6 +151,7 @@ async function processTemplate(month, force) {
month,
priority,
remainder_scale,
available_start,
force,
);
if (to_budget != null) {
@@ -252,6 +254,7 @@ async function applyCategoryTemplate(
month,
priority,
remainder_scale,
available_start,
force,
) {
let current_month = `${month}-01`;
@@ -493,6 +496,8 @@ async function applyCategoryTemplate(
let monthlyIncome = 0;
if (template.category.toLowerCase() === 'all income') {
monthlyIncome = await getSheetValue(sheetName, `total-income`);
} else if (template.category.toLowerCase() === 'available funds') {
monthlyIncome = available_start;
} else {
let income_category = (await db.getCategories()).find(
c =>

View File

@@ -0,0 +1,6 @@
---
category: Enhancements
authors: [youngcw]
---
Goals: Add 'available funds' option to the percentage goal