$scope.getProductType = function (inventoryLine) {
        return (toString.call(inventoryLine.batch) === '[object Object]')
            ? inventoryLine.batch.product : inventoryLine.product_type;
      }