Lines 67-73
export default {
Link Here
|
67 |
searchTerm: null, |
67 |
searchTerm: null, |
68 |
tableOptions: { |
68 |
tableOptions: { |
69 |
columns: this.getTableColumns(), |
69 |
columns: this.getTableColumns(), |
70 |
options: { embed: "aliases,baskets,subscriptions+count" }, |
70 |
options: { |
|
|
71 |
embed: "aliases,baskets,subscriptions+count,invoices", |
72 |
}, |
71 |
url: () => this.tableURL(), |
73 |
url: () => this.tableURL(), |
72 |
add_filters: true, |
74 |
add_filters: true, |
73 |
filters_options: { |
75 |
filters_options: { |
Lines 91-97
export default {
Link Here
|
91 |
(!row.baskets || |
93 |
(!row.baskets || |
92 |
row.baskets.length === 0) && |
94 |
row.baskets.length === 0) && |
93 |
(!row.subscriptions_count || |
95 |
(!row.subscriptions_count || |
94 |
row.subscriptions_count === 0), |
96 |
row.subscriptions_count === 0) && |
|
|
97 |
(!row.invoices || |
98 |
row.invoices.length === 0), |
95 |
}, |
99 |
}, |
96 |
}, |
100 |
}, |
97 |
{ |
101 |
{ |
98 |
- |
|
|