removed total and netAmount
This commit is contained in:
@@ -5,7 +5,6 @@ using { Currency, cuid, managed } from '@sap/cds/common';
|
||||
entity Orders : cuid, managed {
|
||||
OrderNo : String @title:'Order Number'; //> readable key
|
||||
Items : Composition of many OrderItems on Items.parent = $self;
|
||||
total : Decimal(9,2) @readonly;
|
||||
currency : Currency;
|
||||
}
|
||||
|
||||
@@ -13,5 +12,4 @@ entity OrderItems : cuid {
|
||||
parent : Association to Orders not null;
|
||||
article : String;
|
||||
amount : Integer;
|
||||
netAmount : Decimal(9,2);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user