Benefiting from cds.context
This commit is contained in:
@@ -7,6 +7,6 @@ module.exports = cds.service.impl (function(){
|
||||
|
||||
/** Generate primary keys for target entity in request */
|
||||
async function genid (req) {
|
||||
const {ID} = await cds.tx(req).run (SELECT.one.from(req.target).columns('max(ID) as ID'))
|
||||
const {ID} = await SELECT.one.from(req.target).columns('max(ID) as ID')
|
||||
req.data.ID = ID - ID % 100 + 100 + 1
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user