{"version":3,"names":[],"mappings":"","sources":["my-order/my-order-factory.js"],"sourcesContent":["(function() {\r\n 'use strict';\r\n\r\n /**\r\n * @ngdoc service\r\n * @name myOrder.factory:MyOrder\r\n *\r\n * @description\r\n *\r\n */\r\n angular\r\n .module('myOrder')\r\n .factory('MyOrder', MyOrder);\r\n\r\n function MyOrder($rootScope, $http, consts) {\r\n var MyOrderBase = {};\r\n MyOrderBase.order = {\r\n items: [],\r\n totalPrice: 0\r\n };\r\n\r\n MyOrderBase.totalItems = 0;\r\n\r\n var createNewOrder = function(){\r\n MyOrderBase.order = {\r\n items: [],\r\n totalPrice: 0\r\n };\r\n MyOrderBase.totalItems = 0;\r\n }\r\n\r\n var createServerOrderObject = function(order) {\r\n var serverOrder = {\r\n Payment: order.payment,\r\n IsDelivery: order.orderType == \"delivery\",\r\n IsFutureOrder: order.orderTypeTime == \"future\",\r\n BranchId: order.branch.Id,\r\n OrderItems: [],\r\n OrderPizzas: [],\r\n OrderCombos: []\r\n };\r\n order.items.forEach(function(item) {\r\n if (item.Type == \"pizza\") {\r\n var serverPizza = {\r\n PizzaId: item.Id,\r\n Amount: item.amount,\r\n Toppings: [],\r\n SizeId: item.pizzaPrice.PizzaSizeId,\r\n SpecialRequests: item.requests\r\n }\r\n if (item.toppings != undefined) {\r\n item.toppings.forEach(function(top) {\r\n serverPizza.Toppings.push({\r\n ToppingId: top.toppingId,\r\n Quarter1: top.quarterNums.indexOf(1) != -1,\r\n Quarter2: top.quarterNums.indexOf(2) != -1,\r\n Quarter3: top.quarterNums.indexOf(3) != -1,\r\n Quarter4: top.quarterNums.indexOf(4) != -1\r\n });\r\n });\r\n }\r\n serverOrder.OrderPizzas.push(serverPizza);\r\n } else if (item.Type == \"item\") {\r\n var serverItem = {\r\n ItemId: item.Id,\r\n Amount: item.amount,\r\n Garnishes: item.toppings,\r\n SpecialRequests: item.requests\r\n }\r\n serverOrder.OrderItems.push(serverItem);\r\n } else if (item.Type == \"combo\") {\r\n var serverCombo = {\r\n ComboId: item.Id,\r\n Amount: item.amount,\r\n Name: item.Name,\r\n Items: [],\r\n Pizzas: []\r\n }\r\n if (item.Pizzas) {\r\n //Combo pizzas\r\n item.Pizzas.forEach(function(comboPizza) {\r\n comboPizza.items.forEach(function(item) {\r\n var serverPizza = {\r\n PizzaId: item.Id,\r\n Amount: item.amount == 0 ? 1 : item.amount,\r\n Toppings: [],\r\n SizeId: item.pizzaPrice ? item.pizzaPrice.PizzaSizeId : null,\r\n SpecialRequests: item.requests,\r\n ComboPizzaId: item.comboPizzaId\r\n }\r\n if (item.toppings != undefined) {\r\n item.toppings.forEach(function(top) {\r\n serverPizza.Toppings.push({\r\n ToppingId: top.toppingId,\r\n Quarter1: top.quarterNums.indexOf(1) != -1,\r\n Quarter2: top.quarterNums.indexOf(2) != -1,\r\n Quarter3: top.quarterNums.indexOf(3) != -1,\r\n Quarter4: top.quarterNums.indexOf(4) != -1\r\n });\r\n });\r\n }\r\n serverCombo.Pizzas.push(serverPizza);\r\n })\r\n })\r\n }\r\n if (item.Items) {\r\n //Combo items\r\n item.Items.forEach(function(comboItem) {\r\n comboItem.items.forEach(function(item) {\r\n var serverItem = {\r\n ItemId: item.Id,\r\n Amount: item.amount == 0 ? 1 : item.amount,\r\n Garnishes: item.toppings,\r\n SpecialRequests: item.requests,\r\n ComboItemId: item.comboItemId\r\n }\r\n serverCombo.Items.push(serverItem);\r\n })\r\n })\r\n }\r\n serverOrder.OrderCombos.push(serverCombo);\r\n }\r\n })\r\n return serverOrder;\r\n }\r\n\r\n\r\n\r\n MyOrderBase.getItemsInOrderCount = function(){\r\n return MyOrderBase.totalItems;\r\n }\r\n\r\n MyOrderBase.addItemToOrder = function(item) {\r\n\r\n if (MyOrderBase.order.ordered) {\r\n createNewOrder();\r\n }\r\n\r\n item.Type = \"item\";\r\n MyOrderBase.order.items.push(item);\r\n if (item.amount == undefined) item.amount = 1;\r\n MyOrderBase.totalItems += item.amount;\r\n $rootScope.$broadcast(\"itemAddedToOrder\", MyOrderBase.totalItems);\r\n\r\n if (item.type == \"pizza\") {\r\n var price = item.pizzaPrice.Price;\r\n }\r\n\r\n MyOrderBase.order.totalPrice += item.Price * item.amount;\r\n };\r\n\r\n MyOrderBase.addPizzaToOrder = function(item) {\r\n\r\n if (MyOrderBase.order.ordered) {\r\n createNewOrder();\r\n }\r\n\r\n item.Type = \"pizza\";\r\n MyOrderBase.order.items.push(item);\r\n if (item.amount == undefined) item.amount = 1;\r\n MyOrderBase.totalItems += item.amount;\r\n $rootScope.$broadcast(\"itemAddedToOrder\", MyOrderBase.totalItems);\r\n\r\n var price = item.pizzaPrice.Price;\r\n item.toppings.forEach(function(top) {\r\n if (top.totalPrice != undefined) price += top.totalPrice;\r\n });\r\n item.Price = price;\r\n MyOrderBase.order.totalPrice += item.Price * item.amount;\r\n };\r\n\r\n\r\n MyOrderBase.addComboToOrder = function(combo, pizzas, items) {\r\n\r\n if (MyOrderBase.order.ordered) {\r\n createNewOrder();\r\n }\r\n\r\n var comboExtraPrice = 0;\r\n MyOrderBase.order.totalPrice += combo.Price;\r\n //Check items toppings\r\n combo.ItemCombos.forEach(function(itemCombo, index) {\r\n for (var i = 0; i < itemCombo.Quantity; i++) {\r\n var currentItem = items[index].items[i];\r\n var garnishedOrderedByPrice = _.orderBy(currentItem.toppings, function(e) {\r\n return -1 * e.Price\r\n })\r\n if (currentItem.toppings != undefined) {\r\n for (var j = 0; j < currentItem.toppings.length; j++) {\r\n if (j < itemCombo.MaxGarnishes) {\r\n garnishedOrderedByPrice[j].Price = 0\r\n } else {\r\n MyOrderBase.order.totalPrice += garnishedOrderedByPrice[j].Price;\r\n comboExtraPrice += garnishedOrderedByPrice[j].Price;\r\n }\r\n }\r\n }\r\n }\r\n })\r\n\r\n //Check pizzas toppings\r\n combo.PizzaCombos.forEach(function(pizzaCombo, index) {\r\n for (var i = 0; i < pizzaCombo.Quantity; i++) {\r\n var currentPizza = pizzas[index].items[i];\r\n var toppingsOrderedByPrice = _.orderBy(currentPizza.toppings, function(e) {\r\n return -1 * e.quarterPrice\r\n })\r\n\r\n var toppingsTotalCount = 0;\r\n if (currentPizza.toppings != undefined) {\r\n for (var j = 0; j < currentPizza.toppings.length; j++) {\r\n for (var quarter = 1; quarter <= currentPizza.toppings[j].quarterNums.length; quarter++) {\r\n toppingsTotalCount += 0.25;\r\n if (toppingsTotalCount <= pizzaCombo.MaxToppings) {\r\n toppingsOrderedByPrice[j].totalPrice -= toppingsOrderedByPrice[j].quarterPrice;\r\n } else {\r\n MyOrderBase.order.totalPrice += toppingsOrderedByPrice[j].quarterPrice;\r\n comboExtraPrice += toppingsOrderedByPrice[j].quarterPrice;\r\n }\r\n }\r\n }\r\n }\r\n }\r\n });\r\n\r\n var myCombo = {\r\n Id: combo.Id,\r\n Name: combo.Name,\r\n Pizzas: pizzas,\r\n Items: items,\r\n Type: 'combo',\r\n Price: combo.Price,\r\n amount: 1,\r\n comboExtraPrice: comboExtraPrice\r\n }\r\n MyOrderBase.order.items.push(myCombo);\r\n MyOrderBase.totalItems += 1;\r\n $rootScope.$broadcast(\"itemAddedToOrder\", MyOrderBase.totalItems);\r\n }\r\n\r\n MyOrderBase.getOrder = function(item) {\r\n return MyOrderBase.order;\r\n };\r\n\r\n MyOrderBase.getTotalOrderPrice = function() {\r\n return MyOrderBase.order.totalPrice;\r\n }\r\n\r\n MyOrderBase.removeItemFromOrder = function(item, index) {\r\n MyOrderBase.order.items.splice(index, 1);\r\n MyOrderBase.order.totalPrice -= item.Price * item.amount;\r\n if (item.Type == 'combo') {\r\n MyOrderBase.order.totalPrice -= item.comboExtraPrice * item.amount;\r\n }\r\n MyOrderBase.totalItems -= item.amount;\r\n $rootScope.$broadcast(\"itemAddedToOrder\", MyOrderBase.totalItems);\r\n }\r\n\r\n MyOrderBase.addItemAmount = function(index) {\r\n MyOrderBase.order.items[index].amount++;\r\n MyOrderBase.order.totalPrice += MyOrderBase.order.items[index].Price;\r\n if (MyOrderBase.order.items[index].Type == 'combo') {\r\n MyOrderBase.order.totalPrice += MyOrderBase.order.items[index].comboExtraPrice;\r\n }\r\n MyOrderBase.totalItems += 1;\r\n $rootScope.$broadcast(\"itemAddedToOrder\", MyOrderBase.totalItems);\r\n }\r\n\r\n MyOrderBase.subItemAmount = function(index) {\r\n MyOrderBase.order.items[index].amount--;\r\n MyOrderBase.order.totalPrice -= MyOrderBase.order.items[index].Price;\r\n if (MyOrderBase.order.items[index].Type == 'combo') {\r\n MyOrderBase.order.totalPrice -= MyOrderBase.order.items[index].comboExtraPrice;\r\n }\r\n MyOrderBase.totalItems -= 1;\r\n $rootScope.$broadcast(\"itemAddedToOrder\", MyOrderBase.totalItems);\r\n }\r\n\r\n MyOrderBase.paymentRequest = function(order, loginToken, tranzilaToken, cardExpiration, user) {\r\n var serverOrder = createServerOrderObject(order);\r\n order.FirstName = user.FirstName;\r\n order.LastName = user.LastName;\r\n order.Phone = user.Phone;\r\n order.ExtraPhone = user.extraPhone;\r\n order.Address = user.Address;\r\n order.Comments = user.comments;\r\n\r\n return $http({\r\n method: \"post\",\r\n url: consts.serverUrl + \"Payment/PaymentRequest\",\r\n data: {\r\n order: serverOrder,\r\n userLoginToken: loginToken,\r\n tranzilaToken: tranzilaToken,\r\n cardExpiration: cardExpiration\r\n }\r\n });\r\n }\r\n\r\n\r\n\r\n return MyOrderBase;\r\n }\r\n}());\r\n"],"file":"my-order-factory.js"}