fix prev commit

This commit is contained in:
vchikalkin 2025-06-26 14:08:46 +03:00
parent c5d4a2f782
commit b357571fea

View File

@ -66,7 +66,7 @@ export default {
const existingOrder = await strapi.db.query('api::order.order').findOne({ const existingOrder = await strapi.db.query('api::order.order').findOne({
where: { id: entityId }, where: { id: entityId },
select: ['documentId'], select: ['documentId', 'time_start', 'time_end'],
populate: ['slot'], populate: ['slot'],
}); });