Remove order.total

Up to now, we don't have a best-practise way to calculate this on the
fly.
This commit is contained in:
Christian Georgi
2020-03-16 10:21:38 +01:00
parent c0486a1b7b
commit 92bf470989

View File

@@ -5,7 +5,6 @@ namespace sap.capire.bookshop;
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;
}