Skip to content
Snippets Groups Projects
Commit 3e6eb7b2 authored by Pregmodder's avatar Pregmodder
Browse files

Merge branch 'fix-corp-printing-html' into 'pregmod-master'

fix corp printing html

Closes #2544

See merge request pregmodfan/fc-pregmod!8329
parents e9189743 bbcdcb8e
No related branches found
No related tags found
1 merge request!8329fix corp printing html
App.EndWeek.corporationDevelopments = function() { App.EndWeek.corporationDevelopments = function() {
const el = document.createElement("p"); const el = document.createElement("p");
let r = []; let r;
/* Main Corporation Pass*/ /* Main Corporation Pass*/
if (App.Corporate.cash < 0) { if (App.Corporate.cash < 0) {
...@@ -13,27 +13,32 @@ App.EndWeek.corporationDevelopments = function() { ...@@ -13,27 +13,32 @@ App.EndWeek.corporationDevelopments = function() {
for (const i in _weekLedger.divisionLedgers) { for (const i in _weekLedger.divisionLedgers) {
const _d = _weekLedger.divisionLedgers[i]; const _d = _weekLedger.divisionLedgers[i];
const _div = _d.division; const _div = _d.division;
const r = []; let r;
/* Reporting on number of slaves being processed or completed processing */ /* Reporting on number of slaves being processed or completed processing */
r.push(`${_div.name}: The division ${_div.message_endWeek_Slaves(_d)}`); App.Events.addNode(el, [`${_div.name}: The division ${_div.message_endWeek_Slaves(_d)}`], "div");
r = [];
if (_d.market.originalBuy != null) { if (_d.market.originalBuy != null) {
if (_d.market.buy === 0) { if (_d.market.buy === 0) {
r.push(App.UI.DOM.makeElement("div", `It couldn't purchase ${numberWithPlural(_d.market.originalBuy, "slave")} to replenish its stock from the market because it couldn't afford to purchase price.`)); r.push(`It couldn't purchase ${numberWithPlural(_d.market.originalBuy, "slave")} to replenish its stock from the market because it couldn't afford to purchase price.`);
} else { } else {
r.push(App.UI.DOM.makeElement("div", `It needed to replenish its slave stock of ${numberWithPlural(_d.market.originalBuy, "slave")}, but couldn't afford to buy all of them. It bought ${numberWithPlural(_d.market.buy, _div.nounSlaveFromMarket)} for ${cashFormatColor(_d.market.finalPurchase, true)}.`)); r.push(`It needed to replenish its slave stock of ${numberWithPlural(_d.market.originalBuy, "slave")}, but couldn't afford to buy all of them. It bought ${numberWithPlural(_d.market.buy, _div.nounSlaveFromMarket)} for ${cashFormatColor(_d.market.finalPurchase, true)}.`);
} }
} else if (_d.market.buy > 0) { } else if (_d.market.buy > 0) {
r.push(App.UI.DOM.makeElement("div", `It replenished its slave stock and bought ${numberWithPlural(_d.market.buy, _div.nounSlaveFromMarket)} from the market for ${cashFormatColor(_d.market.finalPurchase, true)}.`)); r.push(`It replenished its slave stock and bought ${numberWithPlural(_d.market.buy, _div.nounSlaveFromMarket)} from the market for ${cashFormatColor(_d.market.finalPurchase, true)}.`);
} }
App.Events.addNode(el, r, "div");
if (_d.transfer.total > 0) { if (_d.transfer.total > 0) {
for (const i in _d.transfer.divisions) { for (const i in _d.transfer.divisions) {
const _nextDivLedger = _d.transfer.divisions[i]; const _nextDivLedger = _d.transfer.divisions[i];
const _nextDiv = _nextDivLedger.division; const _nextDiv = _nextDivLedger.division;
const _slavesToNext = _nextDivLedger.fill; const _slavesToNext = _nextDivLedger.fill;
r.push(`It moved ${numberWithPlural(_slavesToNext, "slave")} to the ${_nextDiv.name} Division.`); App.Events.addNode(el, [`It moved ${numberWithPlural(_slavesToNext, "slave")} to the ${_nextDiv.name} Division.`], "div");
} }
} }
if (_div.toMarket) { if (_div.toMarket) {
r = [];
if (_div.heldSlaves === 0) { if (_div.heldSlaves === 0) {
if (_d.market.sell > 0) { if (_d.market.sell > 0) {
r.push(`It immediately sold ${numberWithPlural(_d.market.sell, _div.nounFinishedSlave)} to the market and made ${cashFormatColor(_d.market.finalSale)}.`); r.push(`It immediately sold ${numberWithPlural(_d.market.sell, _div.nounFinishedSlave)} to the market and made ${cashFormatColor(_d.market.finalSale)}.`);
...@@ -46,13 +51,12 @@ App.EndWeek.corporationDevelopments = function() { ...@@ -46,13 +51,12 @@ App.EndWeek.corporationDevelopments = function() {
r.push(`week.`); r.push(`week.`);
} }
} }
App.Events.addNode(el, r, "div");
} }
if (_d.revenue.value > 0) { if (_d.revenue.value > 0) {
r.push(`It earned ${cashFormatColor(_d.revenue.value)} in revenue.`); App.Events.addNode(el, [`It earned ${cashFormatColor(_d.revenue.value)} in revenue.`], "div");
} }
App.Events.addNode(el, r, "div");
} }
App.Events.addNode(el, r);
/* Aggregate Corporation Results*/ /* Aggregate Corporation Results*/
el.append(App.Corporate.writeLedger(App.Corporate.ledger.current, V.week)); el.append(App.Corporate.writeLedger(App.Corporate.ledger.current, V.week));
......
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