Store products in a basket, display list of products in basket
This commit is contained in:
5
software/src/scripts/productScripts.ts
Normal file
5
software/src/scripts/productScripts.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
import { ProductModel } from "@/data/models/productModel";
|
||||
|
||||
export function calcProductPrice(product: ProductModel): number {
|
||||
return Math.round(product.price * ((100 - product.discount) / 100) * 100) / 100
|
||||
}
|
||||
Reference in New Issue
Block a user