...
This commit is contained in:
@@ -19,7 +19,7 @@ extend Books with {
|
||||
// Extend Orders with Books as Products
|
||||
//
|
||||
|
||||
using { sap.capire.orders.Orders_Items } from '@capire/orders';
|
||||
extend Orders_Items with {
|
||||
using { sap.capire.orders.Orders } from '@capire/orders';
|
||||
extend Orders.Items with {
|
||||
book : Association to Books on product.ID = book.ID
|
||||
}
|
||||
|
||||
@@ -11,6 +11,7 @@
|
||||
|
||||
|
||||
using { OrdersService } from '../../srv/orders-service';
|
||||
using { sap.common } from '@capire/common';
|
||||
|
||||
|
||||
@odata.draft.enabled
|
||||
@@ -77,13 +78,22 @@ annotate OrdersService.Orders.Items with @(
|
||||
{Value: amount, Label:'Quantity'},
|
||||
],
|
||||
Identification: [ //Is the main field group
|
||||
{Value: product_ID, Label:'Product ID'},
|
||||
{Value: title, Label:'Product Title'},
|
||||
{Value: amount, Label:'Amount'},
|
||||
{Value: title, Label:'Product'},
|
||||
{Value: price, Label:'Unit Price'},
|
||||
],
|
||||
Facets: [
|
||||
{$Type: 'UI.ReferenceFacet', Label: '{i18n>OrderItems}', Target: '@UI.Identification'},
|
||||
],
|
||||
HeaderInfo: {
|
||||
TypeName: 'Order Item', TypeNamePlural: 'Order Items',
|
||||
Title: {
|
||||
Label: 'Product ID ', //A label is possible but it is not considered on the ObjectPage yet
|
||||
Value: product_ID
|
||||
},
|
||||
Description: {Value: createdBy}
|
||||
},
|
||||
},
|
||||
) {
|
||||
amount @(
|
||||
|
||||
@@ -11,7 +11,7 @@ entity Orders : cuid, managed {
|
||||
entity Orders.Items {
|
||||
key ID : UUID;
|
||||
/*key*/ up_ : Association to Orders; // REVISIT: 'key' doesn't work due to bug in runtime
|
||||
product : Association to Products @assert.integrity:false; // REVISIT: this is a temporary workaround for a glitch in cds-runtime
|
||||
product : Association to Products;
|
||||
amount : Integer;
|
||||
title : String; //> intentionally replicated as snapshot from product.title or alike
|
||||
price : Double;
|
||||
@@ -21,7 +21,3 @@ entity Orders.Items {
|
||||
entity Products @(cds.persistence.skip:'always') {
|
||||
key ID : String;
|
||||
}
|
||||
|
||||
|
||||
// REVISIT: below is a workaround for a GAP in Fiori elements, which crashes for proxies
|
||||
// annotate Products with @cds.autoexpose;
|
||||
473
orders/o-v4.edmx
473
orders/o-v4.edmx
@@ -1,473 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<edmx:Edmx Version="4.0" xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx">
|
||||
<edmx:Reference Uri="https://sap.github.io/odata-vocabularies/vocabularies/Common.xml">
|
||||
<edmx:Include Alias="Common" Namespace="com.sap.vocabularies.Common.v1"/>
|
||||
</edmx:Reference>
|
||||
<edmx:Reference Uri="https://oasis-tcs.github.io/odata-vocabularies/vocabularies/Org.OData.Core.V1.xml">
|
||||
<edmx:Include Alias="Core" Namespace="Org.OData.Core.V1"/>
|
||||
</edmx:Reference>
|
||||
<edmx:Reference Uri="https://sap.github.io/odata-vocabularies/vocabularies/UI.xml">
|
||||
<edmx:Include Alias="UI" Namespace="com.sap.vocabularies.UI.v1"/>
|
||||
</edmx:Reference>
|
||||
<edmx:DataServices>
|
||||
<Schema Namespace="OrdersService" xmlns="http://docs.oasis-open.org/odata/ns/edm">
|
||||
<EntityContainer Name="EntityContainer">
|
||||
<EntitySet Name="Orders" EntityType="OrdersService.Orders">
|
||||
<NavigationPropertyBinding Path="Items" Target="Orders_Items"/>
|
||||
<NavigationPropertyBinding Path="currency" Target="Currencies"/>
|
||||
<NavigationPropertyBinding Path="SiblingEntity" Target="Orders"/>
|
||||
</EntitySet>
|
||||
<EntitySet Name="Products" EntityType="OrdersService.Products"/>
|
||||
<EntitySet Name="Currencies" EntityType="OrdersService.Currencies">
|
||||
<NavigationPropertyBinding Path="texts" Target="Currencies_texts"/>
|
||||
<NavigationPropertyBinding Path="localized" Target="Currencies_texts"/>
|
||||
</EntitySet>
|
||||
<EntitySet Name="Orders_Items" EntityType="OrdersService.Orders_Items">
|
||||
<NavigationPropertyBinding Path="up_" Target="Orders"/>
|
||||
<NavigationPropertyBinding Path="product" Target="Products"/>
|
||||
<NavigationPropertyBinding Path="SiblingEntity" Target="Orders_Items"/>
|
||||
</EntitySet>
|
||||
<EntitySet Name="Currencies_texts" EntityType="OrdersService.Currencies_texts"/>
|
||||
</EntityContainer>
|
||||
<EntityType Name="Orders">
|
||||
<Key>
|
||||
<PropertyRef Name="ID"/>
|
||||
<PropertyRef Name="IsActiveEntity"/>
|
||||
</Key>
|
||||
<Property Name="ID" Type="Edm.Guid" Nullable="false"/>
|
||||
<Property Name="createdAt" Type="Edm.DateTimeOffset" Precision="7"/>
|
||||
<Property Name="createdBy" Type="Edm.String" MaxLength="255"/>
|
||||
<Property Name="modifiedAt" Type="Edm.DateTimeOffset" Precision="7"/>
|
||||
<Property Name="modifiedBy" Type="Edm.String" MaxLength="255"/>
|
||||
<Property Name="OrderNo" Type="Edm.String"/>
|
||||
<NavigationProperty Name="Items" Type="Collection(OrdersService.Orders_Items)" Partner="up_">
|
||||
<OnDelete Action="Cascade"/>
|
||||
</NavigationProperty>
|
||||
<Property Name="buyer" Type="Edm.String" MaxLength="255"/>
|
||||
<NavigationProperty Name="currency" Type="OrdersService.Currencies">
|
||||
<ReferentialConstraint Property="currency_code" ReferencedProperty="code"/>
|
||||
</NavigationProperty>
|
||||
<Property Name="currency_code" Type="Edm.String" MaxLength="3"/>
|
||||
<Property Name="IsActiveEntity" Type="Edm.Boolean" Nullable="false" DefaultValue="true"/>
|
||||
<Property Name="HasActiveEntity" Type="Edm.Boolean" Nullable="false" DefaultValue="false"/>
|
||||
<Property Name="HasDraftEntity" Type="Edm.Boolean" Nullable="false" DefaultValue="false"/>
|
||||
<NavigationProperty Name="DraftAdministrativeData" Type="OrdersService.DraftAdministrativeData" ContainsTarget="true"/>
|
||||
<NavigationProperty Name="SiblingEntity" Type="OrdersService.Orders"/>
|
||||
</EntityType>
|
||||
<EntityType Name="Products">
|
||||
<Key>
|
||||
<PropertyRef Name="ID"/>
|
||||
</Key>
|
||||
<Property Name="ID" Type="Edm.String" Nullable="false"/>
|
||||
</EntityType>
|
||||
<EntityType Name="Currencies">
|
||||
<Key>
|
||||
<PropertyRef Name="code"/>
|
||||
</Key>
|
||||
<Property Name="name" Type="Edm.String" MaxLength="255"/>
|
||||
<Property Name="descr" Type="Edm.String" MaxLength="1000"/>
|
||||
<Property Name="code" Type="Edm.String" MaxLength="3" Nullable="false"/>
|
||||
<Property Name="symbol" Type="Edm.String" MaxLength="5"/>
|
||||
<NavigationProperty Name="texts" Type="Collection(OrdersService.Currencies_texts)">
|
||||
<OnDelete Action="Cascade"/>
|
||||
</NavigationProperty>
|
||||
<NavigationProperty Name="localized" Type="OrdersService.Currencies_texts">
|
||||
<ReferentialConstraint Property="code" ReferencedProperty="code"/>
|
||||
</NavigationProperty>
|
||||
</EntityType>
|
||||
<EntityType Name="DraftAdministrativeData">
|
||||
<Key>
|
||||
<PropertyRef Name="DraftUUID"/>
|
||||
</Key>
|
||||
<Property Name="DraftUUID" Type="Edm.Guid" Nullable="false"/>
|
||||
<Property Name="CreationDateTime" Type="Edm.DateTimeOffset" Precision="7"/>
|
||||
<Property Name="CreatedByUser" Type="Edm.String" MaxLength="256"/>
|
||||
<Property Name="DraftIsCreatedByMe" Type="Edm.Boolean"/>
|
||||
<Property Name="LastChangeDateTime" Type="Edm.DateTimeOffset" Precision="7"/>
|
||||
<Property Name="LastChangedByUser" Type="Edm.String" MaxLength="256"/>
|
||||
<Property Name="InProcessByUser" Type="Edm.String" MaxLength="256"/>
|
||||
<Property Name="DraftIsProcessedByMe" Type="Edm.Boolean"/>
|
||||
</EntityType>
|
||||
<EntityType Name="Orders_Items">
|
||||
<Key>
|
||||
<PropertyRef Name="ID"/>
|
||||
<PropertyRef Name="up__ID"/>
|
||||
<PropertyRef Name="IsActiveEntity"/>
|
||||
</Key>
|
||||
<Property Name="ID" Type="Edm.Guid" Nullable="false"/>
|
||||
<NavigationProperty Name="up_" Type="OrdersService.Orders" Partner="Items">
|
||||
<ReferentialConstraint Property="up__ID" ReferencedProperty="ID"/>
|
||||
</NavigationProperty>
|
||||
<Property Name="up__ID" Type="Edm.Guid" Nullable="false"/>
|
||||
<NavigationProperty Name="product" Type="OrdersService.Products">
|
||||
<ReferentialConstraint Property="product_ID" ReferencedProperty="ID"/>
|
||||
</NavigationProperty>
|
||||
<Property Name="product_ID" Type="Edm.String"/>
|
||||
<Property Name="amount" Type="Edm.Int32"/>
|
||||
<Property Name="title" Type="Edm.String"/>
|
||||
<Property Name="price" Type="Edm.Double"/>
|
||||
<Property Name="IsActiveEntity" Type="Edm.Boolean" Nullable="false" DefaultValue="true"/>
|
||||
<Property Name="HasActiveEntity" Type="Edm.Boolean" Nullable="false" DefaultValue="false"/>
|
||||
<Property Name="HasDraftEntity" Type="Edm.Boolean" Nullable="false" DefaultValue="false"/>
|
||||
<NavigationProperty Name="DraftAdministrativeData" Type="OrdersService.DraftAdministrativeData" ContainsTarget="true"/>
|
||||
<NavigationProperty Name="SiblingEntity" Type="OrdersService.Orders_Items"/>
|
||||
</EntityType>
|
||||
<EntityType Name="Currencies_texts">
|
||||
<Key>
|
||||
<PropertyRef Name="locale"/>
|
||||
<PropertyRef Name="code"/>
|
||||
</Key>
|
||||
<Property Name="locale" Type="Edm.String" MaxLength="14" Nullable="false"/>
|
||||
<Property Name="name" Type="Edm.String" MaxLength="255"/>
|
||||
<Property Name="descr" Type="Edm.String" MaxLength="1000"/>
|
||||
<Property Name="code" Type="Edm.String" MaxLength="3" Nullable="false"/>
|
||||
</EntityType>
|
||||
<Action Name="draftPrepare" IsBound="true" EntitySetPath="in">
|
||||
<Parameter Name="in" Type="OrdersService.Orders"/>
|
||||
<Parameter Name="SideEffectsQualifier" Type="Edm.String"/>
|
||||
<ReturnType Type="OrdersService.Orders"/>
|
||||
</Action>
|
||||
<Action Name="draftPrepare" IsBound="true" EntitySetPath="in">
|
||||
<Parameter Name="in" Type="OrdersService.Orders_Items"/>
|
||||
<Parameter Name="SideEffectsQualifier" Type="Edm.String"/>
|
||||
<ReturnType Type="OrdersService.Orders_Items"/>
|
||||
</Action>
|
||||
<Action Name="draftActivate" IsBound="true" EntitySetPath="in">
|
||||
<Parameter Name="in" Type="OrdersService.Orders"/>
|
||||
<ReturnType Type="OrdersService.Orders"/>
|
||||
</Action>
|
||||
<Action Name="draftEdit" IsBound="true" EntitySetPath="in">
|
||||
<Parameter Name="in" Type="OrdersService.Orders"/>
|
||||
<Parameter Name="PreserveChanges" Type="Edm.Boolean"/>
|
||||
<ReturnType Type="OrdersService.Orders"/>
|
||||
</Action>
|
||||
<Annotations Target="OrdersService.Orders">
|
||||
<Annotation Term="UI.SelectionFields">
|
||||
<Collection>
|
||||
<PropertyPath>createdAt</PropertyPath>
|
||||
<PropertyPath>createdBy</PropertyPath>
|
||||
</Collection>
|
||||
</Annotation>
|
||||
<Annotation Term="UI.LineItem">
|
||||
<Collection>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="OrderNo"/>
|
||||
<PropertyValue Property="Label" String="OrderNo"/>
|
||||
</Record>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="buyer"/>
|
||||
<PropertyValue Property="Label" String="Customer"/>
|
||||
</Record>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="createdAt"/>
|
||||
<PropertyValue Property="Label" String="Date"/>
|
||||
</Record>
|
||||
</Collection>
|
||||
</Annotation>
|
||||
<Annotation Term="UI.HeaderInfo">
|
||||
<Record Type="UI.HeaderInfoType">
|
||||
<PropertyValue Property="TypeName" String="Order"/>
|
||||
<PropertyValue Property="TypeNamePlural" String="Orders"/>
|
||||
<PropertyValue Property="Title">
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Label" String="Order number "/>
|
||||
<PropertyValue Property="Value" Path="OrderNo"/>
|
||||
</Record>
|
||||
</PropertyValue>
|
||||
<PropertyValue Property="Description">
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="createdBy"/>
|
||||
</Record>
|
||||
</PropertyValue>
|
||||
</Record>
|
||||
</Annotation>
|
||||
<Annotation Term="UI.Identification">
|
||||
<Collection>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="createdBy"/>
|
||||
<PropertyValue Property="Label" String="Customer"/>
|
||||
</Record>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="createdAt"/>
|
||||
<PropertyValue Property="Label" String="Date"/>
|
||||
</Record>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="OrderNo"/>
|
||||
</Record>
|
||||
</Collection>
|
||||
</Annotation>
|
||||
<Annotation Term="UI.HeaderFacets">
|
||||
<Collection>
|
||||
<Record Type="UI.ReferenceFacet">
|
||||
<PropertyValue Property="Label" String="{i18n>Created}"/>
|
||||
<PropertyValue Property="Target" AnnotationPath="@UI.FieldGroup#Created"/>
|
||||
</Record>
|
||||
<Record Type="UI.ReferenceFacet">
|
||||
<PropertyValue Property="Label" String="{i18n>Modified}"/>
|
||||
<PropertyValue Property="Target" AnnotationPath="@UI.FieldGroup#Modified"/>
|
||||
</Record>
|
||||
</Collection>
|
||||
</Annotation>
|
||||
<Annotation Term="UI.Facets">
|
||||
<Collection>
|
||||
<Record Type="UI.ReferenceFacet">
|
||||
<PropertyValue Property="Label" String="{i18n>Details}"/>
|
||||
<PropertyValue Property="Target" AnnotationPath="@UI.FieldGroup#Details"/>
|
||||
</Record>
|
||||
<Record Type="UI.ReferenceFacet">
|
||||
<PropertyValue Property="Label" String="{i18n>OrderItems}"/>
|
||||
<PropertyValue Property="Target" AnnotationPath="Items/@UI.LineItem"/>
|
||||
</Record>
|
||||
</Collection>
|
||||
</Annotation>
|
||||
<Annotation Term="UI.FieldGroup" Qualifier="Details">
|
||||
<Record Type="UI.FieldGroupType">
|
||||
<PropertyValue Property="Data">
|
||||
<Collection>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="currency/code"/>
|
||||
<PropertyValue Property="Label" String="Currency"/>
|
||||
</Record>
|
||||
</Collection>
|
||||
</PropertyValue>
|
||||
</Record>
|
||||
</Annotation>
|
||||
<Annotation Term="UI.FieldGroup" Qualifier="Created">
|
||||
<Record Type="UI.FieldGroupType">
|
||||
<PropertyValue Property="Data">
|
||||
<Collection>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="createdBy"/>
|
||||
</Record>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="createdAt"/>
|
||||
</Record>
|
||||
</Collection>
|
||||
</PropertyValue>
|
||||
</Record>
|
||||
</Annotation>
|
||||
<Annotation Term="UI.FieldGroup" Qualifier="Modified">
|
||||
<Record Type="UI.FieldGroupType">
|
||||
<PropertyValue Property="Data">
|
||||
<Collection>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="modifiedBy"/>
|
||||
</Record>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="modifiedAt"/>
|
||||
</Record>
|
||||
</Collection>
|
||||
</PropertyValue>
|
||||
</Record>
|
||||
</Annotation>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.EntityContainer/Orders">
|
||||
<Annotation Term="Common.DraftRoot">
|
||||
<Record Type="Common.DraftRootType">
|
||||
<PropertyValue Property="ActivationAction" String="OrdersService.draftActivate"/>
|
||||
<PropertyValue Property="EditAction" String="OrdersService.draftEdit"/>
|
||||
<PropertyValue Property="PreparationAction" String="OrdersService.draftPrepare"/>
|
||||
</Record>
|
||||
</Annotation>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders/createdAt">
|
||||
<Annotation Term="UI.HiddenFilter" Bool="false"/>
|
||||
<Annotation Term="Core.Immutable" Bool="true"/>
|
||||
<Annotation Term="Core.Computed" Bool="true"/>
|
||||
<Annotation Term="Common.Label" String="{i18n>CreatedAt}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders/createdBy">
|
||||
<Annotation Term="UI.HiddenFilter" Bool="false"/>
|
||||
<Annotation Term="Core.Immutable" Bool="true"/>
|
||||
<Annotation Term="Core.Computed" Bool="true"/>
|
||||
<Annotation Term="Core.Description" String="{i18n>UserID.Description}"/>
|
||||
<Annotation Term="Common.Label" String="{i18n>CreatedBy}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders/modifiedAt">
|
||||
<Annotation Term="UI.HiddenFilter" Bool="true"/>
|
||||
<Annotation Term="Core.Computed" Bool="true"/>
|
||||
<Annotation Term="Common.Label" String="{i18n>ChangedAt}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders/modifiedBy">
|
||||
<Annotation Term="UI.HiddenFilter" Bool="true"/>
|
||||
<Annotation Term="Core.Computed" Bool="true"/>
|
||||
<Annotation Term="Core.Description" String="{i18n>UserID.Description}"/>
|
||||
<Annotation Term="Common.Label" String="{i18n>ChangedBy}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders/OrderNo">
|
||||
<Annotation Term="Common.Label" String="Order Number"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders/buyer">
|
||||
<Annotation Term="Common.Label" String="{i18n>UserID}"/>
|
||||
<Annotation Term="Core.Description" String="{i18n>UserID.Description}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders/currency">
|
||||
<Annotation Term="Common.Label" String="{i18n>Currency}"/>
|
||||
<Annotation Term="Core.Description" String="{i18n>CurrencyCode.Description}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders/currency_code">
|
||||
<Annotation Term="Common.Label" String="{i18n>Currency}"/>
|
||||
<Annotation Term="Common.ValueList">
|
||||
<Record Type="Common.ValueListType">
|
||||
<PropertyValue Property="Label" String="{i18n>Currency}"/>
|
||||
<PropertyValue Property="CollectionPath" String="Currencies"/>
|
||||
<PropertyValue Property="Parameters">
|
||||
<Collection>
|
||||
<Record Type="Common.ValueListParameterInOut">
|
||||
<PropertyValue Property="LocalDataProperty" PropertyPath="currency_code"/>
|
||||
<PropertyValue Property="ValueListProperty" String="code"/>
|
||||
</Record>
|
||||
<Record Type="Common.ValueListParameterDisplayOnly">
|
||||
<PropertyValue Property="ValueListProperty" String="name"/>
|
||||
</Record>
|
||||
</Collection>
|
||||
</PropertyValue>
|
||||
</Record>
|
||||
</Annotation>
|
||||
<Annotation Term="Core.Description" String="{i18n>CurrencyCode.Description}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders/IsActiveEntity">
|
||||
<Annotation Term="UI.Hidden" Bool="true"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders/HasActiveEntity">
|
||||
<Annotation Term="UI.Hidden" Bool="true"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders/HasDraftEntity">
|
||||
<Annotation Term="UI.Hidden" Bool="true"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders/DraftAdministrativeData">
|
||||
<Annotation Term="UI.Hidden" Bool="true"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Currencies">
|
||||
<Annotation Term="UI.Identification">
|
||||
<Collection>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="name"/>
|
||||
</Record>
|
||||
</Collection>
|
||||
</Annotation>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Currencies/name">
|
||||
<Annotation Term="Common.Label" String="{i18n>Name}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Currencies/descr">
|
||||
<Annotation Term="Common.Label" String="{i18n>Description}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Currencies/code">
|
||||
<Annotation Term="Common.Text" Path="name"/>
|
||||
<Annotation Term="Common.Label" String="{i18n>CurrencyCode}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Currencies/symbol">
|
||||
<Annotation Term="Common.Label" String="{i18n>CurrencySymbol}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.DraftAdministrativeData">
|
||||
<Annotation Term="Common.Label" String="{i18n>Draft_DraftAdministrativeData}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.DraftAdministrativeData/DraftUUID">
|
||||
<Annotation Term="UI.Hidden" Bool="true"/>
|
||||
<Annotation Term="Common.Label" String="{i18n>Draft_DraftUUID}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.DraftAdministrativeData/CreationDateTime">
|
||||
<Annotation Term="Common.Label" String="{i18n>Draft_CreationDateTime}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.DraftAdministrativeData/CreatedByUser">
|
||||
<Annotation Term="Common.Label" String="{i18n>Draft_CreatedByUser}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.DraftAdministrativeData/DraftIsCreatedByMe">
|
||||
<Annotation Term="UI.Hidden" Bool="true"/>
|
||||
<Annotation Term="Common.Label" String="{i18n>Draft_DraftIsCreatedByMe}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.DraftAdministrativeData/LastChangeDateTime">
|
||||
<Annotation Term="Common.Label" String="{i18n>Draft_LastChangeDateTime}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.DraftAdministrativeData/LastChangedByUser">
|
||||
<Annotation Term="Common.Label" String="{i18n>Draft_LastChangedByUser}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.DraftAdministrativeData/InProcessByUser">
|
||||
<Annotation Term="Common.Label" String="{i18n>Draft_InProcessByUser}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.DraftAdministrativeData/DraftIsProcessedByMe">
|
||||
<Annotation Term="UI.Hidden" Bool="true"/>
|
||||
<Annotation Term="Common.Label" String="{i18n>Draft_DraftIsProcessedByMe}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders_Items">
|
||||
<Annotation Term="UI.LineItem">
|
||||
<Collection>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="product_ID"/>
|
||||
<PropertyValue Property="Label" String="Product ID"/>
|
||||
</Record>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="title"/>
|
||||
<PropertyValue Property="Label" String="Product Title"/>
|
||||
</Record>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="price"/>
|
||||
<PropertyValue Property="Label" String="Unit Price"/>
|
||||
</Record>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="amount"/>
|
||||
<PropertyValue Property="Label" String="Quantity"/>
|
||||
</Record>
|
||||
</Collection>
|
||||
</Annotation>
|
||||
<Annotation Term="UI.Identification">
|
||||
<Collection>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="amount"/>
|
||||
<PropertyValue Property="Label" String="Amount"/>
|
||||
</Record>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="title"/>
|
||||
<PropertyValue Property="Label" String="Product"/>
|
||||
</Record>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="price"/>
|
||||
<PropertyValue Property="Label" String="Unit Price"/>
|
||||
</Record>
|
||||
</Collection>
|
||||
</Annotation>
|
||||
<Annotation Term="UI.Facets">
|
||||
<Collection>
|
||||
<Record Type="UI.ReferenceFacet">
|
||||
<PropertyValue Property="Label" String="{i18n>OrderItems}"/>
|
||||
<PropertyValue Property="Target" AnnotationPath="@UI.Identification"/>
|
||||
</Record>
|
||||
</Collection>
|
||||
</Annotation>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.EntityContainer/Orders_Items">
|
||||
<Annotation Term="Common.DraftNode">
|
||||
<Record Type="Common.DraftNodeType">
|
||||
<PropertyValue Property="PreparationAction" String="OrdersService.draftPrepare"/>
|
||||
</Record>
|
||||
</Annotation>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders_Items/amount">
|
||||
<Annotation Term="Common.FieldControl" EnumMember="Common.FieldControlType/Mandatory"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders_Items/IsActiveEntity">
|
||||
<Annotation Term="UI.Hidden" Bool="true"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders_Items/HasActiveEntity">
|
||||
<Annotation Term="UI.Hidden" Bool="true"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders_Items/HasDraftEntity">
|
||||
<Annotation Term="UI.Hidden" Bool="true"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders_Items/DraftAdministrativeData">
|
||||
<Annotation Term="UI.Hidden" Bool="true"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Currencies_texts/name">
|
||||
<Annotation Term="Common.Label" String="{i18n>Name}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Currencies_texts/descr">
|
||||
<Annotation Term="Common.Label" String="{i18n>Description}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Currencies_texts/code">
|
||||
<Annotation Term="Common.Text" Path="name"/>
|
||||
<Annotation Term="Common.Label" String="{i18n>CurrencyCode}"/>
|
||||
</Annotations>
|
||||
</Schema>
|
||||
</edmx:DataServices>
|
||||
</edmx:Edmx>
|
||||
443
orders/o-w4.edmx
443
orders/o-w4.edmx
@@ -1,443 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<edmx:Edmx Version="4.0" xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx">
|
||||
<edmx:Reference Uri="https://sap.github.io/odata-vocabularies/vocabularies/Common.xml">
|
||||
<edmx:Include Alias="Common" Namespace="com.sap.vocabularies.Common.v1"/>
|
||||
</edmx:Reference>
|
||||
<edmx:Reference Uri="https://oasis-tcs.github.io/odata-vocabularies/vocabularies/Org.OData.Core.V1.xml">
|
||||
<edmx:Include Alias="Core" Namespace="Org.OData.Core.V1"/>
|
||||
</edmx:Reference>
|
||||
<edmx:Reference Uri="https://sap.github.io/odata-vocabularies/vocabularies/UI.xml">
|
||||
<edmx:Include Alias="UI" Namespace="com.sap.vocabularies.UI.v1"/>
|
||||
</edmx:Reference>
|
||||
<edmx:DataServices>
|
||||
<Schema Namespace="OrdersService" xmlns="http://docs.oasis-open.org/odata/ns/edm">
|
||||
<EntityContainer Name="EntityContainer">
|
||||
<EntitySet Name="Orders" EntityType="OrdersService.Orders">
|
||||
<NavigationPropertyBinding Path="currency" Target="Currencies"/>
|
||||
<NavigationPropertyBinding Path="SiblingEntity" Target="Orders"/>
|
||||
</EntitySet>
|
||||
<EntitySet Name="Products" EntityType="OrdersService.Products"/>
|
||||
<EntitySet Name="Currencies" EntityType="OrdersService.Currencies"/>
|
||||
</EntityContainer>
|
||||
<EntityType Name="Orders">
|
||||
<Key>
|
||||
<PropertyRef Name="ID"/>
|
||||
<PropertyRef Name="IsActiveEntity"/>
|
||||
</Key>
|
||||
<Property Name="ID" Type="Edm.Guid" Nullable="false"/>
|
||||
<Property Name="createdAt" Type="Edm.DateTimeOffset" Precision="7"/>
|
||||
<Property Name="createdBy" Type="Edm.String" MaxLength="255"/>
|
||||
<Property Name="modifiedAt" Type="Edm.DateTimeOffset" Precision="7"/>
|
||||
<Property Name="modifiedBy" Type="Edm.String" MaxLength="255"/>
|
||||
<Property Name="OrderNo" Type="Edm.String"/>
|
||||
<NavigationProperty Name="Items" Type="Collection(OrdersService.Orders_Items)" Partner="up_" ContainsTarget="true"/>
|
||||
<Property Name="buyer" Type="Edm.String" MaxLength="255"/>
|
||||
<NavigationProperty Name="currency" Type="OrdersService.Currencies">
|
||||
<ReferentialConstraint Property="currency_code" ReferencedProperty="code"/>
|
||||
</NavigationProperty>
|
||||
<Property Name="currency_code" Type="Edm.String" MaxLength="3"/>
|
||||
<Property Name="IsActiveEntity" Type="Edm.Boolean" Nullable="false" DefaultValue="true"/>
|
||||
<Property Name="HasActiveEntity" Type="Edm.Boolean" Nullable="false" DefaultValue="false"/>
|
||||
<Property Name="HasDraftEntity" Type="Edm.Boolean" Nullable="false" DefaultValue="false"/>
|
||||
<NavigationProperty Name="DraftAdministrativeData" Type="OrdersService.DraftAdministrativeData" ContainsTarget="true">
|
||||
<ReferentialConstraint Property="DraftAdministrativeData_DraftUUID" ReferencedProperty="DraftUUID"/>
|
||||
</NavigationProperty>
|
||||
<Property Name="DraftAdministrativeData_DraftUUID" Type="Edm.Guid"/>
|
||||
<NavigationProperty Name="SiblingEntity" Type="OrdersService.Orders"/>
|
||||
</EntityType>
|
||||
<EntityType Name="Products">
|
||||
<Key>
|
||||
<PropertyRef Name="ID"/>
|
||||
</Key>
|
||||
<Property Name="ID" Type="Edm.String" Nullable="false"/>
|
||||
</EntityType>
|
||||
<EntityType Name="Currencies">
|
||||
<Key>
|
||||
<PropertyRef Name="code"/>
|
||||
</Key>
|
||||
<Property Name="name" Type="Edm.String" MaxLength="255"/>
|
||||
<Property Name="descr" Type="Edm.String" MaxLength="1000"/>
|
||||
<Property Name="code" Type="Edm.String" MaxLength="3" Nullable="false"/>
|
||||
<Property Name="symbol" Type="Edm.String" MaxLength="5"/>
|
||||
<NavigationProperty Name="texts" Type="Collection(OrdersService.Currencies_texts)" ContainsTarget="true"/>
|
||||
<NavigationProperty Name="localized" Type="OrdersService.Currencies_texts"/>
|
||||
</EntityType>
|
||||
<EntityType Name="DraftAdministrativeData">
|
||||
<Key>
|
||||
<PropertyRef Name="DraftUUID"/>
|
||||
</Key>
|
||||
<Property Name="DraftUUID" Type="Edm.Guid" Nullable="false"/>
|
||||
<Property Name="CreationDateTime" Type="Edm.DateTimeOffset" Precision="7"/>
|
||||
<Property Name="CreatedByUser" Type="Edm.String" MaxLength="256"/>
|
||||
<Property Name="DraftIsCreatedByMe" Type="Edm.Boolean"/>
|
||||
<Property Name="LastChangeDateTime" Type="Edm.DateTimeOffset" Precision="7"/>
|
||||
<Property Name="LastChangedByUser" Type="Edm.String" MaxLength="256"/>
|
||||
<Property Name="InProcessByUser" Type="Edm.String" MaxLength="256"/>
|
||||
<Property Name="DraftIsProcessedByMe" Type="Edm.Boolean"/>
|
||||
</EntityType>
|
||||
<EntityType Name="Orders_Items">
|
||||
<Key>
|
||||
<PropertyRef Name="ID"/>
|
||||
<PropertyRef Name="IsActiveEntity"/>
|
||||
</Key>
|
||||
<Property Name="ID" Type="Edm.Guid" Nullable="false"/>
|
||||
<NavigationProperty Name="up_" Type="OrdersService.Orders" Partner="Items">
|
||||
<ReferentialConstraint Property="up__ID" ReferencedProperty="ID"/>
|
||||
</NavigationProperty>
|
||||
<Property Name="up__ID" Type="Edm.Guid" Nullable="false"/>
|
||||
<NavigationProperty Name="product" Type="OrdersService.Products">
|
||||
<ReferentialConstraint Property="product_ID" ReferencedProperty="ID"/>
|
||||
</NavigationProperty>
|
||||
<Property Name="product_ID" Type="Edm.String"/>
|
||||
<Property Name="amount" Type="Edm.Int32"/>
|
||||
<Property Name="title" Type="Edm.String"/>
|
||||
<Property Name="price" Type="Edm.Double"/>
|
||||
<Property Name="IsActiveEntity" Type="Edm.Boolean" Nullable="false" DefaultValue="true"/>
|
||||
<Property Name="HasActiveEntity" Type="Edm.Boolean" Nullable="false" DefaultValue="false"/>
|
||||
<Property Name="HasDraftEntity" Type="Edm.Boolean" Nullable="false" DefaultValue="false"/>
|
||||
<NavigationProperty Name="DraftAdministrativeData" Type="OrdersService.DraftAdministrativeData" ContainsTarget="true">
|
||||
<ReferentialConstraint Property="DraftAdministrativeData_DraftUUID" ReferencedProperty="DraftUUID"/>
|
||||
</NavigationProperty>
|
||||
<Property Name="DraftAdministrativeData_DraftUUID" Type="Edm.Guid"/>
|
||||
<NavigationProperty Name="SiblingEntity" Type="OrdersService.Orders_Items"/>
|
||||
</EntityType>
|
||||
<EntityType Name="Currencies_texts">
|
||||
<Key>
|
||||
<PropertyRef Name="locale"/>
|
||||
</Key>
|
||||
<Property Name="locale" Type="Edm.String" MaxLength="14" Nullable="false"/>
|
||||
<Property Name="name" Type="Edm.String" MaxLength="255"/>
|
||||
<Property Name="descr" Type="Edm.String" MaxLength="1000"/>
|
||||
<Property Name="code" Type="Edm.String" MaxLength="3" Nullable="false"/>
|
||||
</EntityType>
|
||||
<Action Name="draftPrepare" IsBound="true" EntitySetPath="in">
|
||||
<Parameter Name="in" Type="OrdersService.Orders"/>
|
||||
<Parameter Name="SideEffectsQualifier" Type="Edm.String"/>
|
||||
<ReturnType Type="OrdersService.Orders"/>
|
||||
</Action>
|
||||
<Action Name="draftPrepare" IsBound="true" EntitySetPath="in">
|
||||
<Parameter Name="in" Type="OrdersService.Orders_Items"/>
|
||||
<Parameter Name="SideEffectsQualifier" Type="Edm.String"/>
|
||||
<ReturnType Type="OrdersService.Orders_Items"/>
|
||||
</Action>
|
||||
<Action Name="draftActivate" IsBound="true" EntitySetPath="in">
|
||||
<Parameter Name="in" Type="OrdersService.Orders"/>
|
||||
<ReturnType Type="OrdersService.Orders"/>
|
||||
</Action>
|
||||
<Action Name="draftEdit" IsBound="true" EntitySetPath="in">
|
||||
<Parameter Name="in" Type="OrdersService.Orders"/>
|
||||
<Parameter Name="PreserveChanges" Type="Edm.Boolean"/>
|
||||
<ReturnType Type="OrdersService.Orders"/>
|
||||
</Action>
|
||||
<Annotations Target="OrdersService.Orders">
|
||||
<Annotation Term="UI.SelectionFields">
|
||||
<Collection>
|
||||
<PropertyPath>createdAt</PropertyPath>
|
||||
<PropertyPath>createdBy</PropertyPath>
|
||||
</Collection>
|
||||
</Annotation>
|
||||
<Annotation Term="UI.LineItem">
|
||||
<Collection>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="OrderNo"/>
|
||||
<PropertyValue Property="Label" String="OrderNo"/>
|
||||
</Record>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="buyer"/>
|
||||
<PropertyValue Property="Label" String="Customer"/>
|
||||
</Record>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="createdAt"/>
|
||||
<PropertyValue Property="Label" String="Date"/>
|
||||
</Record>
|
||||
</Collection>
|
||||
</Annotation>
|
||||
<Annotation Term="UI.HeaderInfo">
|
||||
<Record Type="UI.HeaderInfoType">
|
||||
<PropertyValue Property="TypeName" String="Order"/>
|
||||
<PropertyValue Property="TypeNamePlural" String="Orders"/>
|
||||
<PropertyValue Property="Title">
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Label" String="Order number "/>
|
||||
<PropertyValue Property="Value" Path="OrderNo"/>
|
||||
</Record>
|
||||
</PropertyValue>
|
||||
<PropertyValue Property="Description">
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="createdBy"/>
|
||||
</Record>
|
||||
</PropertyValue>
|
||||
</Record>
|
||||
</Annotation>
|
||||
<Annotation Term="UI.Identification">
|
||||
<Collection>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="createdBy"/>
|
||||
<PropertyValue Property="Label" String="Customer"/>
|
||||
</Record>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="createdAt"/>
|
||||
<PropertyValue Property="Label" String="Date"/>
|
||||
</Record>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="OrderNo"/>
|
||||
</Record>
|
||||
</Collection>
|
||||
</Annotation>
|
||||
<Annotation Term="UI.HeaderFacets">
|
||||
<Collection>
|
||||
<Record Type="UI.ReferenceFacet">
|
||||
<PropertyValue Property="Label" String="{i18n>Created}"/>
|
||||
<PropertyValue Property="Target" AnnotationPath="@UI.FieldGroup#Created"/>
|
||||
</Record>
|
||||
<Record Type="UI.ReferenceFacet">
|
||||
<PropertyValue Property="Label" String="{i18n>Modified}"/>
|
||||
<PropertyValue Property="Target" AnnotationPath="@UI.FieldGroup#Modified"/>
|
||||
</Record>
|
||||
</Collection>
|
||||
</Annotation>
|
||||
<Annotation Term="UI.Facets">
|
||||
<Collection>
|
||||
<Record Type="UI.ReferenceFacet">
|
||||
<PropertyValue Property="Label" String="{i18n>Details}"/>
|
||||
<PropertyValue Property="Target" AnnotationPath="@UI.FieldGroup#Details"/>
|
||||
</Record>
|
||||
<Record Type="UI.ReferenceFacet">
|
||||
<PropertyValue Property="Label" String="{i18n>OrderItems}"/>
|
||||
<PropertyValue Property="Target" AnnotationPath="Items/@UI.LineItem"/>
|
||||
</Record>
|
||||
</Collection>
|
||||
</Annotation>
|
||||
<Annotation Term="UI.FieldGroup" Qualifier="Details">
|
||||
<Record Type="UI.FieldGroupType">
|
||||
<PropertyValue Property="Data">
|
||||
<Collection>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="currency/code"/>
|
||||
<PropertyValue Property="Label" String="Currency"/>
|
||||
</Record>
|
||||
</Collection>
|
||||
</PropertyValue>
|
||||
</Record>
|
||||
</Annotation>
|
||||
<Annotation Term="UI.FieldGroup" Qualifier="Created">
|
||||
<Record Type="UI.FieldGroupType">
|
||||
<PropertyValue Property="Data">
|
||||
<Collection>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="createdBy"/>
|
||||
</Record>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="createdAt"/>
|
||||
</Record>
|
||||
</Collection>
|
||||
</PropertyValue>
|
||||
</Record>
|
||||
</Annotation>
|
||||
<Annotation Term="UI.FieldGroup" Qualifier="Modified">
|
||||
<Record Type="UI.FieldGroupType">
|
||||
<PropertyValue Property="Data">
|
||||
<Collection>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="modifiedBy"/>
|
||||
</Record>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="modifiedAt"/>
|
||||
</Record>
|
||||
</Collection>
|
||||
</PropertyValue>
|
||||
</Record>
|
||||
</Annotation>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.EntityContainer/Orders">
|
||||
<Annotation Term="Common.DraftRoot">
|
||||
<Record Type="Common.DraftRootType">
|
||||
<PropertyValue Property="ActivationAction" String="OrdersService.draftActivate"/>
|
||||
<PropertyValue Property="EditAction" String="OrdersService.draftEdit"/>
|
||||
<PropertyValue Property="PreparationAction" String="OrdersService.draftPrepare"/>
|
||||
</Record>
|
||||
</Annotation>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders/createdAt">
|
||||
<Annotation Term="UI.HiddenFilter" Bool="false"/>
|
||||
<Annotation Term="Core.Immutable" Bool="true"/>
|
||||
<Annotation Term="Core.Computed" Bool="true"/>
|
||||
<Annotation Term="Common.Label" String="{i18n>CreatedAt}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders/createdBy">
|
||||
<Annotation Term="UI.HiddenFilter" Bool="false"/>
|
||||
<Annotation Term="Core.Immutable" Bool="true"/>
|
||||
<Annotation Term="Core.Computed" Bool="true"/>
|
||||
<Annotation Term="Core.Description" String="{i18n>UserID.Description}"/>
|
||||
<Annotation Term="Common.Label" String="{i18n>CreatedBy}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders/modifiedAt">
|
||||
<Annotation Term="UI.HiddenFilter" Bool="true"/>
|
||||
<Annotation Term="Core.Computed" Bool="true"/>
|
||||
<Annotation Term="Common.Label" String="{i18n>ChangedAt}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders/modifiedBy">
|
||||
<Annotation Term="UI.HiddenFilter" Bool="true"/>
|
||||
<Annotation Term="Core.Computed" Bool="true"/>
|
||||
<Annotation Term="Core.Description" String="{i18n>UserID.Description}"/>
|
||||
<Annotation Term="Common.Label" String="{i18n>ChangedBy}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders/OrderNo">
|
||||
<Annotation Term="Common.Label" String="Order Number"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders/buyer">
|
||||
<Annotation Term="Common.Label" String="{i18n>UserID}"/>
|
||||
<Annotation Term="Core.Description" String="{i18n>UserID.Description}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders/currency">
|
||||
<Annotation Term="Common.Label" String="{i18n>Currency}"/>
|
||||
<Annotation Term="Core.Description" String="{i18n>CurrencyCode.Description}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders/currency_code">
|
||||
<Annotation Term="Common.Label" String="{i18n>Currency}"/>
|
||||
<Annotation Term="Core.Description" String="{i18n>CurrencyCode.Description}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders/IsActiveEntity">
|
||||
<Annotation Term="UI.Hidden" Bool="true"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders/HasActiveEntity">
|
||||
<Annotation Term="UI.Hidden" Bool="true"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders/HasDraftEntity">
|
||||
<Annotation Term="UI.Hidden" Bool="true"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders/DraftAdministrativeData">
|
||||
<Annotation Term="UI.Hidden" Bool="true"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders/DraftAdministrativeData_DraftUUID">
|
||||
<Annotation Term="UI.Hidden" Bool="true"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Currencies">
|
||||
<Annotation Term="UI.Identification">
|
||||
<Collection>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="name"/>
|
||||
</Record>
|
||||
</Collection>
|
||||
</Annotation>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Currencies/name">
|
||||
<Annotation Term="Common.Label" String="{i18n>Name}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Currencies/descr">
|
||||
<Annotation Term="Common.Label" String="{i18n>Description}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Currencies/code">
|
||||
<Annotation Term="Common.Text" Path="name"/>
|
||||
<Annotation Term="Common.Label" String="{i18n>CurrencyCode}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Currencies/symbol">
|
||||
<Annotation Term="Common.Label" String="{i18n>CurrencySymbol}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.DraftAdministrativeData">
|
||||
<Annotation Term="Common.Label" String="{i18n>Draft_DraftAdministrativeData}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.DraftAdministrativeData/DraftUUID">
|
||||
<Annotation Term="UI.Hidden" Bool="true"/>
|
||||
<Annotation Term="Common.Label" String="{i18n>Draft_DraftUUID}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.DraftAdministrativeData/CreationDateTime">
|
||||
<Annotation Term="Common.Label" String="{i18n>Draft_CreationDateTime}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.DraftAdministrativeData/CreatedByUser">
|
||||
<Annotation Term="Common.Label" String="{i18n>Draft_CreatedByUser}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.DraftAdministrativeData/DraftIsCreatedByMe">
|
||||
<Annotation Term="UI.Hidden" Bool="true"/>
|
||||
<Annotation Term="Common.Label" String="{i18n>Draft_DraftIsCreatedByMe}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.DraftAdministrativeData/LastChangeDateTime">
|
||||
<Annotation Term="Common.Label" String="{i18n>Draft_LastChangeDateTime}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.DraftAdministrativeData/LastChangedByUser">
|
||||
<Annotation Term="Common.Label" String="{i18n>Draft_LastChangedByUser}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.DraftAdministrativeData/InProcessByUser">
|
||||
<Annotation Term="Common.Label" String="{i18n>Draft_InProcessByUser}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.DraftAdministrativeData/DraftIsProcessedByMe">
|
||||
<Annotation Term="UI.Hidden" Bool="true"/>
|
||||
<Annotation Term="Common.Label" String="{i18n>Draft_DraftIsProcessedByMe}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders_Items">
|
||||
<Annotation Term="UI.LineItem">
|
||||
<Collection>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="product_ID"/>
|
||||
<PropertyValue Property="Label" String="Product ID"/>
|
||||
</Record>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="title"/>
|
||||
<PropertyValue Property="Label" String="Product Title"/>
|
||||
</Record>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="price"/>
|
||||
<PropertyValue Property="Label" String="Unit Price"/>
|
||||
</Record>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="amount"/>
|
||||
<PropertyValue Property="Label" String="Quantity"/>
|
||||
</Record>
|
||||
</Collection>
|
||||
</Annotation>
|
||||
<Annotation Term="UI.Identification">
|
||||
<Collection>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="amount"/>
|
||||
<PropertyValue Property="Label" String="Amount"/>
|
||||
</Record>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="title"/>
|
||||
<PropertyValue Property="Label" String="Product"/>
|
||||
</Record>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="price"/>
|
||||
<PropertyValue Property="Label" String="Unit Price"/>
|
||||
</Record>
|
||||
</Collection>
|
||||
</Annotation>
|
||||
<Annotation Term="UI.Facets">
|
||||
<Collection>
|
||||
<Record Type="UI.ReferenceFacet">
|
||||
<PropertyValue Property="Label" String="{i18n>OrderItems}"/>
|
||||
<PropertyValue Property="Target" AnnotationPath="@UI.Identification"/>
|
||||
</Record>
|
||||
</Collection>
|
||||
</Annotation>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders_Items/amount">
|
||||
<Annotation Term="Common.FieldControl" EnumMember="Common.FieldControlType/Mandatory"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders_Items/IsActiveEntity">
|
||||
<Annotation Term="UI.Hidden" Bool="true"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders_Items/HasActiveEntity">
|
||||
<Annotation Term="UI.Hidden" Bool="true"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders_Items/HasDraftEntity">
|
||||
<Annotation Term="UI.Hidden" Bool="true"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders_Items/DraftAdministrativeData">
|
||||
<Annotation Term="UI.Hidden" Bool="true"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders_Items/DraftAdministrativeData_DraftUUID">
|
||||
<Annotation Term="UI.Hidden" Bool="true"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Currencies_texts/name">
|
||||
<Annotation Term="Common.Label" String="{i18n>Name}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Currencies_texts/descr">
|
||||
<Annotation Term="Common.Label" String="{i18n>Description}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Currencies_texts/code">
|
||||
<Annotation Term="Common.Text" Path="name"/>
|
||||
<Annotation Term="Common.Label" String="{i18n>CurrencyCode}"/>
|
||||
</Annotations>
|
||||
</Schema>
|
||||
</edmx:DataServices>
|
||||
</edmx:Edmx>
|
||||
@@ -1,413 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<edmx:Edmx Version="4.0" xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx">
|
||||
<edmx:Reference Uri="https://sap.github.io/odata-vocabularies/vocabularies/Common.xml">
|
||||
<edmx:Include Alias="Common" Namespace="com.sap.vocabularies.Common.v1"/>
|
||||
</edmx:Reference>
|
||||
<edmx:Reference Uri="https://oasis-tcs.github.io/odata-vocabularies/vocabularies/Org.OData.Core.V1.xml">
|
||||
<edmx:Include Alias="Core" Namespace="Org.OData.Core.V1"/>
|
||||
</edmx:Reference>
|
||||
<edmx:Reference Uri="https://sap.github.io/odata-vocabularies/vocabularies/UI.xml">
|
||||
<edmx:Include Alias="UI" Namespace="com.sap.vocabularies.UI.v1"/>
|
||||
</edmx:Reference>
|
||||
<edmx:DataServices>
|
||||
<Schema Namespace="OrdersService" xmlns="http://docs.oasis-open.org/odata/ns/edm">
|
||||
<EntityContainer Name="EntityContainer">
|
||||
<EntitySet Name="Orders" EntityType="OrdersService.Orders">
|
||||
<NavigationPropertyBinding Path="currency" Target="Currencies"/>
|
||||
<NavigationPropertyBinding Path="SiblingEntity" Target="Orders"/>
|
||||
</EntitySet>
|
||||
<EntitySet Name="Products" EntityType="OrdersService.Products"/>
|
||||
<EntitySet Name="Currencies" EntityType="OrdersService.Currencies"/>
|
||||
</EntityContainer>
|
||||
<EntityType Name="Orders">
|
||||
<Key>
|
||||
<PropertyRef Name="ID"/>
|
||||
<PropertyRef Name="IsActiveEntity"/>
|
||||
</Key>
|
||||
<Property Name="ID" Type="Edm.Guid" Nullable="false"/>
|
||||
<Property Name="createdAt" Type="Edm.DateTimeOffset" Precision="7"/>
|
||||
<Property Name="createdBy" Type="Edm.String" MaxLength="255"/>
|
||||
<Property Name="modifiedAt" Type="Edm.DateTimeOffset" Precision="7"/>
|
||||
<Property Name="modifiedBy" Type="Edm.String" MaxLength="255"/>
|
||||
<Property Name="OrderNo" Type="Edm.String"/>
|
||||
<NavigationProperty Name="Items" Type="Collection(OrdersService.Orders_Items)" Partner="up_" ContainsTarget="true"/>
|
||||
<Property Name="buyer" Type="Edm.String" MaxLength="255"/>
|
||||
<NavigationProperty Name="currency" Type="OrdersService.Currencies"/>
|
||||
<Property Name="IsActiveEntity" Type="Edm.Boolean" Nullable="false" DefaultValue="true"/>
|
||||
<Property Name="HasActiveEntity" Type="Edm.Boolean" Nullable="false" DefaultValue="false"/>
|
||||
<Property Name="HasDraftEntity" Type="Edm.Boolean" Nullable="false" DefaultValue="false"/>
|
||||
<NavigationProperty Name="DraftAdministrativeData" Type="OrdersService.DraftAdministrativeData" ContainsTarget="true"/>
|
||||
<NavigationProperty Name="SiblingEntity" Type="OrdersService.Orders"/>
|
||||
</EntityType>
|
||||
<EntityType Name="Currencies">
|
||||
<Key>
|
||||
<PropertyRef Name="code"/>
|
||||
</Key>
|
||||
<Property Name="name" Type="Edm.String" MaxLength="255"/>
|
||||
<Property Name="descr" Type="Edm.String" MaxLength="1000"/>
|
||||
<Property Name="code" Type="Edm.String" MaxLength="3" Nullable="false"/>
|
||||
<Property Name="symbol" Type="Edm.String" MaxLength="5"/>
|
||||
<NavigationProperty Name="texts" Type="Collection(OrdersService.Currencies_texts)" ContainsTarget="true"/>
|
||||
<NavigationProperty Name="localized" Type="OrdersService.Currencies_texts"/>
|
||||
</EntityType>
|
||||
<EntityType Name="DraftAdministrativeData">
|
||||
<Key>
|
||||
<PropertyRef Name="DraftUUID"/>
|
||||
</Key>
|
||||
<Property Name="DraftUUID" Type="Edm.Guid" Nullable="false"/>
|
||||
<Property Name="CreationDateTime" Type="Edm.DateTimeOffset" Precision="7"/>
|
||||
<Property Name="CreatedByUser" Type="Edm.String" MaxLength="256"/>
|
||||
<Property Name="DraftIsCreatedByMe" Type="Edm.Boolean"/>
|
||||
<Property Name="LastChangeDateTime" Type="Edm.DateTimeOffset" Precision="7"/>
|
||||
<Property Name="LastChangedByUser" Type="Edm.String" MaxLength="256"/>
|
||||
<Property Name="InProcessByUser" Type="Edm.String" MaxLength="256"/>
|
||||
<Property Name="DraftIsProcessedByMe" Type="Edm.Boolean"/>
|
||||
</EntityType>
|
||||
<EntityType Name="Orders_Items">
|
||||
<Key>
|
||||
<PropertyRef Name="ID"/>
|
||||
<PropertyRef Name="IsActiveEntity"/>
|
||||
</Key>
|
||||
<Property Name="ID" Type="Edm.Guid" Nullable="false"/>
|
||||
<NavigationProperty Name="up_" Type="OrdersService.Orders" Partner="Items"/>
|
||||
<NavigationProperty Name="product" Type="OrdersService.Products"/>
|
||||
<Property Name="amount" Type="Edm.Int32"/>
|
||||
<Property Name="title" Type="Edm.String"/>
|
||||
<Property Name="price" Type="Edm.Double"/>
|
||||
<Property Name="IsActiveEntity" Type="Edm.Boolean" Nullable="false" DefaultValue="true"/>
|
||||
<Property Name="HasActiveEntity" Type="Edm.Boolean" Nullable="false" DefaultValue="false"/>
|
||||
<Property Name="HasDraftEntity" Type="Edm.Boolean" Nullable="false" DefaultValue="false"/>
|
||||
<NavigationProperty Name="DraftAdministrativeData" Type="OrdersService.DraftAdministrativeData" ContainsTarget="true"/>
|
||||
<NavigationProperty Name="SiblingEntity" Type="OrdersService.Orders_Items"/>
|
||||
</EntityType>
|
||||
<EntityType Name="Currencies_texts">
|
||||
<Key>
|
||||
<PropertyRef Name="locale"/>
|
||||
</Key>
|
||||
<Property Name="locale" Type="Edm.String" MaxLength="14" Nullable="false"/>
|
||||
<Property Name="name" Type="Edm.String" MaxLength="255"/>
|
||||
<Property Name="descr" Type="Edm.String" MaxLength="1000"/>
|
||||
</EntityType>
|
||||
<Action Name="draftPrepare" IsBound="true" EntitySetPath="in">
|
||||
<Parameter Name="in" Type="OrdersService.Orders"/>
|
||||
<Parameter Name="SideEffectsQualifier" Type="Edm.String"/>
|
||||
<ReturnType Type="OrdersService.Orders"/>
|
||||
</Action>
|
||||
<Action Name="draftPrepare" IsBound="true" EntitySetPath="in">
|
||||
<Parameter Name="in" Type="OrdersService.Orders_Items"/>
|
||||
<Parameter Name="SideEffectsQualifier" Type="Edm.String"/>
|
||||
<ReturnType Type="OrdersService.Orders_Items"/>
|
||||
</Action>
|
||||
<Action Name="draftActivate" IsBound="true" EntitySetPath="in">
|
||||
<Parameter Name="in" Type="OrdersService.Orders"/>
|
||||
<ReturnType Type="OrdersService.Orders"/>
|
||||
</Action>
|
||||
<Action Name="draftEdit" IsBound="true" EntitySetPath="in">
|
||||
<Parameter Name="in" Type="OrdersService.Orders"/>
|
||||
<Parameter Name="PreserveChanges" Type="Edm.Boolean"/>
|
||||
<ReturnType Type="OrdersService.Orders"/>
|
||||
</Action>
|
||||
<Annotations Target="OrdersService.Orders">
|
||||
<Annotation Term="UI.SelectionFields">
|
||||
<Collection>
|
||||
<PropertyPath>createdAt</PropertyPath>
|
||||
<PropertyPath>createdBy</PropertyPath>
|
||||
</Collection>
|
||||
</Annotation>
|
||||
<Annotation Term="UI.LineItem">
|
||||
<Collection>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="OrderNo"/>
|
||||
<PropertyValue Property="Label" String="OrderNo"/>
|
||||
</Record>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="buyer"/>
|
||||
<PropertyValue Property="Label" String="Customer"/>
|
||||
</Record>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="createdAt"/>
|
||||
<PropertyValue Property="Label" String="Date"/>
|
||||
</Record>
|
||||
</Collection>
|
||||
</Annotation>
|
||||
<Annotation Term="UI.HeaderInfo">
|
||||
<Record Type="UI.HeaderInfoType">
|
||||
<PropertyValue Property="TypeName" String="Order"/>
|
||||
<PropertyValue Property="TypeNamePlural" String="Orders"/>
|
||||
<PropertyValue Property="Title">
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Label" String="Order number "/>
|
||||
<PropertyValue Property="Value" Path="OrderNo"/>
|
||||
</Record>
|
||||
</PropertyValue>
|
||||
<PropertyValue Property="Description">
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="createdBy"/>
|
||||
</Record>
|
||||
</PropertyValue>
|
||||
</Record>
|
||||
</Annotation>
|
||||
<Annotation Term="UI.Identification">
|
||||
<Collection>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="createdBy"/>
|
||||
<PropertyValue Property="Label" String="Customer"/>
|
||||
</Record>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="createdAt"/>
|
||||
<PropertyValue Property="Label" String="Date"/>
|
||||
</Record>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="OrderNo"/>
|
||||
</Record>
|
||||
</Collection>
|
||||
</Annotation>
|
||||
<Annotation Term="UI.HeaderFacets">
|
||||
<Collection>
|
||||
<Record Type="UI.ReferenceFacet">
|
||||
<PropertyValue Property="Label" String="{i18n>Created}"/>
|
||||
<PropertyValue Property="Target" AnnotationPath="@UI.FieldGroup#Created"/>
|
||||
</Record>
|
||||
<Record Type="UI.ReferenceFacet">
|
||||
<PropertyValue Property="Label" String="{i18n>Modified}"/>
|
||||
<PropertyValue Property="Target" AnnotationPath="@UI.FieldGroup#Modified"/>
|
||||
</Record>
|
||||
</Collection>
|
||||
</Annotation>
|
||||
<Annotation Term="UI.Facets">
|
||||
<Collection>
|
||||
<Record Type="UI.ReferenceFacet">
|
||||
<PropertyValue Property="Label" String="{i18n>Details}"/>
|
||||
<PropertyValue Property="Target" AnnotationPath="@UI.FieldGroup#Details"/>
|
||||
</Record>
|
||||
<Record Type="UI.ReferenceFacet">
|
||||
<PropertyValue Property="Label" String="{i18n>OrderItems}"/>
|
||||
<PropertyValue Property="Target" AnnotationPath="Items/@UI.LineItem"/>
|
||||
</Record>
|
||||
</Collection>
|
||||
</Annotation>
|
||||
<Annotation Term="UI.FieldGroup" Qualifier="Details">
|
||||
<Record Type="UI.FieldGroupType">
|
||||
<PropertyValue Property="Data">
|
||||
<Collection>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="currency/code"/>
|
||||
<PropertyValue Property="Label" String="Currency"/>
|
||||
</Record>
|
||||
</Collection>
|
||||
</PropertyValue>
|
||||
</Record>
|
||||
</Annotation>
|
||||
<Annotation Term="UI.FieldGroup" Qualifier="Created">
|
||||
<Record Type="UI.FieldGroupType">
|
||||
<PropertyValue Property="Data">
|
||||
<Collection>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="createdBy"/>
|
||||
</Record>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="createdAt"/>
|
||||
</Record>
|
||||
</Collection>
|
||||
</PropertyValue>
|
||||
</Record>
|
||||
</Annotation>
|
||||
<Annotation Term="UI.FieldGroup" Qualifier="Modified">
|
||||
<Record Type="UI.FieldGroupType">
|
||||
<PropertyValue Property="Data">
|
||||
<Collection>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="modifiedBy"/>
|
||||
</Record>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="modifiedAt"/>
|
||||
</Record>
|
||||
</Collection>
|
||||
</PropertyValue>
|
||||
</Record>
|
||||
</Annotation>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.EntityContainer/Orders">
|
||||
<Annotation Term="Common.DraftRoot">
|
||||
<Record Type="Common.DraftRootType">
|
||||
<PropertyValue Property="ActivationAction" String="OrdersService.draftActivate"/>
|
||||
<PropertyValue Property="EditAction" String="OrdersService.draftEdit"/>
|
||||
<PropertyValue Property="PreparationAction" String="OrdersService.draftPrepare"/>
|
||||
</Record>
|
||||
</Annotation>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders/createdAt">
|
||||
<Annotation Term="UI.HiddenFilter" Bool="false"/>
|
||||
<Annotation Term="Core.Immutable" Bool="true"/>
|
||||
<Annotation Term="Core.Computed" Bool="true"/>
|
||||
<Annotation Term="Common.Label" String="{i18n>CreatedAt}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders/createdBy">
|
||||
<Annotation Term="UI.HiddenFilter" Bool="false"/>
|
||||
<Annotation Term="Core.Immutable" Bool="true"/>
|
||||
<Annotation Term="Core.Computed" Bool="true"/>
|
||||
<Annotation Term="Core.Description" String="{i18n>UserID.Description}"/>
|
||||
<Annotation Term="Common.Label" String="{i18n>CreatedBy}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders/modifiedAt">
|
||||
<Annotation Term="UI.HiddenFilter" Bool="true"/>
|
||||
<Annotation Term="Core.Computed" Bool="true"/>
|
||||
<Annotation Term="Common.Label" String="{i18n>ChangedAt}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders/modifiedBy">
|
||||
<Annotation Term="UI.HiddenFilter" Bool="true"/>
|
||||
<Annotation Term="Core.Computed" Bool="true"/>
|
||||
<Annotation Term="Core.Description" String="{i18n>UserID.Description}"/>
|
||||
<Annotation Term="Common.Label" String="{i18n>ChangedBy}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders/OrderNo">
|
||||
<Annotation Term="Common.Label" String="Order Number"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders/buyer">
|
||||
<Annotation Term="Common.Label" String="{i18n>UserID}"/>
|
||||
<Annotation Term="Core.Description" String="{i18n>UserID.Description}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders/currency">
|
||||
<Annotation Term="Common.Label" String="{i18n>Currency}"/>
|
||||
<Annotation Term="Core.Description" String="{i18n>CurrencyCode.Description}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders/IsActiveEntity">
|
||||
<Annotation Term="UI.Hidden" Bool="true"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders/HasActiveEntity">
|
||||
<Annotation Term="UI.Hidden" Bool="true"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders/HasDraftEntity">
|
||||
<Annotation Term="UI.Hidden" Bool="true"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders/DraftAdministrativeData">
|
||||
<Annotation Term="UI.Hidden" Bool="true"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Currencies">
|
||||
<Annotation Term="UI.Identification">
|
||||
<Collection>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="name"/>
|
||||
</Record>
|
||||
</Collection>
|
||||
</Annotation>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Currencies/name">
|
||||
<Annotation Term="Common.Label" String="{i18n>Name}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Currencies/descr">
|
||||
<Annotation Term="Common.Label" String="{i18n>Description}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Currencies/code">
|
||||
<Annotation Term="Common.Text" Path="name"/>
|
||||
<Annotation Term="Common.Label" String="{i18n>CurrencyCode}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Currencies/symbol">
|
||||
<Annotation Term="Common.Label" String="{i18n>CurrencySymbol}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.DraftAdministrativeData">
|
||||
<Annotation Term="Common.Label" String="{i18n>Draft_DraftAdministrativeData}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.DraftAdministrativeData/DraftUUID">
|
||||
<Annotation Term="UI.Hidden" Bool="true"/>
|
||||
<Annotation Term="Common.Label" String="{i18n>Draft_DraftUUID}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.DraftAdministrativeData/CreationDateTime">
|
||||
<Annotation Term="Common.Label" String="{i18n>Draft_CreationDateTime}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.DraftAdministrativeData/CreatedByUser">
|
||||
<Annotation Term="Common.Label" String="{i18n>Draft_CreatedByUser}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.DraftAdministrativeData/DraftIsCreatedByMe">
|
||||
<Annotation Term="UI.Hidden" Bool="true"/>
|
||||
<Annotation Term="Common.Label" String="{i18n>Draft_DraftIsCreatedByMe}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.DraftAdministrativeData/LastChangeDateTime">
|
||||
<Annotation Term="Common.Label" String="{i18n>Draft_LastChangeDateTime}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.DraftAdministrativeData/LastChangedByUser">
|
||||
<Annotation Term="Common.Label" String="{i18n>Draft_LastChangedByUser}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.DraftAdministrativeData/InProcessByUser">
|
||||
<Annotation Term="Common.Label" String="{i18n>Draft_InProcessByUser}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.DraftAdministrativeData/DraftIsProcessedByMe">
|
||||
<Annotation Term="UI.Hidden" Bool="true"/>
|
||||
<Annotation Term="Common.Label" String="{i18n>Draft_DraftIsProcessedByMe}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders_Items">
|
||||
<Annotation Term="UI.LineItem">
|
||||
<Collection>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="product_ID"/>
|
||||
<PropertyValue Property="Label" String="Product ID"/>
|
||||
</Record>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="title"/>
|
||||
<PropertyValue Property="Label" String="Product Title"/>
|
||||
</Record>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="price"/>
|
||||
<PropertyValue Property="Label" String="Unit Price"/>
|
||||
</Record>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="amount"/>
|
||||
<PropertyValue Property="Label" String="Quantity"/>
|
||||
</Record>
|
||||
</Collection>
|
||||
</Annotation>
|
||||
<Annotation Term="UI.Identification">
|
||||
<Collection>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="amount"/>
|
||||
<PropertyValue Property="Label" String="Amount"/>
|
||||
</Record>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="title"/>
|
||||
<PropertyValue Property="Label" String="Product"/>
|
||||
</Record>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="price"/>
|
||||
<PropertyValue Property="Label" String="Unit Price"/>
|
||||
</Record>
|
||||
</Collection>
|
||||
</Annotation>
|
||||
<Annotation Term="UI.Facets">
|
||||
<Collection>
|
||||
<Record Type="UI.ReferenceFacet">
|
||||
<PropertyValue Property="Label" String="{i18n>OrderItems}"/>
|
||||
<PropertyValue Property="Target" AnnotationPath="@UI.Identification"/>
|
||||
</Record>
|
||||
</Collection>
|
||||
</Annotation>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders_Items/amount">
|
||||
<Annotation Term="Common.FieldControl" EnumMember="Common.FieldControlType/Mandatory"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders_Items/IsActiveEntity">
|
||||
<Annotation Term="UI.Hidden" Bool="true"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders_Items/HasActiveEntity">
|
||||
<Annotation Term="UI.Hidden" Bool="true"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders_Items/HasDraftEntity">
|
||||
<Annotation Term="UI.Hidden" Bool="true"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders_Items/DraftAdministrativeData">
|
||||
<Annotation Term="UI.Hidden" Bool="true"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Currencies_texts/name">
|
||||
<Annotation Term="Common.Label" String="{i18n>Name}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Currencies_texts/descr">
|
||||
<Annotation Term="Common.Label" String="{i18n>Description}"/>
|
||||
</Annotations>
|
||||
</Schema>
|
||||
<EntityType Name="Products">
|
||||
<Key>
|
||||
<PropertyRef Name="ID"/>
|
||||
</Key>
|
||||
<Property Name="ID" Type="Edm.String" Nullable="false"/>
|
||||
</EntityType>
|
||||
</edmx:DataServices>
|
||||
</edmx:Edmx>
|
||||
@@ -1,414 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<edmx:Edmx Version="4.0" xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx">
|
||||
<edmx:Reference Uri="https://sap.github.io/odata-vocabularies/vocabularies/Common.xml">
|
||||
<edmx:Include Alias="Common" Namespace="com.sap.vocabularies.Common.v1"/>
|
||||
</edmx:Reference>
|
||||
<edmx:Reference Uri="https://oasis-tcs.github.io/odata-vocabularies/vocabularies/Org.OData.Core.V1.xml">
|
||||
<edmx:Include Alias="Core" Namespace="Org.OData.Core.V1"/>
|
||||
</edmx:Reference>
|
||||
<edmx:Reference Uri="https://sap.github.io/odata-vocabularies/vocabularies/UI.xml">
|
||||
<edmx:Include Alias="UI" Namespace="com.sap.vocabularies.UI.v1"/>
|
||||
</edmx:Reference>
|
||||
<edmx:DataServices>
|
||||
<Schema Namespace="OrdersService" xmlns="http://docs.oasis-open.org/odata/ns/edm">
|
||||
<EntityContainer Name="EntityContainer">
|
||||
<EntitySet Name="Orders" EntityType="OrdersService.Orders">
|
||||
<NavigationPropertyBinding Path="currency" Target="Currencies"/>
|
||||
<NavigationPropertyBinding Path="SiblingEntity" Target="Orders"/>
|
||||
</EntitySet>
|
||||
<EntitySet Name="Currencies" EntityType="OrdersService.Currencies"/>
|
||||
</EntityContainer>
|
||||
<EntityType Name="Orders">
|
||||
<Key>
|
||||
<PropertyRef Name="ID"/>
|
||||
<PropertyRef Name="IsActiveEntity"/>
|
||||
</Key>
|
||||
<Property Name="ID" Type="Edm.Guid" Nullable="false"/>
|
||||
<Property Name="createdAt" Type="Edm.DateTimeOffset" Precision="7"/>
|
||||
<Property Name="createdBy" Type="Edm.String" MaxLength="255"/>
|
||||
<Property Name="modifiedAt" Type="Edm.DateTimeOffset" Precision="7"/>
|
||||
<Property Name="modifiedBy" Type="Edm.String" MaxLength="255"/>
|
||||
<Property Name="OrderNo" Type="Edm.String"/>
|
||||
<NavigationProperty Name="Items" Type="Collection(OrdersService.Orders_Items)" Partner="up_" ContainsTarget="true"/>
|
||||
<Property Name="buyer" Type="Edm.String" MaxLength="255"/>
|
||||
<NavigationProperty Name="currency" Type="OrdersService.Currencies"/>
|
||||
<Property Name="IsActiveEntity" Type="Edm.Boolean" Nullable="false" DefaultValue="true"/>
|
||||
<Property Name="HasActiveEntity" Type="Edm.Boolean" Nullable="false" DefaultValue="false"/>
|
||||
<Property Name="HasDraftEntity" Type="Edm.Boolean" Nullable="false" DefaultValue="false"/>
|
||||
<NavigationProperty Name="DraftAdministrativeData" Type="OrdersService.DraftAdministrativeData" ContainsTarget="true"/>
|
||||
<NavigationProperty Name="SiblingEntity" Type="OrdersService.Orders"/>
|
||||
</EntityType>
|
||||
<EntityType Name="Currencies">
|
||||
<Key>
|
||||
<PropertyRef Name="code"/>
|
||||
</Key>
|
||||
<Property Name="name" Type="Edm.String" MaxLength="255"/>
|
||||
<Property Name="descr" Type="Edm.String" MaxLength="1000"/>
|
||||
<Property Name="code" Type="Edm.String" MaxLength="3" Nullable="false"/>
|
||||
<Property Name="symbol" Type="Edm.String" MaxLength="5"/>
|
||||
<NavigationProperty Name="texts" Type="Collection(OrdersService.Currencies_texts)" ContainsTarget="true"/>
|
||||
<NavigationProperty Name="localized" Type="OrdersService.Currencies_texts"/>
|
||||
</EntityType>
|
||||
<EntityType Name="DraftAdministrativeData">
|
||||
<Key>
|
||||
<PropertyRef Name="DraftUUID"/>
|
||||
</Key>
|
||||
<Property Name="DraftUUID" Type="Edm.Guid" Nullable="false"/>
|
||||
<Property Name="CreationDateTime" Type="Edm.DateTimeOffset" Precision="7"/>
|
||||
<Property Name="CreatedByUser" Type="Edm.String" MaxLength="256"/>
|
||||
<Property Name="DraftIsCreatedByMe" Type="Edm.Boolean"/>
|
||||
<Property Name="LastChangeDateTime" Type="Edm.DateTimeOffset" Precision="7"/>
|
||||
<Property Name="LastChangedByUser" Type="Edm.String" MaxLength="256"/>
|
||||
<Property Name="InProcessByUser" Type="Edm.String" MaxLength="256"/>
|
||||
<Property Name="DraftIsProcessedByMe" Type="Edm.Boolean"/>
|
||||
</EntityType>
|
||||
<EntityType Name="Orders_Items">
|
||||
<Key>
|
||||
<PropertyRef Name="ID"/>
|
||||
<PropertyRef Name="IsActiveEntity"/>
|
||||
</Key>
|
||||
<Property Name="ID" Type="Edm.Guid" Nullable="false"/>
|
||||
<NavigationProperty Name="up_" Type="OrdersService.Orders" Partner="Items"/>
|
||||
<NavigationProperty Name="product" Type="sap.capire.orders.Products"/>
|
||||
<Property Name="amount" Type="Edm.Int32"/>
|
||||
<Property Name="title" Type="Edm.String"/>
|
||||
<Property Name="price" Type="Edm.Double"/>
|
||||
<Property Name="IsActiveEntity" Type="Edm.Boolean" Nullable="false" DefaultValue="true"/>
|
||||
<Property Name="HasActiveEntity" Type="Edm.Boolean" Nullable="false" DefaultValue="false"/>
|
||||
<Property Name="HasDraftEntity" Type="Edm.Boolean" Nullable="false" DefaultValue="false"/>
|
||||
<NavigationProperty Name="DraftAdministrativeData" Type="OrdersService.DraftAdministrativeData" ContainsTarget="true"/>
|
||||
<NavigationProperty Name="SiblingEntity" Type="OrdersService.Orders_Items"/>
|
||||
</EntityType>
|
||||
<EntityType Name="Currencies_texts">
|
||||
<Key>
|
||||
<PropertyRef Name="locale"/>
|
||||
</Key>
|
||||
<Property Name="locale" Type="Edm.String" MaxLength="14" Nullable="false"/>
|
||||
<Property Name="name" Type="Edm.String" MaxLength="255"/>
|
||||
<Property Name="descr" Type="Edm.String" MaxLength="1000"/>
|
||||
</EntityType>
|
||||
<Action Name="draftPrepare" IsBound="true" EntitySetPath="in">
|
||||
<Parameter Name="in" Type="OrdersService.Orders"/>
|
||||
<Parameter Name="SideEffectsQualifier" Type="Edm.String"/>
|
||||
<ReturnType Type="OrdersService.Orders"/>
|
||||
</Action>
|
||||
<Action Name="draftPrepare" IsBound="true" EntitySetPath="in">
|
||||
<Parameter Name="in" Type="OrdersService.Orders_Items"/>
|
||||
<Parameter Name="SideEffectsQualifier" Type="Edm.String"/>
|
||||
<ReturnType Type="OrdersService.Orders_Items"/>
|
||||
</Action>
|
||||
<Action Name="draftActivate" IsBound="true" EntitySetPath="in">
|
||||
<Parameter Name="in" Type="OrdersService.Orders"/>
|
||||
<ReturnType Type="OrdersService.Orders"/>
|
||||
</Action>
|
||||
<Action Name="draftEdit" IsBound="true" EntitySetPath="in">
|
||||
<Parameter Name="in" Type="OrdersService.Orders"/>
|
||||
<Parameter Name="PreserveChanges" Type="Edm.Boolean"/>
|
||||
<ReturnType Type="OrdersService.Orders"/>
|
||||
</Action>
|
||||
<Annotations Target="OrdersService.Orders">
|
||||
<Annotation Term="UI.SelectionFields">
|
||||
<Collection>
|
||||
<PropertyPath>createdAt</PropertyPath>
|
||||
<PropertyPath>createdBy</PropertyPath>
|
||||
</Collection>
|
||||
</Annotation>
|
||||
<Annotation Term="UI.LineItem">
|
||||
<Collection>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="OrderNo"/>
|
||||
<PropertyValue Property="Label" String="OrderNo"/>
|
||||
</Record>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="buyer"/>
|
||||
<PropertyValue Property="Label" String="Customer"/>
|
||||
</Record>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="createdAt"/>
|
||||
<PropertyValue Property="Label" String="Date"/>
|
||||
</Record>
|
||||
</Collection>
|
||||
</Annotation>
|
||||
<Annotation Term="UI.HeaderInfo">
|
||||
<Record Type="UI.HeaderInfoType">
|
||||
<PropertyValue Property="TypeName" String="Order"/>
|
||||
<PropertyValue Property="TypeNamePlural" String="Orders"/>
|
||||
<PropertyValue Property="Title">
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Label" String="Order number "/>
|
||||
<PropertyValue Property="Value" Path="OrderNo"/>
|
||||
</Record>
|
||||
</PropertyValue>
|
||||
<PropertyValue Property="Description">
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="createdBy"/>
|
||||
</Record>
|
||||
</PropertyValue>
|
||||
</Record>
|
||||
</Annotation>
|
||||
<Annotation Term="UI.Identification">
|
||||
<Collection>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="createdBy"/>
|
||||
<PropertyValue Property="Label" String="Customer"/>
|
||||
</Record>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="createdAt"/>
|
||||
<PropertyValue Property="Label" String="Date"/>
|
||||
</Record>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="OrderNo"/>
|
||||
</Record>
|
||||
</Collection>
|
||||
</Annotation>
|
||||
<Annotation Term="UI.HeaderFacets">
|
||||
<Collection>
|
||||
<Record Type="UI.ReferenceFacet">
|
||||
<PropertyValue Property="Label" String="{i18n>Created}"/>
|
||||
<PropertyValue Property="Target" AnnotationPath="@UI.FieldGroup#Created"/>
|
||||
</Record>
|
||||
<Record Type="UI.ReferenceFacet">
|
||||
<PropertyValue Property="Label" String="{i18n>Modified}"/>
|
||||
<PropertyValue Property="Target" AnnotationPath="@UI.FieldGroup#Modified"/>
|
||||
</Record>
|
||||
</Collection>
|
||||
</Annotation>
|
||||
<Annotation Term="UI.Facets">
|
||||
<Collection>
|
||||
<Record Type="UI.ReferenceFacet">
|
||||
<PropertyValue Property="Label" String="{i18n>Details}"/>
|
||||
<PropertyValue Property="Target" AnnotationPath="@UI.FieldGroup#Details"/>
|
||||
</Record>
|
||||
<Record Type="UI.ReferenceFacet">
|
||||
<PropertyValue Property="Label" String="{i18n>OrderItems}"/>
|
||||
<PropertyValue Property="Target" AnnotationPath="Items/@UI.LineItem"/>
|
||||
</Record>
|
||||
</Collection>
|
||||
</Annotation>
|
||||
<Annotation Term="UI.FieldGroup" Qualifier="Details">
|
||||
<Record Type="UI.FieldGroupType">
|
||||
<PropertyValue Property="Data">
|
||||
<Collection>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="currency/code"/>
|
||||
<PropertyValue Property="Label" String="Currency"/>
|
||||
</Record>
|
||||
</Collection>
|
||||
</PropertyValue>
|
||||
</Record>
|
||||
</Annotation>
|
||||
<Annotation Term="UI.FieldGroup" Qualifier="Created">
|
||||
<Record Type="UI.FieldGroupType">
|
||||
<PropertyValue Property="Data">
|
||||
<Collection>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="createdBy"/>
|
||||
</Record>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="createdAt"/>
|
||||
</Record>
|
||||
</Collection>
|
||||
</PropertyValue>
|
||||
</Record>
|
||||
</Annotation>
|
||||
<Annotation Term="UI.FieldGroup" Qualifier="Modified">
|
||||
<Record Type="UI.FieldGroupType">
|
||||
<PropertyValue Property="Data">
|
||||
<Collection>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="modifiedBy"/>
|
||||
</Record>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="modifiedAt"/>
|
||||
</Record>
|
||||
</Collection>
|
||||
</PropertyValue>
|
||||
</Record>
|
||||
</Annotation>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.EntityContainer/Orders">
|
||||
<Annotation Term="Common.DraftRoot">
|
||||
<Record Type="Common.DraftRootType">
|
||||
<PropertyValue Property="ActivationAction" String="OrdersService.draftActivate"/>
|
||||
<PropertyValue Property="EditAction" String="OrdersService.draftEdit"/>
|
||||
<PropertyValue Property="PreparationAction" String="OrdersService.draftPrepare"/>
|
||||
</Record>
|
||||
</Annotation>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders/createdAt">
|
||||
<Annotation Term="UI.HiddenFilter" Bool="false"/>
|
||||
<Annotation Term="Core.Immutable" Bool="true"/>
|
||||
<Annotation Term="Core.Computed" Bool="true"/>
|
||||
<Annotation Term="Common.Label" String="{i18n>CreatedAt}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders/createdBy">
|
||||
<Annotation Term="UI.HiddenFilter" Bool="false"/>
|
||||
<Annotation Term="Core.Immutable" Bool="true"/>
|
||||
<Annotation Term="Core.Computed" Bool="true"/>
|
||||
<Annotation Term="Core.Description" String="{i18n>UserID.Description}"/>
|
||||
<Annotation Term="Common.Label" String="{i18n>CreatedBy}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders/modifiedAt">
|
||||
<Annotation Term="UI.HiddenFilter" Bool="true"/>
|
||||
<Annotation Term="Core.Computed" Bool="true"/>
|
||||
<Annotation Term="Common.Label" String="{i18n>ChangedAt}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders/modifiedBy">
|
||||
<Annotation Term="UI.HiddenFilter" Bool="true"/>
|
||||
<Annotation Term="Core.Computed" Bool="true"/>
|
||||
<Annotation Term="Core.Description" String="{i18n>UserID.Description}"/>
|
||||
<Annotation Term="Common.Label" String="{i18n>ChangedBy}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders/OrderNo">
|
||||
<Annotation Term="Common.Label" String="Order Number"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders/buyer">
|
||||
<Annotation Term="Common.Label" String="{i18n>UserID}"/>
|
||||
<Annotation Term="Core.Description" String="{i18n>UserID.Description}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders/currency">
|
||||
<Annotation Term="Common.Label" String="{i18n>Currency}"/>
|
||||
<Annotation Term="Core.Description" String="{i18n>CurrencyCode.Description}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders/IsActiveEntity">
|
||||
<Annotation Term="UI.Hidden" Bool="true"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders/HasActiveEntity">
|
||||
<Annotation Term="UI.Hidden" Bool="true"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders/HasDraftEntity">
|
||||
<Annotation Term="UI.Hidden" Bool="true"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders/DraftAdministrativeData">
|
||||
<Annotation Term="UI.Hidden" Bool="true"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Currencies">
|
||||
<Annotation Term="UI.Identification">
|
||||
<Collection>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="name"/>
|
||||
</Record>
|
||||
</Collection>
|
||||
</Annotation>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Currencies/name">
|
||||
<Annotation Term="Common.Label" String="{i18n>Name}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Currencies/descr">
|
||||
<Annotation Term="Common.Label" String="{i18n>Description}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Currencies/code">
|
||||
<Annotation Term="Common.Text" Path="name"/>
|
||||
<Annotation Term="Common.Label" String="{i18n>CurrencyCode}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Currencies/symbol">
|
||||
<Annotation Term="Common.Label" String="{i18n>CurrencySymbol}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.DraftAdministrativeData">
|
||||
<Annotation Term="Common.Label" String="{i18n>Draft_DraftAdministrativeData}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.DraftAdministrativeData/DraftUUID">
|
||||
<Annotation Term="UI.Hidden" Bool="true"/>
|
||||
<Annotation Term="Common.Label" String="{i18n>Draft_DraftUUID}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.DraftAdministrativeData/CreationDateTime">
|
||||
<Annotation Term="Common.Label" String="{i18n>Draft_CreationDateTime}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.DraftAdministrativeData/CreatedByUser">
|
||||
<Annotation Term="Common.Label" String="{i18n>Draft_CreatedByUser}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.DraftAdministrativeData/DraftIsCreatedByMe">
|
||||
<Annotation Term="UI.Hidden" Bool="true"/>
|
||||
<Annotation Term="Common.Label" String="{i18n>Draft_DraftIsCreatedByMe}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.DraftAdministrativeData/LastChangeDateTime">
|
||||
<Annotation Term="Common.Label" String="{i18n>Draft_LastChangeDateTime}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.DraftAdministrativeData/LastChangedByUser">
|
||||
<Annotation Term="Common.Label" String="{i18n>Draft_LastChangedByUser}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.DraftAdministrativeData/InProcessByUser">
|
||||
<Annotation Term="Common.Label" String="{i18n>Draft_InProcessByUser}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.DraftAdministrativeData/DraftIsProcessedByMe">
|
||||
<Annotation Term="UI.Hidden" Bool="true"/>
|
||||
<Annotation Term="Common.Label" String="{i18n>Draft_DraftIsProcessedByMe}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders_Items">
|
||||
<Annotation Term="UI.LineItem">
|
||||
<Collection>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="product_ID"/>
|
||||
<PropertyValue Property="Label" String="Product ID"/>
|
||||
</Record>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="title"/>
|
||||
<PropertyValue Property="Label" String="Product Title"/>
|
||||
</Record>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="price"/>
|
||||
<PropertyValue Property="Label" String="Unit Price"/>
|
||||
</Record>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="amount"/>
|
||||
<PropertyValue Property="Label" String="Quantity"/>
|
||||
</Record>
|
||||
</Collection>
|
||||
</Annotation>
|
||||
<Annotation Term="UI.Identification">
|
||||
<Collection>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="amount"/>
|
||||
<PropertyValue Property="Label" String="Amount"/>
|
||||
</Record>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="title"/>
|
||||
<PropertyValue Property="Label" String="Product"/>
|
||||
</Record>
|
||||
<Record Type="UI.DataField">
|
||||
<PropertyValue Property="Value" Path="price"/>
|
||||
<PropertyValue Property="Label" String="Unit Price"/>
|
||||
</Record>
|
||||
</Collection>
|
||||
</Annotation>
|
||||
<Annotation Term="UI.Facets">
|
||||
<Collection>
|
||||
<Record Type="UI.ReferenceFacet">
|
||||
<PropertyValue Property="Label" String="{i18n>OrderItems}"/>
|
||||
<PropertyValue Property="Target" AnnotationPath="@UI.Identification"/>
|
||||
</Record>
|
||||
</Collection>
|
||||
</Annotation>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders_Items/amount">
|
||||
<Annotation Term="Common.FieldControl" EnumMember="Common.FieldControlType/Mandatory"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders_Items/IsActiveEntity">
|
||||
<Annotation Term="UI.Hidden" Bool="true"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders_Items/HasActiveEntity">
|
||||
<Annotation Term="UI.Hidden" Bool="true"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders_Items/HasDraftEntity">
|
||||
<Annotation Term="UI.Hidden" Bool="true"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Orders_Items/DraftAdministrativeData">
|
||||
<Annotation Term="UI.Hidden" Bool="true"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Currencies_texts/name">
|
||||
<Annotation Term="Common.Label" String="{i18n>Name}"/>
|
||||
</Annotations>
|
||||
<Annotations Target="OrdersService.Currencies_texts/descr">
|
||||
<Annotation Term="Common.Label" String="{i18n>Description}"/>
|
||||
</Annotations>
|
||||
</Schema>
|
||||
<Schema Namespace="sap.capire.orders" xmlns="http://docs.oasis-open.org/odata/ns/edm">
|
||||
<EntityType Name="Products">
|
||||
<Key>
|
||||
<PropertyRef Name="ID"/>
|
||||
</Key>
|
||||
<Property Name="ID" Type="Edm.String" Nullable="false"/>
|
||||
</EntityType>
|
||||
</Schema>
|
||||
</edmx:DataServices>
|
||||
</edmx:Edmx>
|
||||
@@ -3,7 +3,7 @@ class OrdersService extends cds.ApplicationService {
|
||||
|
||||
/** register custom handlers */
|
||||
init(){
|
||||
const { Orders_Items:OrderItems } = this.entities
|
||||
const { 'Orders.Items':OrderItems } = this.entities
|
||||
|
||||
this.before ('UPDATE', 'Orders', async function(req) {
|
||||
const { ID, Items } = req.data
|
||||
|
||||
Reference in New Issue
Block a user