Int_Prog/лаб3/lab3/public/scripts/helpers/configurateObject.js
2024-01-19 01:24:45 +04:00

7 lines
375 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

export function configurateObject(id, name, categoryId, price, formattedInfo, restaurantTypeId, photo = '') {
const obj = { name, categoryId, price, info: formattedInfo, restaurantTypeId, photo };
// Если id !== null, т.е. мы редактируем товар, то мы id в объекте указываем
if (id !== null) obj["id"] = id;
return obj;
};