Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

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

Mockup
Gliffy
collector GUI
collector GUI
11

Workflow

collector workflow
nameVersion2
Namecollector GUI

Data from system

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

Code Block
javascript
javascript
{
  "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",
    
  }
}