Fix: Pydantic v2 is sending decimals as strings and fucking things up

This commit is contained in:
Amritanshu Agrawal 2023-08-07 09:19:48 +05:30
parent a514c97409
commit 220c15b3fa
1 changed files with 4 additions and 4 deletions

View File

@ -193,10 +193,10 @@ export class IssueComponent implements OnInit, AfterViewInit, OnDestroy {
this.voucher.inventories.push(
new Inventory({
quantity,
rate: this.batch.rate,
tax: this.batch.tax,
discount: this.batch.discount,
amount: quantity * this.batch.rate * (1 + this.batch.tax) * (1 - this.batch.discount),
rate: +this.batch.rate,
tax: +this.batch.tax,
discount: +this.batch.discount,
amount: quantity * +this.batch.rate * (1 + +this.batch.tax) * (1 - +this.batch.discount),
batch: this.batch,
}),
);