This commit is contained in:
D065023
2019-12-23 10:10:03 +01:00
parent 1f01bdf202
commit e16a343ce3
3 changed files with 104 additions and 85 deletions

View File

@@ -11,11 +11,17 @@ const { Books, Addresses } = db.entities // entities in local database
console.log(Addresses._service.name, Addresses._service)
module.exports = (admin => {
module.exports = admin => {
// Handler to delegate ValueHelp requests to S/4 backend, fetching current user's addresses from there
// admin.on ('READ', 'usersAddresses', (req) => { // REVISIT: all requests go to auto-exposed Addresses
admin.on ('READ', 'Addresses', (req) => {
return bupa.tx(req) .run (SELECT.from (externalAddresses) .where ({ contact: req.user.id || 'anonymous' }))
admin.on('READ', 'Addresses', req => {
return bupa
.tx(req)
.run(
SELECT.from(externalAddresses).where({
contact: req.user.id || 'anonymous'
})
)
// return bupa.tx(req) .read (externalAddresses) .where ({ contact: req.user.id || 'anonymous' }) //> FIXME: doesn't work !?!?
// const { SELECT } = cds.ql(req) //> convenient alternative to bupa.transaction(req).run(SELECT...)
// return SELECT.from (externalAddresses) .where ({ contact: req.user.id || 'anonymous' })
@@ -31,11 +37,10 @@ module.exports = (admin => {
// a.HouseNumber.as('houseNumber')
// }) .where ({ BusinessPartner: req.user.id })
})
})
}
// Replicate chosen addresses from S/4 when filing orders.
admin.before ('PATCH', 'Orders', async (req) => {
admin.before('PATCH', 'Orders', async req => {
// REVISIT: Investigate strange behavior when first assigning A then B ... together with Fiori colleagues
// const assigned = { ID: req.data.shippingAddress_ID, contact: req.data.shippingAddress_contact }
const assigned = { ID: req.data.shippingAddress_ID, contact: req.user.id }
@@ -46,7 +51,9 @@ admin.before ('PATCH', 'Orders', async (req) => {
if (replica) return //> already replicated
// const [address] = await bupa.read (externalAddresses) .where ({ //> FIXME -> das erzeugt ein super-komisches Verhalten, mit zweimal PATCH, etc. !!!
// const [address] = await bupa.tx(req) .read (externalAddresses) .where ({ //> FIXME !!!
const [address] = await bupa.tx(req) .run (SELECT.from (externalAddresses) .where (assigned))
const [address] = await bupa
.tx(req)
.run(SELECT.from(externalAddresses).where(assigned))
if (address) return local.create(Addresses).entries(address)
// const address = await SELECT.one.from (externalAddresses) .where ({ //> TODO
// FIXME: Zweimal INSERT -> constraint violation !!
@@ -54,9 +61,8 @@ admin.before ('PATCH', 'Orders', async (req) => {
// if (address) return UPSERT (Addresses) .entries (address) //> TODO
})
// Update local replicas when sources change in S/4.
bupa.on ('BusinessPartner/Changed', async (msg) => {
bupa.on('BusinessPartner/Changed', async msg => {
console.log('>> received:', msg.data)
const BPID = msg.data.KEY[0].BUSINESSPARTNER // TODO: .KEY[0] >> revisit w/ Oliver
@@ -68,7 +74,8 @@ bupa.on ('BusinessPartner/Changed', async (msg) => {
// fetch changed data from S/4 -> might be less than local due to deletes
const changed = await SELECT.from(externalAddresses).where({
contact:BPID, ID: replicas.map(a => a.ID) // where in
contact: BPID,
ID: replicas.map(a => a.ID) // where in
})
// update local replicas with changes from S/4
@@ -76,16 +83,15 @@ bupa.on ('BusinessPartner/Changed', async (msg) => {
return local.run(changed.map(a => UPDATE(Addresses, a.ID).with(a)))
})
// Validate incoming orders and reduce books' stocks.
admin.before ('CREATE', 'Orders', async (req) => {
admin.before('CREATE', 'Orders', async req => {
const { Items } = req.data
// validate input...
if (!Items || Items.length === 0)
return req.reject('Please order at least one item.')
if (!req.data.shippingAddress_ID) return req.reject (
if (!req.data.shippingAddress_ID)
return req.reject(
'Please enter a valid shipping address.',
'shippingAddress_ID'
)
@@ -96,13 +102,20 @@ admin.before ('CREATE', 'Orders', async (req) => {
// if (req.hasErrors) return
// reduce stock on ordered books...
const all = await db.tx(req) .run (Items.map (each =>
UPDATE (Books) .where ('ID =', each.book_ID)
const all = await db.tx(req).run(
Items.map(each =>
UPDATE(Books)
.where('ID =', each.book_ID)
.and('stock >=', each.amount)
.set('stock -=', each.amount)
))
all.forEach ((affectedRows,i) => affectedRows > 0 || req.error (409,
)
)
all.forEach(
(affectedRows, i) =>
affectedRows > 0 ||
req.error(
409,
`${Items[i].amount} exceeds stock for book #${Items[i].book_ID}`
))
)
)
})

View File

@@ -1,6 +1,5 @@
const cds = require('@sap/cds')
module.exports = cds.service.impl(async () => {
// We are mashing up three services...
const bupa = await cds.connect.to('API_BUSINESS_PARTNER')
const admin = await cds.connect.to('AdminService')
@@ -10,29 +9,30 @@ module.exports = cds.service.impl (async()=>{
const { Addresses: externalAddresses } = bupa.entities // projection on external addresses
const { Books, Addresses } = db.entities // entities in local database
// Delegate ValueHelp requests to S/4 backend, fetching current user's addresses from there
admin.on ('READ', 'Addresses', (req) => {
admin.on('READ', 'Addresses', req => {
console.log('Delegating to S/4 bupa service...')
const UsersAddresses = SELECT.from (externalAddresses) .where ({ contact: req.user.id })
const UsersAddresses = SELECT.from(externalAddresses).where({
contact: req.user.id
})
return bupa.tx(req).run(UsersAddresses.where(req.query.SELECT.where))
})
// Replicate chosen addresses from S/4 when filing orders.
admin.before ('PATCH', 'Orders', async (req) => {
admin.before('PATCH', 'Orders', async req => {
const assigned = { ID: req.data.shippingAddress_ID, contact: req.user.id }
if (!assigned.ID) return //> something else
const local = db.transaction(req)
const [replica] = await local.read(Addresses).where(assigned)
if (replica) return //> already replicated
const [address] = await bupa.tx(req) .run (SELECT.from (externalAddresses) .where (assigned))
const [address] = await bupa
.tx(req)
.run(SELECT.from(externalAddresses).where(assigned))
if (address) return local.create(Addresses).entries(address)
})
// Subscribe to S/4 event to update local replicas when sources change in S/4.
bupa.on ('BusinessPartner/Changed', async (msg) => {
bupa.on('BusinessPartner/Changed', async msg => {
console.log('>> received:', msg.data)
const BPID = msg.data.KEY[0].BUSINESSPARTNER // TODO: .KEY[0] >> revisit w/ Oliver
@@ -44,7 +44,8 @@ module.exports = cds.service.impl (async()=>{
// fetch changed data from S/4 -> might be less than local due to deletes
const changed = await SELECT.from(externalAddresses).where({
contact:BPID, ID: replicas.map(a => a.ID) // where in
contact: BPID,
ID: replicas.map(a => a.ID) // where in
})
// update local replicas with changes from S/4
@@ -52,31 +53,36 @@ module.exports = cds.service.impl (async()=>{
return local.run(changed.map(a => UPDATE(Addresses, a.ID).with(a)))
})
// Validate incoming orders and reduce books' stocks.
admin.before ('CREATE', 'Orders', async (req) => {
admin.before('CREATE', 'Orders', async req => {
const { Items } = req.data
// validate input...
if (!Items || Items.length === 0)
return req.reject('Please order at least one item.')
if (!req.data.shippingAddress_ID) return req.reject (
if (!req.data.shippingAddress_ID)
return req.reject(
'Please enter a valid shipping address.',
'shippingAddress_ID'
)
// reduce stock on ordered books...
const all = await db.tx(req) .run (Items.map (each =>
UPDATE (Books) .where ('ID =', each.book_ID)
const all = await db.tx(req).run(
Items.map(each =>
UPDATE(Books)
.where('ID =', each.book_ID)
.and('stock >=', each.amount)
.set('stock -=', each.amount)
))
all.forEach ((affectedRows,i) => affectedRows > 0 || req.error (409,
)
)
all.forEach(
(affectedRows, i) =>
affectedRows > 0 ||
req.error(
409,
`${Items[i].amount} exceeds stock for book #${Items[i].book_ID}`
))
)
)
})
})
require('./utils') // ugly workaround for AppStudio

View File

@@ -1,8 +1,8 @@
// Hack for SAP Application Studio
process.env["http_proxy"] = ""
process.env["https_proxy"] = ""
process.env["HTTP_PROXY"] = ""
process.env["HTTPS_PROXY"] = ""
process.env['http_proxy'] = ''
process.env['https_proxy'] = ''
process.env['HTTP_PROXY'] = ''
process.env['HTTPS_PROXY'] = ''
const diff = (obj1, obj2) =>
Object.keys(obj1).reduce(