Skip to content
Snippets Groups Projects
Unverified Commit 5dd59c00 authored by youngcw's avatar youngcw Committed by GitHub
Browse files

Goals: fix leftover 1 cent in remainder goal (#1400)

parent ebc943bd
No related branches found
No related tags found
No related merge requests found
...@@ -144,7 +144,7 @@ async function processTemplate(month, force, category_templates) { ...@@ -144,7 +144,7 @@ async function processTemplate(month, force, category_templates) {
let remainder_scale = 1; let remainder_scale = 1;
if (priority === lowestPriority) { if (priority === lowestPriority) {
let available_now = await getSheetValue(sheetName, `to-budget`); let available_now = await getSheetValue(sheetName, `to-budget`);
remainder_scale = Math.round(available_now / remainder_weight_total); remainder_scale = available_now / remainder_weight_total;
} }
for (let c = 0; c < categories.length; c++) { for (let c = 0; c < categories.length; c++) {
...@@ -671,6 +671,9 @@ async function applyCategoryTemplate( ...@@ -671,6 +671,9 @@ async function applyCategoryTemplate(
// can over budget with the rounding, so checking that // can over budget with the rounding, so checking that
if (to_budget >= budgetAvailable + budgeted) { if (to_budget >= budgetAvailable + budgeted) {
to_budget = budgetAvailable + budgeted; to_budget = budgetAvailable + budgeted;
// check if there is 1 cent leftover from rounding
} else if (budgetAvailable - to_budget === 1) {
to_budget = to_budget + 1;
} }
} }
break; break;
......
---
category: Bugfix
authors: [youngcw]
---
Goals: Fix leftover $0.01 when using remainder goal
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment