taxtank-core 0.28.83 → 0.28.85
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.
|
@@ -3742,7 +3742,7 @@
|
|
|
3742
3742
|
};
|
|
3743
3743
|
Object.defineProperty(TransactionBase.prototype, "amountWithGst", {
|
|
3744
3744
|
get: function () {
|
|
3745
|
-
return this.isGST ? this.amount * ChartAccounts.GSTCoefficient : this.amount;
|
|
3745
|
+
return this.isGST ? +(this.amount * ChartAccounts.GSTCoefficient).toFixed(2) : this.amount;
|
|
3746
3746
|
},
|
|
3747
3747
|
enumerable: false,
|
|
3748
3748
|
configurable: true
|