fixed bugs - do not change key names

This commit is contained in:
D065023
2019-12-11 11:46:55 +01:00
parent e686b1819b
commit 3b06003328
6 changed files with 36 additions and 35 deletions

View File

@@ -29,8 +29,8 @@ annotate AdminService.Orders with {
Label: 'Addresses',
SearchSupported: 'true',
Parameters: [
{ $Type: 'Common.ValueListParameterOut', LocalDataProperty: 'shippingAddress_addressID', ValueListProperty: 'addressID'},
{ $Type: 'Common.ValueListParameterOut', LocalDataProperty: 'shippingAddress_businessPartner', ValueListProperty: 'businessPartner'},
{ $Type: 'Common.ValueListParameterOut', LocalDataProperty: 'shippingAddress_AddressID', ValueListProperty: 'AddressID'},
{ $Type: 'Common.ValueListParameterOut', LocalDataProperty: 'shippingAddress_BusinessPartner', ValueListProperty: 'BusinessPartner'},
{ $Type: 'Common.ValueListParameterDisplayOnly', ValueListProperty: 'postalCode'},
{ $Type: 'Common.ValueListParameterDisplayOnly', ValueListProperty: 'cityName'},
{ $Type: 'Common.ValueListParameterDisplayOnly', ValueListProperty: 'country'},
@@ -40,7 +40,7 @@ annotate AdminService.Orders with {
},
SideEffects : {
EffectTypes : #ValueChange,
SourceProperties : [shippingAddress_addressID],
SourceProperties : [shippingAddress_AddressID],
TargetProperties : [
shippingAddress.country,
shippingAddress.houseNumber,
@@ -115,7 +115,7 @@ annotate AdminService.Orders with @(
},
FieldGroup#ShippingAddress: {
Data: [
{Value: shippingAddress_addressID, Label:'{i18n>shippingAddress}'},
{Value: shippingAddress_AddressID, Label:'{i18n>shippingAddress}'},
{Value: shippingAddress.houseNumber, Label:'{i18n>houseNumber}'},
{Value: shippingAddress.streetName, Label:'{i18n>streetName}'},
{Value: shippingAddress.cityName, Label:'{i18n>cityName}'},