38 lines
896 B
Plaintext
38 lines
896 B
Plaintext
using AdminService from '@sap/capire-bookshop/srv/admin-service';
|
|
|
|
////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Books Object Page
|
|
//
|
|
annotate AdminService.Books with @(
|
|
UI: {
|
|
Facets: [
|
|
{$Type: 'UI.ReferenceFacet', Label: '{i18n>General}', Target: '@UI.FieldGroup#General'},
|
|
{$Type: 'UI.ReferenceFacet', Label: '{i18n>Details}', Target: '@UI.FieldGroup#Details'},
|
|
{$Type: 'UI.ReferenceFacet', Label: '{i18n>Admin}', Target: '@UI.FieldGroup#Admin'},
|
|
],
|
|
FieldGroup#General: {
|
|
Data: [
|
|
{Value: title},
|
|
{Value: author_ID},
|
|
{Value: descr},
|
|
]
|
|
},
|
|
FieldGroup#Details: {
|
|
Data: [
|
|
{Value: stock},
|
|
{Value: price},
|
|
{Value: currency_code, Label: '{i18n>Currency}'},
|
|
]
|
|
},
|
|
FieldGroup#Admin: {
|
|
Data: [
|
|
{Value: createdBy},
|
|
{Value: createdAt},
|
|
{Value: modifiedBy},
|
|
{Value: modifiedAt}
|
|
]
|
|
}
|
|
}
|
|
);
|