27 lines
645 B
Plaintext
27 lines
645 B
Plaintext
////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Mashing up imported models...
|
|
//
|
|
|
|
using { sap.capire.bookshop.Books } from '@capire/bookshop';
|
|
|
|
//
|
|
// Extend Books with access to Reviews and average ratings
|
|
//
|
|
|
|
using { ReviewsService.Reviews } from '@capire/reviews';
|
|
extend Books with {
|
|
reviews : Composition of many Reviews on reviews.subject = $self.ID;
|
|
numberOfReviews : Integer;
|
|
rating : Decimal;
|
|
}
|
|
|
|
//
|
|
// Extend Orders with Books as Products
|
|
//
|
|
|
|
using { sap.capire.orders.Orders_Items } from '@capire/orders';
|
|
extend Orders_Items with {
|
|
book : Association to Books on product.ID = book.ID
|
|
}
|