<%~ E.includeFile("../../partials/head.eta.html", {"title": "Importer - JSON" }) %> <%~ E.includeFile("../../partials/controls.eta.html", {"active": "SETT_IMPORT_JSON" }) %>

JSON Import

Upload a JSON file to import into the database. The JSON file must have the following columns: The following columns are optional: It should be formated as a list of objects, like this:
[
	{
		"name": "Item 1",
		"amount": 1,
		"manufacturer": "Manufacturer 1",
		"category": "Category 1",
		"sku": "SKU 1",
		"comment": "Comment 1"
	},
	{
		"name": "Item 2",
		"amount": 2,
		"manufacturer": "Manufacturer 2",
		"category": "Category 2",
		"sku": "SKU 2",
		"comment": "Comment 2"
	}
]

<%~ E.includeFile("../../partials/controlsFoot.eta.html") %> <%~ E.includeFile("../../partials/foot.eta.html") %>