0 ORDER BY name
]]>
0)
{
for(var i = 0; i < coffeesArray.length; i++)
{
if(items.data(i, 0, 32).value == '')
{
continue;
}
if(items.data(i, 1, 0).value == '')
{
continue;
}
query.bind(":item", items.data(i, 0, 32).value);
query.bind(":quantity", convertToPounds(items.data(i, 1, 0).value, unitBox.currentText));
query.exec();
}
}
query = query.invalidate();
window.close();
});
]]>