taxtank-core 0.28.34 → 0.28.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/taxtank-core.umd.js +4 -1
- package/bundles/taxtank-core.umd.js.map +1 -1
- package/esm2015/lib/models/sole/sole-business-loss.js +7 -1
- package/fesm2015/taxtank-core.js +5 -0
- package/fesm2015/taxtank-core.js.map +1 -1
- package/lib/models/sole/sole-business-loss.d.ts +2 -0
- package/package.json +1 -1
|
@@ -2777,7 +2777,10 @@
|
|
|
2777
2777
|
var SoleBusinessLoss = /** @class */ (function (_super) {
|
|
2778
2778
|
__extends(SoleBusinessLoss, _super);
|
|
2779
2779
|
function SoleBusinessLoss() {
|
|
2780
|
-
|
|
2780
|
+
var _this = _super.apply(this, __spreadArray([], __read(arguments))) || this;
|
|
2781
|
+
_this.openBalance = 0;
|
|
2782
|
+
_this.financialYear = new FinancialYear().year;
|
|
2783
|
+
return _this;
|
|
2781
2784
|
}
|
|
2782
2785
|
Object.defineProperty(SoleBusinessLoss.prototype, "hasOffset", {
|
|
2783
2786
|
get: function () {
|