Merge pull request '3996-fix(entry_summary): get entry.id' (#968) from 3996-entry_summary into dev
gitea/salix/pipeline/head This commit looks good
Details
gitea/salix/pipeline/head This commit looks good
Details
Reviewed-on: #968 Reviewed-by: Joan Sanchez <joan@verdnatura.es>
This commit is contained in:
commit
4e9396f4f3
|
@ -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">
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue