Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 18 Next »

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",
    
  }
}

  • No labels