Fix: Save/Update voucher - timedelta was days instead of minutes

Fix: Product list for sale was sending product_version_id instead of version_id this was borking on products with multiple versions
Change: Update Product Prices initially does not show list. Only the date and Menu Category List
This commit is contained in:
2020-11-13 09:34:49 +05:30
parent 9317150bde
commit 67cb1e3d80
10 changed files with 44 additions and 22 deletions

View File

@ -10,4 +10,8 @@ export class MenuCategory {
sortOrder: number;
products: Product[];
enabled?: boolean;
public constructor(init?: Partial<MenuCategory>) {
Object.assign(this, init);
}
}