Compare commits
11 Commits
openSAP-we
...
openSAP-we
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
359bfebcac | ||
|
|
569546258d | ||
|
|
36981144d5 | ||
|
|
66e043294f | ||
|
|
6f79882c57 | ||
|
|
62c11dee1a | ||
|
|
7ef5034b3e | ||
|
|
a8dee62f25 | ||
|
|
85498a9875 | ||
|
|
19b09645db | ||
|
|
9861b05f2d |
@@ -11,7 +11,7 @@ In SAP Business Application Studio, open a terminal.
|
|||||||
Then clone the repo with this specific branch:
|
Then clone the repo with this specific branch:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
git clone https://github.com/sap-samples/cloud-cap-samples projects/cloud-cap-samples -b openSAP-week4-unit2-final
|
git clone https://github.com/sap-samples/cloud-cap-samples projects/cloud-cap-samples -b openSAP-week4-unit1-final
|
||||||
cd projects/cloud-cap-samples
|
cd projects/cloud-cap-samples
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
@@ -35,8 +35,8 @@ entity Authors : managed {
|
|||||||
|
|
||||||
entity Orders : cuid, managed {
|
entity Orders : cuid, managed {
|
||||||
OrderNo : String @title : 'Order Number'; //> readable key
|
OrderNo : String @title : 'Order Number'; //> readable key
|
||||||
status : Status default 'processing';
|
status : Status default 'processing';
|
||||||
Items : Composition of many OrderItems
|
Items : Composition of many OrderItems
|
||||||
on Items.parent = $self;
|
on Items.parent = $self;
|
||||||
total : Decimal(9, 2)@readonly;
|
total : Decimal(9, 2)@readonly;
|
||||||
currency : Currency;
|
currency : Currency;
|
||||||
|
|||||||
@@ -18,10 +18,7 @@
|
|||||||
"requires": {
|
"requires": {
|
||||||
"API_BUSINESS_PARTNER": {
|
"API_BUSINESS_PARTNER": {
|
||||||
"kind": "odata",
|
"kind": "odata",
|
||||||
"model": "srv/external/API_BUSINESS_PARTNER",
|
"model": "srv/external/API_BUSINESS_PARTNER"
|
||||||
"--credentials": {
|
|
||||||
"destination": "cap-api098"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
using { sap.capire.bookshop as my } from '../db/schema';
|
using { sap.capire.bookshop as my } from '../db/schema';
|
||||||
using { API_BUSINESS_PARTNER as external } from './external/API_BUSINESS_PARTNER.csn';
|
|
||||||
|
|
||||||
@path:'/browse'
|
@path:'/browse'
|
||||||
service CatalogService {
|
service CatalogService {
|
||||||
@@ -8,14 +7,6 @@ service CatalogService {
|
|||||||
author.name as author
|
author.name as author
|
||||||
} excluding { createdBy, modifiedBy };
|
} excluding { createdBy, modifiedBy };
|
||||||
|
|
||||||
@readonly entity BusinessPartners as projection on external.A_BusinessPartner {
|
|
||||||
key BusinessPartner as ID,
|
|
||||||
FirstName,
|
|
||||||
MiddleName,
|
|
||||||
LastName,
|
|
||||||
BusinessPartnerIsBlocked
|
|
||||||
};
|
|
||||||
|
|
||||||
@requires_: 'authenticated-user'
|
@requires_: 'authenticated-user'
|
||||||
@insertonly entity Orders as projection on my.Orders;
|
@insertonly entity Orders as projection on my.Orders;
|
||||||
|
|
||||||
|
|||||||
@@ -1,12 +1,10 @@
|
|||||||
const cds = require('@sap/cds')
|
const cds = require('@sap/cds')
|
||||||
|
|
||||||
/** Service implementation for CatalogService */
|
/** Service implementation for CatalogService */
|
||||||
module.exports = cds.service.impl(async function () {
|
module.exports = cds.service.impl(function () {
|
||||||
const { Books, Orders, BusinessPartners } = this.entities
|
const { Books, Orders } = this.entities
|
||||||
const bupaSrv = await cds.connect.to('API_BUSINESS_PARTNER')
|
|
||||||
this.after('READ', Books, each => each.stock > 111 && _addDiscount2(each, 11))
|
this.after('READ', Books, each => each.stock > 111 && _addDiscount2(each, 11))
|
||||||
this.before('CREATE', Orders, _reduceStock)
|
this.before('CREATE', Orders, _reduceStock)
|
||||||
this.on('READ', BusinessPartners, req => bupaSrv.tx(req).run(req.query))
|
|
||||||
|
|
||||||
/** Add some discount for overstocked books */
|
/** Add some discount for overstocked books */
|
||||||
function _addDiscount2(each, discount) {
|
function _addDiscount2(each, discount) {
|
||||||
|
|||||||
@@ -1,4 +0,0 @@
|
|||||||
BusinessPartner;FirstName;MiddleName;LastName;BusinessPartnerIsBlocked
|
|
||||||
ALICE;Alice;In;Wonderland;false
|
|
||||||
BOB;Bob;The;Builder;false
|
|
||||||
JABBA;Jabba;The;Hutt;true
|
|
||||||
|
Reference in New Issue
Block a user