Material flow - Data Collector GUI

Brief

An simple HTML/JavaScript app that can work offline in the browser and register transfers done on the production line. We assume that it will run on a mobile device with a decent browser and an attached bar coder scanner.

Mockup

Data from system

In the HTML file there should be a inline JSON object which will hold all the data from qcadoo MES required.

{
  "defaults" : {
    product: ...
    quantity: ...
    from: ...
    to: ...
    transferType: ...
  }
  "products" : {
    "OB-324" : {
      "name" : "Oak board 22x160"
    },
    ...
  }
  "warehouses" : {
    "W-1" : {
      name : "Stations 1"
    },
    ...
  }
  "transferTypes" : [ "transport", "consumption", ... ]
  locales : {
    "warehouse.transfer.type.value.transport" : "Transport",
    
  }
}