Skip to content
This repository has been archived by the owner on Oct 4, 2024. It is now read-only.

Commit

Permalink
fix: cosmetic only
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-audi committed Oct 4, 2023
1 parent a6640dc commit 3421958
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,11 +96,11 @@ class JSProduct(product: Product) {

init {
productNumber = JSStringType.opt(product.productNumber())
this.description = JSStringType.opt(product.description())
this.quantity = JSFloatType.opt(product.quantity())
this.unitPrice = JSFloatType.opt(product.unitPrice())
this.unitOfMeasure = JSStringType.opt(product.unitOfMeasure())
this.totalPrice = JSFloatType.opt(product.totalPrice())
description = JSStringType.opt(product.description())
quantity = JSFloatType.opt(product.quantity())
unitPrice = JSFloatType.opt(product.unitPrice())
unitOfMeasure = JSStringType.opt(product.unitOfMeasure())
totalPrice = JSFloatType.opt(product.totalPrice())
fullPrice = product.fullPrice()
line = product.line()
productName = product.productName()
Expand Down

0 comments on commit 3421958

Please sign in to comment.