3996-fix(entry_summary): get entry.id #968

Merged
joan merged 2 commits from 3996-entry_summary into dev 2022-05-10 08:22:42 +00:00
2 changed files with 4 additions and 1 deletions

View File

@ -1,6 +1,6 @@
<vn-crud-model
vn-id="buysModel"
url="Entries/{{$ctrl.$params.id}}/getBuys"
url="Entries/{{$ctrl.entry.id}}/getBuys"
limit="5"
data="buys"
auto-load="true">

View File

@ -4,6 +4,9 @@ import Summary from 'salix/components/summary';
class Controller extends Summary {
get entry() {
if (!this._entry)
return this.$params;
return this._entry;
}