27 lines
849 B
JavaScript
27 lines
849 B
JavaScript
const cds = require('@sap/cds')
|
|
const { Books } = cds.entities ('sap.capire.bookshop')
|
|
|
|
class CatalogService extends cds.ApplicationService { init(){
|
|
|
|
// Reduce stock of ordered books if available stock suffices
|
|
this.on ('submitOrder', async req => {
|
|
const {book,quantity} = req.data
|
|
let {stock} = await SELECT `stock` .from (Books,book)
|
|
if (stock >= quantity) {
|
|
await UPDATE (Books,book) .with (`stock -=`, quantity)
|
|
await this.emit ('OrderedBook', { book, quantity, buyer:req.user.id })
|
|
return { stock }
|
|
}
|
|
else return req.error (409,`${quantity} exceeds stock for book #${book}`)
|
|
})
|
|
|
|
// Add some discount for overstocked books
|
|
this.after ('READ','ListOfBooks', each => {
|
|
if (each.stock > 111) each.title += ` -- 11% discount!`
|
|
})
|
|
|
|
return super.init()
|
|
}}
|
|
|
|
module.exports = { CatalogService }
|