Archived
1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
kfet/sockets/listCommand.js

21 lines
625 B
JavaScript
Raw Normal View History

2020-05-29 19:44:12 +02:00
const models = require("../models")
2020-05-29 21:56:35 +02:00
const utils = require("./utils")
2020-05-29 19:44:12 +02:00
module.exports = socket => {
return async () => {
let commands = []
for (let c of await models.Command.findAll({
where: {
date: {
[models.Sequelize.Op.eq]: new Date()
}
},
order: ["number"],
include: [models.Dish, models.Ingredient, models.Sauce, models.Drink, models.Dessert, "client", "pc", "sandwich"]
})) {
2020-05-29 21:56:35 +02:00
commands.push(utils.commandExport(c));
2020-05-29 19:44:12 +02:00
}
socket.emit("list command", commands);
}
}