Adjusted usage of Orders_Items

This commit is contained in:
Daniel
2020-11-21 00:40:24 +01:00
parent 108e886b52
commit f425a91c2d
3 changed files with 3 additions and 2 deletions

View File

@@ -1,2 +1,3 @@
# cds.requires.messaging.kind = file-based-messaging
cds.cdsc.severities.extend-for-generated = info
PORT = 4004

View File

@@ -19,7 +19,7 @@ extend Books with {
// Extend Orders with Books as Products
//
using { sap.capire.orders.OrderItems } from '@capire/orders';
extend OrderItems with {
using { sap.capire.orders.Orders_Items } from '@capire/orders';
extend Orders_Items with {
book : Association to Books on product.ID = book.ID
}