rollback change in master

This commit is contained in:
Matthias Bühl
2020-01-27 15:33:14 +01:00
parent 26e3c0d753
commit b4084b45cb

View File

@@ -4,7 +4,6 @@ const { Books } = cds.entities
/** Service implementation for CatalogService */
module.exports = cds.service.impl(function() {
this.after ('READ', 'Books', each => each.stock > 111 && _addDiscount2(each,11))
this.before ('CREATE', 'Orders', _checkOrderCreateAuth)
this.before ('CREATE', 'Orders', _reduceStock)
})
@@ -24,8 +23,4 @@ async function _reduceStock (req) {
`${OrderItems[i].amount} exceeds stock for book #${OrderItems[i].book_ID}`
)
}))
}
/** Check authorization */
function _checkOrderCreateAuth (req) {
req.user.country === req.data.country || req.reject(403)
}