Adds decoration for admin endpoints
This commit is contained in:
@@ -3,11 +3,12 @@ export default async (req, res) => {
|
||||
try {
|
||||
const customerService = req.scope.resolve("customerService")
|
||||
let customer = await customerService.retrieve(id)
|
||||
customer = customerService.decorate(customer, [
|
||||
"email",
|
||||
"first_name",
|
||||
"last_name",
|
||||
])
|
||||
customer = await customerService.decorate(
|
||||
customer,
|
||||
["email", "payment_methods", "has_account", "shipping_addresses"],
|
||||
["orders"]
|
||||
)
|
||||
|
||||
res.json({ customer })
|
||||
} catch (err) {
|
||||
throw err
|
||||
|
||||
@@ -3,9 +3,14 @@ export default async (req, res) => {
|
||||
|
||||
try {
|
||||
const orderService = req.scope.resolve("orderService")
|
||||
const customerService = req.scope.resolve("customerService")
|
||||
|
||||
let order = await orderService.retrieve(id)
|
||||
order = await orderService.decorate(order, [], ["region"])
|
||||
order = await orderService.decorate(order, [], ["region", "customer"])
|
||||
|
||||
if (order.customer_id) {
|
||||
order.customer = await customerService.retrieve(order.customer_id)
|
||||
}
|
||||
|
||||
res.json({ order })
|
||||
} catch (error) {
|
||||
|
||||
@@ -5,7 +5,13 @@ export default async (req, res) => {
|
||||
|
||||
const data = await profileService.retrieve(profile_id)
|
||||
|
||||
res.status(200).json({ shipping_profile: data })
|
||||
const profile = await profileService.decorate(
|
||||
data,
|
||||
["name"],
|
||||
["products", "shipping_options"]
|
||||
)
|
||||
|
||||
res.status(200).json({ shipping_profile: profile })
|
||||
} catch (err) {
|
||||
throw err
|
||||
}
|
||||
|
||||
@@ -333,13 +333,13 @@ class ShippingProfileService extends BaseService {
|
||||
const requiredFields = ["_id", "metadata"]
|
||||
let decorated = _.pick(profile, fields.concat(requiredFields))
|
||||
|
||||
if (expandFields.includes("products")) {
|
||||
if (expandFields.includes("products") && profile.products) {
|
||||
decorated.products = await Promise.all(
|
||||
profile.products.map(pId => this.productService_.retrieve(pId))
|
||||
)
|
||||
}
|
||||
|
||||
if (expandFields.includes("shipping_options")) {
|
||||
if (expandFields.includes("shipping_options") && profile.shipping_options) {
|
||||
decorated.shipping_options = await Promise.all(
|
||||
profile.shipping_options.map(oId =>
|
||||
this.shippingOptionService_.retrieve(oId)
|
||||
|
||||
Reference in New Issue
Block a user