Notes
This is the image for the error that i'm getting in simulator https://www.dropbox.com/s/wmcs1dva3y5ihef/Screenshot%202016-06-15%2013.45.28.png?dl=0
The Error reads:
Super expression must either be null or a function, not undefined
$ -> | |
$.get '/lol/get_data', (data) -> | |
load_chart = new Highcharts.Chart | |
chart: | |
renderTo: 'graph' | |
defaultSeriesType: 'line' | |
title: | |
text: 'Per Diem' | |
xAxis: | |
title: 'Time' |
require 'pry' | |
require 'net/http' | |
#require 'rexml/document' | |
#include REXML | |
class SamlSend | |
def initialize | |
end |
My current understanding of the process.. | |
- 1 upload excel | |
- 2 hrflow creates form collector and a set of participant flows | |
- 3 form collector sends emails to participants with a link to the appropriate HRFORM | |
- upon completion of the partiicpant form, HRForms uses the completionURL to let us know | |
- if they have a spouse (unsure from the weird payload how this is deteremined, marriage status etc), we should send an email to the spouse with another HRForm url | |
- JOSH: (we should get this from marriage status - I was checking for spouse email I think?) | |
- upon that completion we'll receive another post to our submitform endpoint and fetch the data again and send the event along to the participant flow. | |
- eventually we want the participant fsm to complete with a signed boolean, unsure when this is determined as from the code this is assumed to happen. | |
- JOSH: This happens when we get their data back at all at present, if there is no spouse. if there is a spouse, this happens when we get the spouse's |
Notes
This is the image for the error that i'm getting in simulator https://www.dropbox.com/s/wmcs1dva3y5ihef/Screenshot%202016-06-15%2013.45.28.png?dl=0
The Error reads:
Super expression must either be null or a function, not undefined
module Main exposing (..) | |
import Html.App as App | |
import Html exposing (Html, text) | |
import Dict exposing (Dict) | |
type alias Model = | |
() |