Lines 60-86
export const routes = [
Link Here
|
60 |
path: ":agreement_id", |
60 |
path: ":agreement_id", |
61 |
name: "AgreementsShow", |
61 |
name: "AgreementsShow", |
62 |
component: markRaw(AgreementsShow), |
62 |
component: markRaw(AgreementsShow), |
63 |
title: { dynamic: true, text: $__("Show agreement")}, |
63 |
title: { dynamic: true, identifier: "name", text: $__("Show agreement")}, |
64 |
children: [ |
|
|
65 |
{ |
66 |
path: "items", |
67 |
title: { dynamic: false, text: $__("")}, |
68 |
children: [ |
69 |
{ |
70 |
path: "add", |
71 |
name: "TestChildTwo", |
72 |
component: markRaw(EHoldingsLocalTitlesFormAdd), |
73 |
title: { dynamic: false, text: $__("Add item to train")}, |
74 |
}, |
75 |
{ |
76 |
path: "add/:item_ids", |
77 |
name: "TestChildThree", |
78 |
component: markRaw(EHoldingsLocalPackagesFormAdd), |
79 |
title: { dynamic: false, text: $__("Add items to train")}, |
80 |
}, |
81 |
] |
82 |
}, |
83 |
] |
84 |
}, |
64 |
}, |
85 |
{ |
65 |
{ |
86 |
path: "add", |
66 |
path: "add", |
Lines 92-98
export const routes = [
Link Here
|
92 |
path: "edit/:agreement_id", |
72 |
path: "edit/:agreement_id", |
93 |
name: "AgreementsFormAddEdit", |
73 |
name: "AgreementsFormAddEdit", |
94 |
component: markRaw(AgreementsFormAdd), |
74 |
component: markRaw(AgreementsFormAdd), |
95 |
title: { dynamic: true, text: $__("Edit agreement")}, |
75 |
title: { dynamic: true, identifier: "name", text: $__("Edit agreement")}, |
96 |
}, |
76 |
}, |
97 |
], |
77 |
], |
98 |
}, |
78 |
}, |
Lines 111-117
export const routes = [
Link Here
|
111 |
path: ":license_id", |
91 |
path: ":license_id", |
112 |
name: "LicensesShow", |
92 |
name: "LicensesShow", |
113 |
component: markRaw(LicensesShow), |
93 |
component: markRaw(LicensesShow), |
114 |
title: { dynamic: true, text: $__("Show license")} |
94 |
title: { dynamic: true, identifier: "name", text: $__("Show license")} |
115 |
}, |
95 |
}, |
116 |
{ |
96 |
{ |
117 |
path: "add", |
97 |
path: "add", |
Lines 123-129
export const routes = [
Link Here
|
123 |
path: "edit/:license_id", |
103 |
path: "edit/:license_id", |
124 |
name: "LicensesFormAddEdit", |
104 |
name: "LicensesFormAddEdit", |
125 |
component: markRaw(LicensesFormAdd), |
105 |
component: markRaw(LicensesFormAdd), |
126 |
title: { dynamic: true, text: $__("Edit license")} |
106 |
title: { dynamic: true, identifier: 'name', text: $__("Edit license")} |
127 |
}, |
107 |
}, |
128 |
], |
108 |
], |
129 |
}, |
109 |
}, |
Lines 158-164
export const routes = [
Link Here
|
158 |
component: markRaw( |
138 |
component: markRaw( |
159 |
EHoldingsLocalPackagesShow |
139 |
EHoldingsLocalPackagesShow |
160 |
), |
140 |
), |
161 |
title: { dynamic: true, text: $__("Show package")} |
141 |
title: { dynamic: true, identifier: 'name', text: $__("Show package")} |
162 |
}, |
142 |
}, |
163 |
{ |
143 |
{ |
164 |
path: "add", |
144 |
path: "add", |
Lines 174-180
export const routes = [
Link Here
|
174 |
component: markRaw( |
154 |
component: markRaw( |
175 |
EHoldingsLocalPackagesFormAdd |
155 |
EHoldingsLocalPackagesFormAdd |
176 |
), |
156 |
), |
177 |
title: { dynamic: true, text: $__("Edit package")} |
157 |
title: { dynamic: true, identifier: 'name', text: $__("Edit package")} |
178 |
}, |
158 |
}, |
179 |
], |
159 |
], |
180 |
}, |
160 |
}, |
Lines 197-203
export const routes = [
Link Here
|
197 |
component: markRaw( |
177 |
component: markRaw( |
198 |
EHoldingsLocalTitlesShow |
178 |
EHoldingsLocalTitlesShow |
199 |
), |
179 |
), |
200 |
title: { dynamic: true, text: $__("Show title")} |
180 |
title: { dynamic: true, identifier: 'publication_title', text: $__("Show title")} |
201 |
}, |
181 |
}, |
202 |
{ |
182 |
{ |
203 |
path: "add", |
183 |
path: "add", |
Lines 213-219
export const routes = [
Link Here
|
213 |
component: markRaw( |
193 |
component: markRaw( |
214 |
EHoldingsLocalTitlesFormAdd |
194 |
EHoldingsLocalTitlesFormAdd |
215 |
), |
195 |
), |
216 |
title: { dynamic: true, text: $__("Edit title")} |
196 |
title: { dynamic: true, identifier: 'publication_title', text: $__("Edit title")} |
217 |
}, |
197 |
}, |
218 |
{ |
198 |
{ |
219 |
path: "import", |
199 |
path: "import", |
Lines 229-235
export const routes = [
Link Here
|
229 |
component: markRaw( |
209 |
component: markRaw( |
230 |
EHoldingsLocalResourcesShow |
210 |
EHoldingsLocalResourcesShow |
231 |
), |
211 |
), |
232 |
title: { dynamic: true, text: $__("Resource")} |
212 |
title: { dynamic: false, text: $__("Resource")} |
233 |
}, |
213 |
}, |
234 |
], |
214 |
], |
235 |
}, |
215 |
}, |
Lines 260-266
export const routes = [
Link Here
|
260 |
component: markRaw( |
240 |
component: markRaw( |
261 |
EHoldingsEBSCOPackagesShow |
241 |
EHoldingsEBSCOPackagesShow |
262 |
), |
242 |
), |
263 |
title: { dynamic: true, text: $__("Show package")} |
243 |
title: { dynamic: true, identifier: 'name', text: $__("Show package")} |
264 |
}, |
244 |
}, |
265 |
], |
245 |
], |
266 |
}, |
246 |
}, |
Lines 283-289
export const routes = [
Link Here
|
283 |
component: markRaw( |
263 |
component: markRaw( |
284 |
EHoldingsEBSCOTitlesShow |
264 |
EHoldingsEBSCOTitlesShow |
285 |
), |
265 |
), |
286 |
title: { dynamic: true, text: $__("Show title")} |
266 |
title: { dynamic: true, identifier: 'publication_title', text: $__("Show title")} |
287 |
}, |
267 |
}, |
288 |
{ |
268 |
{ |
289 |
path: "/cgi-bin/koha/erm/eholdings/ebsco/resources/:resource_id", |
269 |
path: "/cgi-bin/koha/erm/eholdings/ebsco/resources/:resource_id", |
Lines 291-297
export const routes = [
Link Here
|
291 |
component: markRaw( |
271 |
component: markRaw( |
292 |
EHoldingsEBSCOResourcesShow |
272 |
EHoldingsEBSCOResourcesShow |
293 |
), |
273 |
), |
294 |
title: { dynamic: true, text: $__("Resource")}, |
274 |
title: { dynamic: false, text: $__("Resource")}, |
295 |
is_navigation_item: false, |
275 |
is_navigation_item: false, |
296 |
}, |
276 |
}, |
297 |
], |
277 |
], |