Feature: Recipe module mostly working. What needs to be done is duplicating recipes and export for checking.
Feature: Non Contract Purchases Report
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
import { ProductSku } from '../core/product-sku';
|
||||
|
||||
export class RecipeItem {
|
||||
id: string | undefined;
|
||||
product: ProductSku;
|
||||
quantity: number;
|
||||
price: number;
|
||||
|
||||
public constructor(init?: Partial<RecipeItem>) {
|
||||
this.product = new ProductSku();
|
||||
this.quantity = 0;
|
||||
this.price = 0;
|
||||
Object.assign(this, init);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user