Chore: Mypy work going on

Fix: Recipes costing of semi items would show very high cost of the whole recipe for per unit as ingredient
This commit is contained in:
2021-11-14 12:02:22 +05:30
parent ddd389a899
commit ee7f036ced
47 changed files with 487 additions and 437 deletions

View File

@ -10,7 +10,7 @@ export class CashFlow {
details: CashFlowItem[];
};
footer?: CashFlowItem[];
footer: CashFlowItem[];
public constructor(init?: Partial<CashFlow>) {
this.startDate = '';
@ -21,6 +21,7 @@ export class CashFlow {
financing: [],
details: [],
};
this.footer = [];
Object.assign(this, init);
}